Skip to main content
GET
/
v1
/
evidence
/
{id}
Describe a piece of evidence
curl --request GET \
  --url https://api.app.chainloop.dev/v1/evidence/{id} \
  --header 'Authorization: Bearer <token>'
{
  "result": {
    "workflow_id": "workflow_id",
    "workflow_name": "workflow_name",
    "uploaded_to_cas": true,
    "subject_version": "subject_version",
    "annotations": {
      "key": "annotations"
    },
    "created_at": "2000-01-23T04:56:07.000Z",
    "project_name": "project_name",
    "latest_in_project": true,
    "policies_total": 2,
    "project_version_name": "project_version_name",
    "project_id": "project_id",
    "ingestion_finished_at": "2000-01-23T04:56:07.000Z",
    "digest": "digest",
    "id": "id",
    "workflow_run_id": "workflow_run_id",
    "policies_passed": 5,
    "kind": "kind",
    "latest_in_project_version": true,
    "ingestion_started_at": "2000-01-23T04:56:07.000Z",
    "organization_name": "organization_name",
    "project_version_id": "project_version_id",
    "ingestion_has_error": true,
    "policy_status_summary": {
      "violated": 5,
      "total": 0,
      "has_gates": true,
      "passed": 6,
      "status": "RUN_POLICY_STATUS_UNSPECIFIED",
      "skipped": 1
    },
    "organization_id": "organization_id",
    "name": "name",
    "subject_name": "subject_name"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.chainloop.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token for authentication

Path Parameters

id
string
required

UUID of the evidence to describe

Response

A successful response.

Response for the Describe method

result
EvidenceListItem · object

It represents an item in the list of evidence

Example:
{
"workflow_id": "workflow_id",
"workflow_name": "workflow_name",
"uploaded_to_cas": true,
"subject_version": "subject_version",
"annotations": { "key": "annotations" },
"created_at": "2000-01-23T04:56:07.000Z",
"project_name": "project_name",
"latest_in_project": true,
"policies_total": 2,
"project_version_name": "project_version_name",
"project_id": "project_id",
"ingestion_finished_at": "2000-01-23T04:56:07.000Z",
"digest": "digest",
"id": "id",
"workflow_run_id": "workflow_run_id",
"policies_passed": 5,
"kind": "kind",
"latest_in_project_version": true,
"ingestion_started_at": "2000-01-23T04:56:07.000Z",
"organization_name": "organization_name",
"project_version_id": "project_version_id",
"ingestion_has_error": true,
"policy_status_summary": {
"violated": 5,
"total": 0,
"has_gates": true,
"passed": 6,
"status": "RUN_POLICY_STATUS_UNSPECIFIED",
"skipped": 1
},
"organization_id": "organization_id",
"name": "name",
"subject_name": "subject_name"
}