Skip to main content

Catalog API

Browse and search the apitree API marketplace programmatically. No authentication required for read operations.

List APIs

GET /api/v1/apis?q=weather&category=data&limit=10
Param
Type
Description
qstringSearch by name or description
categorystringFilter: financial, data, ai, communication, commerce
limitnumberMax results (default 20, max 50)
offsetnumberPagination offset

Get API Details

GET /api/v1/apis/{slug}

Returns full API info including endpoints, pricing, and MCP tool definition.

Register API

POST /api/v1/apis
Authorization: Bearer {jwt_token}
Content-Type: application/json

{
  "name": "My Data API",
  "slug": "my-data-api",
  "description": "...",
  "category": "data",
  "baseUrl": "https://api.example.com",
  "pricePerCall": 0.01,
  "cacheTtlSec": 300
}
apitree · AI-Native API Marketplace