List assistants
Developing
Return the assistant list.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location --request GET '/v1/assistants' \
--header 'Authorization: Bearer <token>'
Responses
application/json {
"object": "string",
"data": [
{
"id": "string",
"object": "string",
"created_at": 0,
"name": "string",
"description": null,
"model": "string",
"instructions": "string",
"tools": [
"string"
],
"file_ids": [
"string"
],
"metadata": {}
}
],
"first_id": "string",
"last_id": "string",
"has_more": true
}
Modified at 2025-07-23 10:01:53