AI Ready Viewer

By LLM Monitor

Agencies can integrate our solution via API to deliver the same AI readiness and recommendations to their clients.

← Back to home

Language

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.
Create account and get API key

API Reference

Calls require an API key (header Authorization: Bearer <key> or X-API-Key: <key>).

POST /api/v1/checks

Checks

ParameterTypeRequiredDescription
urlstringyesURL of the page to audit (e.g. https://example.com)
langstringnoResponse 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

ParameterTypeRequiredDescription
urlstringyesURL of the page to audit
langstringnoResponse 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": []
    }
  ]
}