Skip to main content
GET
/
api
/
v1
/
volumes
/
@
{scope}
/
{name}
/
{version}
/
trust
/
detail
Trust detail for a scoped release
curl --request GET \
  --url https://api.example.com/api/v1/volumes/@{scope}/{name}/{version}/trust/detail
{
  "subject": {
    "purl": "<string>",
    "integrity": "<string>"
  },
  "revision": {
    "revision": "<string>",
    "updatedAt": "2023-11-07T05:31:56Z"
  },
  "attachments": [
    {
      "id": "<string>",
      "format": {
        "family": "<string>",
        "mediaType": "<string>",
        "predicateType": "<string>",
        "profile": "<string>",
        "version": "<string>"
      },
      "artifactDigest": "<string>",
      "locator": {
        "url": "<string>",
        "embedded": "<unknown>"
      },
      "status": {
        "reason": "<string>"
      },
      "artifactSize": 1,
      "verification": {
        "subjectDigest": "<string>",
        "signatureFormat": "<string>",
        "transparencyLog": "<string>",
        "verifiedAt": "2023-11-07T05:31:56Z"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://agentvolumes.mintlify.app/llms.txt

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

Path Parameters

scope
string
required
Maximum string length: 64
Pattern: ^(?!.*--)[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$
name
string
required
Maximum string length: 128
Pattern: ^(?!.*--)[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$
version
string
required
Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[A-Za-z-][0-9A-Za-z-]*)(?:\.(?:0|[1-9]\d*|\d*[A-Za-z-][0-9A-Za-z-]*))*))?(?:\+([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?$

Response

Trust detail. If the release exists but no trust artifacts are present, returns 200 OK with an empty attachments array. An empty success response does not by itself indicate successful verification, trusted status, or policy compliance.

subject
object
required
revision
object
required
attachments
object[]
required

May be empty when the release exists but no trust artifacts have been attached yet.