POST
/
v1
/
chat
/
completions
Completions Request
curl --request POST \
  --url https://enricher.getseam.ai/v1/chat/completions \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "model": "researcher",
  "messages": [
    {
      "role": "user",
      "content": "What industry vertical does Seam AI operate in based on their website domain?"
    }
  ],
  "stream": false
}'
{
  "id": "24962ed7-5865-489e-b290-3ff8b62ee916",
  "model": "researcher",
  "created": 1739564194,
  "citations": [
    "https://www.getseam.ai/"
  ],
  "choices": [
    {
      "index": 0,
      "finish_reason": "stop",
      "message": {
        "role": "system",
        "content": "Seam AI operates in the Sales and Marketing industry vertical, with a specific focus on Sales Enablement and Go-to-Market (GTM) strategy, as indicated by their website domain, getseam.ai."
      }
    }
  ],
  "object": "chat.completion"
}

Authorizations

Authorization
string
header
required

Body

application/json

Model for /v1/chat/completions request body.

Response

200
application/json

Successful Response

The response is of type object.