Join us May 13th & May 14th at Interrupt, the Agent Conference by LangChain. Buy tickets >
curl --request POST \
--url https://api.example.com/assistants/count \
--header 'Content-Type: application/json' \
--data '
{
"metadata": {},
"graph_id": "<string>",
"name": "<string>"
}
'123Get the count of assistants matching the specified criteria.
curl --request POST \
--url https://api.example.com/assistants/count \
--header 'Content-Type: application/json' \
--data '
{
"metadata": {},
"graph_id": "<string>",
"name": "<string>"
}
'123Documentation Index
Fetch the complete documentation index at: https://docs.langchain.com/llms.txt
Use this file to discover all available pages before exploring further.
Payload for counting assistants.
Metadata to filter by. Exact match filter for each KV pair.
The ID of the graph to filter by. The graph ID is normally set in your langgraph.json configuration.
Name of the assistant to filter by. The filtering logic will match (case insensitive) assistants where 'name' is a substring of the assistant name.
Success
The response is of type integer.
Was this page helpful?