Process a chat command

POST /v1/chat/

Body Required

  • query string Required

    Query command for the chat

Responses

  • 200

    Chat Response

    Hide response attribute Show response attribute object
    • query string Required

      Query command for the chat

POST /v1/chat/
curl \
 -X POST https://api.infura.ai/v1/chat/ \
 -H "x-api-key: $API_KEY" \
 -d '{"query":"string"}'
Request example
{
  "query": "string"
}
Response examples (200)
{
  "query": "string"
}