Skip to content

Get Agent State

GET
/api/agents/{agent_name}/{version}/state
curl --request GET \
--url https://example.com/api/agents/example/example/state \
--header 'Authorization: Bearer <token>'

Combined design + lifecycle + deployment + runtime + links view.

Single source for everything the tile and detail page render after the Phase 1 cutover — backend stores zero mirrored URL/status columns and derives all that information from this endpoint on demand.

agent_name
required
Agent Name
string
version
required
Version
string

Successful Response

Media typeapplication/json
Examplegenerated
example

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}