GET
/
v1
/
evidence
curl --request GET \
  --url https://api.app.chainloop.dev/v1/evidence \
  --header 'Authorization: Bearer <token>'
{
  "pagination": {
    "nextCursor": "nextCursor"
  },
  "results": [
    {
      "organizationName": "organizationName",
      "kind": "kind",
      "annotations": {
        "key": "annotations"
      },
      "projectVersionId": "projectVersionId",
      "workflowName": "workflowName",
      "organizationId": "organizationId",
      "subjectVersion": "subjectVersion",
      "createdAt": "2000-01-23T04:56:07.000Z",
      "name": "name",
      "digest": "digest",
      "id": "id",
      "projectName": "projectName",
      "workflowRunId": "workflowRunId",
      "projectId": "projectId",
      "workflowId": "workflowId",
      "subjectName": "subjectName",
      "projectVersionName": "projectVersionName"
    },
    {
      "organizationName": "organizationName",
      "kind": "kind",
      "annotations": {
        "key": "annotations"
      },
      "projectVersionId": "projectVersionId",
      "workflowName": "workflowName",
      "organizationId": "organizationId",
      "subjectVersion": "subjectVersion",
      "createdAt": "2000-01-23T04:56:07.000Z",
      "name": "name",
      "digest": "digest",
      "id": "id",
      "projectName": "projectName",
      "workflowRunId": "workflowRunId",
      "projectId": "projectId",
      "workflowId": "workflowId",
      "subjectName": "subjectName",
      "projectVersionName": "projectVersionName"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer token for authentication

Query Parameters

projectName
string

ProjectName is the name of the project to filter by

projectVersionName
string

ProjectVersionName is the name of the project version to filter by

kind
enum<string>[]

Kind is the type of evidence to filter by

Available options:
MATERIAL_TYPE_UNSPECIFIED,
STRING,
CONTAINER_IMAGE,
ARTIFACT,
SBOM_CYCLONEDX_JSON,
SBOM_SPDX_JSON,
JUNIT_XML,
OPENVEX,
HELM_CHART,
SARIF,
EVIDENCE,
ATTESTATION,
CSAF_VEX,
CSAF_INFORMATIONAL_ADVISORY,
CSAF_SECURITY_ADVISORY,
CSAF_SECURITY_INCIDENT_RESPONSE,
GITLAB_SECURITY_REPORT,
ZAP_DAST_ZIP,
BLACKDUCK_SCA_JSON,
TWISTCLI_SCAN_JSON,
GHAS_CODE_SCAN,
GHAS_SECRET_SCAN,
GHAS_DEPENDENCY_SCAN,
JACOCO_XML,
SLSA_PROVENANCE
pagination.cursor
string

The cursor to start pagination from

The cursor to start pagination from

pagination.limit
integer
default:10

The limit of the number of entries to return

The maximum number of entries to return

Response

200
application/json
A successful response.

Response for the List method

results
object[]

It represents an item in the list of evidence

pagination
object

Pagination information for cursor-based pagination

Example:
{ "nextCursor": "nextCursor" }