Skip to main content
GET
/
v0
/
messages
/
{message_id}
curl --request GET \
  --url 'https://api.unify.ai/v0/messages/msg_abc123' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "object"
}
Check the status of a previously sent message. Returns ‘processing’ while the assistant is working, and ‘completed’ (with an optional response) once done.

Authorizations

Authorization
string
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

message_id
string
required
The unique message ID returned by POST /messages.
curl --request GET \
  --url 'https://api.unify.ai/v0/messages/msg_abc123' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "object"
}