AI detection, one API call away.
Drop our report straight into your product.
Integrate Typique's AI-detection engine into your LMS, grading workflow or admissions platform. Send text, get a structured report with a score and highlighted passages — clean JSON, predictable responses.
Tell us about your use case and we'll get you a key.
curl https://api.typique.net/v1/analyses \
-H "Authorization: Bearer $TYPIQUE_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "text": "The essay to analyze…" }'An API that gets out of your way.
A simple, documented REST endpoint with the same engine that powers the app — no surprises, no boilerplate.
Fast & simple
A single REST endpoint, JSON in and JSON out. You'll be integrated in an afternoon.
Webhooks ready
Run analyses asynchronously and receive results via webhook when volume grows.
Secure by design
Bearer-token auth over HTTPS, no needless storage, GDPR-compliant processing.
Hosted in Europe
European infrastructure with predictable latency and clear data residency.
Three steps to your first report.
From key to production in minutes — the request is as simple as it looks.
Get a key
Request access and receive an API key scoped to your project.
Send the text
POST the text or document to the analyses endpoint over HTTPS.
Use the result
Parse the score, level and passages, and surface them in your own UI.
Predictable, documented, stable.
The API mirrors the report you see in the app: an AI probability, a level, word count and flagged passages — versioned so your integration keeps working.
Powering integrity inside great products.
Engineering and product teams embed Typique's detection into their own platforms — with an API that stays out of the way.





Send text, get a structured report.
Authenticate with a bearer token, post your text, and receive a clean JSON report you can render anywhere.
curl https://api.typique.net/v1/analyses \
-H "Authorization: Bearer $TYPIQUE_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "text": "The essay to analyze…" }'{
"id": "an_3f8a…",
"ai_probability": 0.28,
"level": "low",
"words": 1842,
"passages": [
{ "text": "…essential to keep in mind…", "score": 0.74 }
]
}Developer questions.
The essentials before you start building.
How do I get an API key?+
Request access and tell us about your use case. We'll provision a key scoped to your project so you can start testing.
What does the response contain?+
An overall AI probability, a level, the word count and the flagged passages with their individual scores — the same data the app shows.
Is there a webhook option?+
Yes. For higher volumes you can run analyses asynchronously and receive the result via a webhook callback.
How is pricing handled?+
API usage is billed per analysis, like credits in the app. Talk to us for volume and we'll tailor a plan.