Omni AI
Get Response By ID
Poll a response for assistant output.
Returns the current snapshot of an in-progress or completed response. While the status is queued or running, the content may be partial and may include thinking parts. Poll this endpoint periodically until the status reaches a terminal value (succeeded, failed, or canceled).
Once terminal, the finalized assistant message is available in thread history via GET /omni-ai/threads/{thread_id}/messages.
get/v1/omni-ai/responses/{response_id}
Path parameters
response_idstring uuid required
Response identifier (returned by create thread/message)
Query parameters
account_idinteger required
Account ID for the request
Response
Current response snapshot with status and partial content
Example response
{
"error": {
"code": 400,
"message": "Order quantity must be greater than zero"
},
"data": {
"content": {
"parts": [
{
"action": {
"prefill_order": {
"action_type": "NEW",
"orders": [
{
"limit_price": "150.00",
"order_type": "LIMIT",
"quantity": "100",
"side": "BUY",
"symbol": "AAPL",
"time_in_force": "DAY"
}
]
}
}
}
]
}
}
}