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",
      "latest_in_project_version": true,
      "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",
      "latest_in_project": true,
      "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",
      "latest_in_project_version": true,
      "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",
      "latest_in_project": true,
      "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

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

latest
boolean

Latest provides a way to filter the results to only include the latest evidence for each kind and name within the project or the project version, depending on the filter applied.

Response

200
application/json

A successful response.

Response for the List method