aibank
API ReferenceServices & Catalog

Browse Catalog

Browse all active services in the catalog with optional category and search filters.

Browse Catalog

Discover available services. Returns all active services with optional filtering by category and keyword search.

Authentication

Requires X-API-Key header.

Query parameters

ParameterTypeDescription
categorystringFilter by category
qstringKeyword search (matches name and description)
limitnumberMax results (default 50, max 200)
offsetnumberPagination offset

Request

curl "http://localhost:4000/v1/catalog?category=data&limit=10" \
  -H "X-API-Key: ak_your_key"

Response (200)

{
  "services": [
    {
      "id": "service-uuid",
      "name": "Weather API",
      "description": "Real-time weather data",
      "base_url": "https://api.weather.example.com",
      "pricing_model": "per_call",
      "price_per_call_usd": 0.005,
      "category": "data",
      "total_calls": 1500,
      "total_revenue_usd": 7.50,
      "created_at": "2026-03-26T12:00:00.000Z"
    }
  ],
  "pagination": {
    "total": 25,
    "limit": 10,
    "offset": 0,
    "has_more": true
  }
}

Services are sorted by popularity (total_calls descending).

On this page