GET
/
v1
/
evidence
curl --request GET \
  --url https://api.app.chainloop.dev/v1/evidence \
  --header 'Authorization: Bearer <token>'
{
  "pagination": {
    "next_cursor": "next_cursor"
  },
  "results": [
    {
      "workflow_id": "workflow_id",
      "workflow_name": "workflow_name",
      "kind": "kind",
      "subject_version": "subject_version",
      "annotations": {
        "key": "annotations"
      },
      "created_at": "2000-01-23T04:56:07.000Z",
      "organization_name": "organization_name",
      "project_version_id": "project_version_id",
      "project_name": "project_name",
      "project_version_name": "project_version_name",
      "project_id": "project_id",
      "organization_id": "organization_id",
      "name": "name",
      "digest": "digest",
      "subject_name": "subject_name",
      "id": "id",
      "workflow_run_id": "workflow_run_id"
    },
    {
      "workflow_id": "workflow_id",
      "workflow_name": "workflow_name",
      "kind": "kind",
      "subject_version": "subject_version",
      "annotations": {
        "key": "annotations"
      },
      "created_at": "2000-01-23T04:56:07.000Z",
      "organization_name": "organization_name",
      "project_version_id": "project_version_id",
      "project_name": "project_name",
      "project_version_name": "project_version_name",
      "project_id": "project_id",
      "organization_id": "organization_id",
      "name": "name",
      "digest": "digest",
      "subject_name": "subject_name",
      "id": "id",
      "workflow_run_id": "workflow_run_id"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer token for authentication

Query Parameters

project_name
string

ProjectName is the name of the project to filter by

project_version_name
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