API Runner
status Endpoints
All endpoints for the status API group. Great for feeding into an LLM context.
POST
/v1/status/v1/user/status
User Status
Request Body
{
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UserStatus"
}
}
},
"required": true
}Responses
200Successful Response
application/json
{}404Not found
422Validation Error
application/json
{
"$ref": "#/components/schemas/HTTPValidationError"
}GET
/v1/status/me
Me
Responses
200Successful Response
application/json
{}404Not found
API Runner
GET
/v1/status/user/{user_id}
Get A User
Parameters
user_id*
in: path
Responses
200Successful Response
application/json
{}404Not found
422Validation Error
application/json
{
"$ref": "#/components/schemas/HTTPValidationError"
}API Runner
POST
/v1/status/availability
Available Route
Request Body
{
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/status__status_routes__Available"
}
}
},
"required": true
}Responses
200Successful Response
application/json
{}404Not found
422Validation Error
application/json
{
"$ref": "#/components/schemas/HTTPValidationError"
}API Runner
GET
/v1/status/users
Get All Users
Responses
200Successful Response
application/json
{}404Not found
API Runner
GET
/v1/status
Health Check Endpoint
Responses
200Successful Response
application/json
{
"$ref": "#/components/schemas/StatusResponse"
}404Not found
API Runner