| name | orthogonal |
| description | Orthogonal API Platform - Access 100+ premium APIs using the SDK, Run API, or x402 direct payment. Search, discover, and integrate APIs with simple tool calls. |
| homepage | https://orthogonal.com |
Orthogonal Platform
Orthogonal is a platform for monetizing and consuming APIs. Use these tools to discover, understand, and call any API on the platform.
Base URL: https://api.orth.sh/v1
Authentication
Get your API key at https://orthogonal.com/dashboard/settings
export ORTHOGONAL_API_KEY=orth_live_your_api_key
Tools
1. search
Search for APIs using natural language. Returns a lightweight list of matching endpoints.
Endpoint: POST /v1/search
curl -X POST 'https://api.orth.sh/v1/search' \
-H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"prompt": "scrape websites", "limit": 10}'
Parameters:
prompt (string, required): Natural language description of what you're looking for
limit (number, optional): Max results (default: 10, max: 50)
Response: List of matching APIs with endpoints (name, description, method, path, price)