API
Ready APIThe AI Detector Developer API exposes text detection over plain HTTP. Authenticate every request with a per-user API key (Authorization: Bearer
You need
- An AI Detector account
- A per-user API key
Install
- Sign in to AI Detector and create an API key.
- Call any /v1 endpoint with the key in the Authorization header.
- Run GET /v1/quota to see your remaining credit balance.
- Top up credits, or enable auto top-up, from the Billing page.
Configuration
bash
curl https://itsai.dev/v1/detect \
-H "Authorization: Bearer <YOUR_API_KEY>" \
-H "content-type: application/json" \
-d '{"text":"Paste the text you want to detect"}'
Notes
- Requests are metered from your API credit balance, not the free daily web quota.
- POST /v1/detect runs the fused multi-detector engine; GET /v1/detect-jobs/:id polls an async result.
- See the interactive reference below for every endpoint and schema.
API reference
Live, interactive documentation for the REST API. Use Authorize to add your API key, then try the endpoints.
Business and API users: the Data Processing Addendum is part of our Terms of Service and describes how personal data in your content is processed.
← All integrations