Standalone Tools
Direct API endpoints for web scraping, searching, and URL mapping without chat completion.
Standalone tools provide direct access to web utilities without going through a chat completion. These endpoints are useful when you need to scrape content, search the web, or map URLs programmatically.
GET /v1/tools
POST /v1/tools/:idEndpoints
- Web Scrape -
POST /v1/tools/web_scrape - Web Search -
POST /v1/tools/web_search - Web Map -
POST /v1/tools/web_map
You can also discover the full list at runtime with GET /v1/tools, which
returns each tool's id and JSON-Schema parameter shape.
Every endpoint expects a bearer token in the Authorization header and
Content-Type: application/json. Create keys at
Manage API Keys. The billed
amount for each call is recorded in your usage logs - it is not returned
inline on the response.
Errors
All errors follow the standard error shape:
{ "error": { "type": "invalid_request_error", "message": "..." } }| Status | error.type | Meaning |
|---|---|---|
400 | invalid_request_error | Missing or invalid parameters. |
401 | authentication_error | Missing or invalid API key. |
402 | billing_error | Insufficient balance. |
429 | rate_limit_error | Rate limit exceeded. |
500 | internal_server_error | Unexpected failure. |