GET
/
v0
/
assistant
curl --request GET \
  --url 'https://api.unify.ai/v0/assistant' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    {
        "agent_id": "123",
        "first_name": "Alice",
        "surname": "Smith",
        "age": 25,
        "weekly_limit": 40.0,
        "max_parallel": 3,
        "created_at": "2025-04-25T12:00:00Z",
        "updated_at": "2025-04-25T12:00:00Z"
    },
    {
        "agent_id": "456",
        "first_name": "Bob",
        "surname": "Jones",
        "age": 30,
        "weekly_limit": 35.5,
        "max_parallel": 2,
        "created_at": "2025-04-24T10:30:00Z",
        "updated_at": "2025-04-24T10:30:00Z"
    }
]

Returns a list of all assistants belonging to the authenticated user.

Authorizations

Authorization
string
required

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

curl --request GET \
  --url 'https://api.unify.ai/v0/assistant' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    {
        "agent_id": "123",
        "first_name": "Alice",
        "surname": "Smith",
        "age": 25,
        "weekly_limit": 40.0,
        "max_parallel": 3,
        "created_at": "2025-04-25T12:00:00Z",
        "updated_at": "2025-04-25T12:00:00Z"
    },
    {
        "agent_id": "456",
        "first_name": "Bob",
        "surname": "Jones",
        "age": 30,
        "weekly_limit": 35.5,
        "max_parallel": 2,
        "created_at": "2025-04-24T10:30:00Z",
        "updated_at": "2025-04-24T10:30:00Z"
    }
]