Browse and search the apitree API marketplace programmatically. No authentication required for read operations.
GET /api/v1/apis?q=weather&category=data&limit=10
qstringSearch by name or descriptioncategorystringFilter: financial, data, ai, communication, commercelimitnumberMax results (default 20, max 50)offsetnumberPagination offsetGET /api/v1/apis/{slug}Returns full API info including endpoints, pricing, and MCP tool definition.
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
}