LangGraph endpoints
Overview
All Warden Agents are immediately compatible with the LangGraph Agent Server API.
Warden Code exposes a subset of this API. Below, you can find a full list of supported endpoints with links to the LangGraph API reference.
Assistants
| Name | Method | Endpoint |
|---|---|---|
| Search Assistants | POST | /assistants/search |
| Get Assistant | GET | /assistants/{assistant_id} |
Threads
| Name | Method | Endpoint |
|---|---|---|
| Create Thread | POST | /threads |
| Search Threads | POST | /threads/search |
| Get Thread | GET | /threads/{thread_id} |
| Get Thread State | GET | /threads/{thread_id}/state |
| Get Thread History | GET | /threads/{thread_id}/history |
| Delete Thread | DELETE | /threads/{thread_id} |
Thread runs
| Name | Method | Endpoint |
|---|---|---|
| Create Background Run | POST | /threads/{thread_id}/runs |
| Create Run, Stream Output | POST | /threads/{thread_id}/runs/stream |
| Create Run, Wait for Output | POST | /threads/{thread_id}/runs/wait |
Stateless runs
| Name | Method | Endpoint |
|---|---|---|
| Create Run, Stream Output | POST | /runs/stream |
| Create Run, Wait for Output | POST | /runs/wait |
System
| Name | Method | Endpoint |
|---|---|---|
| Server Information | GET | /info |
| Health Check | GET | /ok |