Skip to main content
GET
/
api
/
v1
/
capabilities
Bibliotheca capability metadata
curl --request GET \
  --url https://api.example.com/api/v1/capabilities
{
  "schemaVersion": "<string>",
  "specVersion": "<string>",
  "apiVersion": "<string>",
  "scopePolicy": {
    "scopesSupported": true,
    "scopelessSupported": true,
    "scopesRequired": true,
    "curatedScopelessModel": true
  },
  "deliveryModes": [
    "<string>"
  ],
  "apis": {
    "trustMetadata": true,
    "versionIndex": true,
    "releaseUploads": true,
    "trustUploads": true,
    "advisories": true
  },
  "compatibleSpecVersions": [
    "<string>"
  ],
  "uploadProfiles": {
    "releaseUploads": [
      "<string>"
    ],
    "trustUploads": [
      "<string>"
    ]
  },
  "extensions": {},
  "cache": {
    "maxAgeSeconds": 1,
    "revalidate": true
  }
}

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.

Response

Capability metadata

schemaVersion
string
required
Allowed value: "1"
specVersion
string
required
apiVersion
string
required

HTTP API major family advertised by this capability document.

Pattern: ^v[1-9][0-9]*$
scopePolicy
object
required
deliveryModes
string[]
required

Known v0.1 baseline values are cdn and git. Unknown values are tolerated and may be surfaced as diagnostics rather than validation failures.

Pattern: ^(?!.*--)[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$
apis
object
required
compatibleSpecVersions
string[]

Exact Agent Volumes spec versions the bibliotheca explicitly claims compatibility with. This is a set of exact versions, not a SemVer range expression.

Pattern: ^[0-9]+\.[0-9]+\.[0-9]+(?:-[0-9A-Za-z]+(?:\.[0-9A-Za-z]+)*)?(?:\+[0-9A-Za-z]+(?:\.[0-9A-Za-z]+)*)?$
uploadProfiles
object

Supported upload profiles by upload surface. Known v0.1 portable profile value is http-put. Unknown values are tolerated and may be surfaced as diagnostics rather than validation failures.

extensions
object
cache
object