/ask — Conversational Endpoint

GET displays this documentation. POST accepts JSON and returns conversational responses.

Request (POST)

POST https://agentic-automation.co.uk/ask

{
  "query": "What services do you offer?",
  "context": {
    "locale": "en-GB",
    "currency": "GBP"
  }
}

Response (200)

{
  "answer": "At Agentic Automation, we help businesses become agent-ready through NL Web transformation...",
  "intents": [
    {
      "name": "BookConsultation",
      "confidence": 0.85,
      "args_schema_ref": "BookConsultation"
    }
  ],
  "source_citations": [
    {
      "title": "Services",
      "url": "https://agentic-automation.co.uk/#services"
    }
  ],
  "aiPowered": true
}

cURL Example

curl -i https://agentic-automation.co.uk/ask \
  -H "Content-Type: application/json" \
  --data '{"query":"What services do you offer?"}'

Rate Limits

50 requests per hour per IP. Rate limit headers are included in responses:

Related Discovery Endpoints