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/:id

Endpoints

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": "..." } }
Statuserror.typeMeaning
400invalid_request_errorMissing or invalid parameters.
401authentication_errorMissing or invalid API key.
402billing_errorInsufficient balance.
429rate_limit_errorRate limit exceeded.
500internal_server_errorUnexpected failure.