API

Ready API

The AI Detector Developer API exposes text detection over plain HTTP. Authenticate every request with a per-user API key (Authorization: Bearer or x-api-key: ) and pay from your API credit balance. This is the direct REST surface behind the hosted MCP server.

You need

  • An AI Detector account
  • A per-user API key

Install

  1. Sign in to AI Detector and create an API key.
  2. Call any /v1 endpoint with the key in the Authorization header.
  3. Run GET /v1/quota to see your remaining credit balance.
  4. 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