List Endpoints
Discovery API
List Endpoints
Get all available APIs and endpoints
GET
List Endpoints
List all discoverable APIs and their endpoints. Useful for browsing the catalog or building custom search interfaces.
Request
Maximum number of APIs to return. Max: 500
Number of APIs to skip (for pagination)
Response
Response Fields
| Field | Description |
|---|---|
apis | Array of APIs with their endpoints |
apis[].slug | API identifier for use with /v1/run |
apis[].verified | Whether Orthogonal has verified this API |
apis[].endpoints | All available endpoints for this API |
count | Number of APIs returned |
totalEndpoints | Total number of endpoints across all APIs |
pagination.hasMore | Whether more results are available |
Example
Pagination
For large result sets, uselimit and offset to paginate:
Search vs List
| Use Case | Endpoint |
|---|---|
| Find APIs for a specific task | POST /v1/search with natural language |
| Browse all available APIs | GET /v1/list-endpoints |
| Get details for one endpoint | POST /v1/details |
