curl --request GET \
--url 'https://response.stateset.com/api/v1/agents/{id}/functions' \
--header "Authorization: Bearer $RESPONSECX_API_KEY"
{
"object": "list",
"data": [
{
"object": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"endpoint": "https://example.com/webhooks/stateset",
"method": "string",
"description": "Two-person tent, green — replacement for damaged pole set.",
"activated": true,
"agent_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
],
"has_more": true,
"next_cursor": "string"
}
List an agent's tools
Tools
GET
/
api
/
v1
/
agents
/
{id}
/
functions
curl --request GET \
--url 'https://response.stateset.com/api/v1/agents/{id}/functions' \
--header "Authorization: Bearer $RESPONSECX_API_KEY"
{
"object": "list",
"data": [
{
"object": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"endpoint": "https://example.com/webhooks/stateset",
"method": "string",
"description": "Two-person tent, green — replacement for damaged pole set.",
"activated": true,
"agent_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
],
"has_more": true,
"next_cursor": "string"
}
Path parameters
string (uuid)
required
The agent id.
Query parameters
integer
integer
Response
object
string
Function[]
boolean
string
Keyset cursor for the next page — present only on cursor-capable lists with more rows.
Status codes
| Code | Meaning |
|---|---|
200 | Tools |
401 | Missing, invalid, or expired API key. |
403 | The key lacks a required scope. |
404 | Not found, or not in the organization that owns the key. |
429 | Rate limit exceeded. |
Access
| Required scope | agents:read |
| Rate limit | 120 requests per minute |
curl --request GET \
--url 'https://response.stateset.com/api/v1/agents/{id}/functions' \
--header "Authorization: Bearer $RESPONSECX_API_KEY"
{
"object": "list",
"data": [
{
"object": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"endpoint": "https://example.com/webhooks/stateset",
"method": "string",
"description": "Two-person tent, green — replacement for damaged pole set.",
"activated": true,
"agent_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
],
"has_more": true,
"next_cursor": "string"
}
Last modified on August 31, 2026