Skip to content

REST API · v1

AICT Public API

Programmatic access to 330+ AI tools — content writing, SEO, image understanding, OCR, transcription, and more. Authenticated via API key, billed against your subscription's daily quota.

Heads up: the API requires a Pro or higher subscription. Generate your key in your account dashboard → API Keys. Free-tier accounts can use the same tools via the web UI without a key.

Authentication

Pass your raw key in the X-AICT-API-Key request header on every API call. Keys are hashed at rest — once generated, the raw value is shown to you exactly once. Lost keys can be revoked + regenerated at any time.

Run any tool

Single endpoint dispatches across all 330+ tools. Pass slug + the tool's body params in JSON. Response shape matches the underlying tool's per-endpoint schema.

POST https://aicentraltools.com/wp-json/aict/v1/tools/runContent-Type: application/json
X-AICT-API-Key: <your-key>

{
  "slug": "content-rewriter",
  "input_text": "Rewrite this paragraph to be more concise and energetic.",
  "tone": "professional"
}

Or in curl:

curl -X POST https://aicentraltools.com/wp-json/aict/v1/tools/run \
  -H "Content-Type: application/json" \
  -H "X-AICT-API-Key: $AICT_API_KEY" \
  -d '{
    "slug": "content-rewriter",
    "input_text": "Rewrite this for clarity.",
    "tone": "casual"
  }'

Rate limits

Plan Calls / day Notes
FreeWeb UI only; no API key issued.
StarterWeb UI only; no API key issued.
Pro1,000API key + all tool slugs. Per-key, per-day.
Creator2,000API key + image/voice endpoints. Per-key, per-day.
Business5,000API key + video/audiobook endpoints. Per-key, per-day. 10 seats.
Agency20,000API key + embed + white-label endpoints. Per-key, per-day. 25 seats.

Exceeding the daily limit returns HTTP 429 with an explanatory error. Counter resets at 00:00 UTC. Need a higher limit? Email [email protected].

Error responses

Status Cause
401Missing or invalid X-AICT-API-Key
403Free-tier key — upgrade to Pro+
404Unknown tool slug
429Daily quota exhausted
503AI provider unreachable (transient)

Tool catalogue

Browse every available tool + its input schema at /tools/. Each tool page lists the canonical slug + the field names accepted by its handler.

Ready to integrate?

Generate your API key now — first 100 calls are free with any Pro plan.

Open API Keys → See pricing

Questions or production-scale needs? [email protected].