Skip to main content
GET
/
attestations
/
{org}
/
{flow_name}
/
artifact
/
{fingerprint}
/
{attestation_name}
Get artifact attestation
curl --request GET \
  --url https://app.kosli.com/api/v2/attestations/{org}/{flow_name}/artifact/{fingerprint}/{attestation_name} \
  --header 'Authorization: Bearer <token>'
[
  {}
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

flow_name
string
required
fingerprint
string
required
Pattern: ^[a-f0-9]{5,64}$
attestation_name
string
required
org
string
required

Response

Successful Response

Example:
[
  {
    "attestation_id": "1234567890",
    "attestation_name": "generic-evidence",
    "attestation_type": "generic",
    "created_at": 1754551048.2005377,
    "description": "generic attestation",
    "has_audit_package": false,
    "html_url": "http://localhost/b2cebc00v2-shared/flows/flow.b2cebc00-template/trails/trail-b2cebc00?attestation_id=cd5b2c7f-8e4d-45a4-949c-8a71cbdb",
    "is_compliant": true,
    "origin_url": "https://github.com/merkely-development/merkely/actions/runs/1049309666",
    "reported_by": "b2cebc00v2",
    "schema_version": 1,
    "user_data": { "foo.bar": "this should work" }
  }
]
Last modified on April 9, 2026