curl --request POST \
--url https://api.b-bot.space/v2/assistants/search \
--header 'Content-Type: application/json' \
--data '{
"metadata": {},
"graph_id": "<string>",
"limit": 10,
"offset": 0,
"sort_by": "assistant_id",
"sort_order": "asc",
"select": [
"assistant_id"
]
}'
[
{
"assistant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"graph_id": "<string>",
"config": {
"tags": [
"<string>"
],
"recursion_limit": 123,
"configurable": {}
},
"context": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"metadata": {},
"version": 123,
"name": "<string>",
"description": "<string>"
}
]
Search for assistants.
This endpoint also functions as the endpoint to list all assistants.
curl --request POST \
--url https://api.b-bot.space/v2/assistants/search \
--header 'Content-Type: application/json' \
--data '{
"metadata": {},
"graph_id": "<string>",
"limit": 10,
"offset": 0,
"sort_by": "assistant_id",
"sort_order": "asc",
"select": [
"assistant_id"
]
}'
[
{
"assistant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"graph_id": "<string>",
"config": {
"tags": [
"<string>"
],
"recursion_limit": 123,
"configurable": {}
},
"context": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"metadata": {},
"version": 123,
"name": "<string>",
"description": "<string>"
}
]
Payload for listing assistants.
Success
The response is of type Assistant · object[]
.