Build integrations, automate analysis, and power custom optimization workflows.
Quick facts to get you started.
Send your first request in seconds using your secret API key.
curl https://api.cleversearch.ai/v1/analysis \
-H "Authorization: Bearer YOUR_SECRET_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com"}'Jump to the API area you need.
Handle these response codes to build reliable integrations.
200 - Success
Request processed successfully and response payload returned.
202 - Accepted
Request queued for async processing. Poll using the returned ID.
400 - Bad Request
Invalid request body, missing required fields, or malformed JSON.
401 - Unauthorized
API key missing, expired, or invalid for this endpoint.
429 - Rate Limited
Too many requests. Use exponential backoff and retry later.
500 - Server Error
Temporary API issue. Retry with backoff and log request IDs.
Use these checks before shipping API-backed automation to production.
Phase 1: Integration
Implement auth, request validation, and core endpoint flow.
Output: Stable API client with retries and typed payloads.
Phase 2: Automation
Add async handling and webhook-driven workflows.
Output: Background jobs connected to reliable event processing.
Phase 3: Hardening
Improve observability, rate-limit handling, and security.
Output: Production-ready monitoring and incident runbooks.
Successful Request Rate
>= 99% for non-4xx requests
Indicates resilient client logic and error handling.
Webhook Processing Delay
< 60 seconds median end-to-end
Keeps downstream automation timely and useful.
Auth Error Frequency
< 1% of total calls
Confirms credential management is stable.