Join us May 13th & May 14th at Interrupt, the Agent Conference by LangChain. Buy tickets >
curl --request GET \
--url https://api.example.com/assistants/{assistant_id}/schemas{
"graph_id": "<string>",
"state_schema": {},
"input_schema": {},
"output_schema": {},
"config_schema": {},
"context_schema": {}
}Get an assistant by ID.
curl --request GET \
--url https://api.example.com/assistants/{assistant_id}/schemas{
"graph_id": "<string>",
"state_schema": {},
"input_schema": {},
"output_schema": {},
"config_schema": {},
"context_schema": {}
}Documentation Index
Fetch the complete documentation index at: https://docs.langchain.com/llms.txt
Use this file to discover all available pages before exploring further.
The ID of the assistant.
Success
Defines the structure and properties of a graph.
The ID of the graph.
The schema for the graph state. Missing if unable to generate JSON schema from graph.
The schema for the graph input. Missing if unable to generate JSON schema from graph.
The schema for the graph output. Missing if unable to generate JSON schema from graph.
The schema for the graph config. Missing if unable to generate JSON schema from graph.
The schema for the graph context. Missing if unable to generate JSON schema from graph.
Was this page helpful?