Pricing
- 5 € per 1000 calls
Checks — Input: URL of the page to audit. - 20 € per 1000 calls
AI Insights — Input: URL of the page to audit.
API Reference
Calls require an API key (header Authorization: Bearer <key> or X-API-Key: <key>).
POST
/api/v1/checks
Checks
| Parameter | Type | Required | Description |
|---|---|---|---|
| url | string | yes | URL of the page to audit (e.g. https://example.com) |
| lang | string | no | Response language: "en" or "fr" (default: "en") |
Request body example
{
"url": "https://www.example.com",
"lang": "en"
}
Response (excerpt)
{
"url": "https://www.example.com",
"overallScore": 72,
"checks": [
{
"id": "llms_txt",
"label": "llms.txt",
"status": "pass",
"score": 100,
"details": "...",
"recommendation": "..."
}
]
}
POST
/api/v1/ai-insights
AI Insights
| Parameter | Type | Required | Description |
|---|---|---|---|
| url | string | yes | URL of the page to audit |
| lang | string | no | Response language: "en" or "fr" (default: "en") |
Request body example
{
"url": "https://www.example.com",
"lang": "en"
}
Response (excerpt)
{
"aiInsights": [
{
"id": "structure",
"label": "Content structure",
"score": 85,
"status": "pass",
"details": "...",
"recommendation": "...",
"actionItems": []
}
]
}