Catalog/meta-catalog

Meta

Service catalog API

Return the full endpoint catalog, including paths, methods, categories, prices, schemas, rate limits, cache policy, tags, and implementation status.

Price$0.0per request
MethodGET
Route/v1/catalog
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache60s public
metacatalogdiscoveryendpointsschemaspricing
API URLhttps://x402.hexl.dev/v1/catalog
Integration docs
Example response
{
  "endpoints": [
    {
      "slug": "finance-crypto-price",
      "method": "GET",
      "path": "/v1/finance/crypto-price",
      "price": {
        "display": "$0.01"
      }
    }
  ]
}
Input schema
{
  "type": "object",
  "properties": {}
}
Output schema
{
  "type": "object",
  "required": [
    "endpoints"
  ],
  "properties": {
    "endpoints": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    }
  }
}