Skip to main content
GET
/
v1
/
flow
/
tools
/
{tool_id}
/
agents
List linked agents
curl --request GET \
  --url https://flow.seekr.com/v1/flow/tools/{tool_id}/agents \
  --header 'Authorization: <api-key>'
[
  {
    "id": "<string>",
    "name": "<string>"
  }
]
Retrieve all agents that are currently using a specific tool. Use this to check dependencies before updating or deleting a tool.

Authorizations

Authorization
string
header
required

Seekr API Key without 'Bearer' Prefix

Path Parameters

tool_id
string
required

Response

Successful Response

id
string
required
name
string
required
status
enum<string>
required
Available options:
Inactive,
Pending,
Active,
Updating,
Failed
Last modified on June 18, 2026