Authorizations
Body
application/json
Model for /v1/chat/completions request body.
Response
Successful Response
The response is of type object
.
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"
}
Text completion endpoint. Returns tokens as they are generated by the model.
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"
}
Model for /v1/chat/completions request body.
Successful Response
The response is of type object
.