Skip to main content
GET
/
v1
/
flow
/
agents
/
List agents
curl --request GET \
  --url https://flow.seekr.com/v1/flow/agents/ \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "instructions": "<string>",
      "user_id": "<string>",
      "team_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "model_id": "<string>",
      "output": {
        "instructions": "<string>",
        "model_id": "<string>",
        "temperature": 1
      },
      "temperature": 1,
      "planner_temperature": 1,
      "tools": [
        {
          "name": "<string>",
          "tool_env": {
            "FILE_SEARCH_INDEX": "<string>",
            "DOCUMENT_TOOL_DESC": "<string>",
            "EMBEDDING_MODEL": "<string>",
            "TOP_K": 10,
            "SCORE_THRESHOLD": 0
          },
          "id": "<string>"
        }
      ],
      "last_deployed_at": "2023-11-07T05:31:56Z",
      "active_duration": 0
    }
  ]
}

Authorizations

Authorization
string
header
required

Seekr API Key without 'Bearer' Prefix

Response

200 - application/json

Successful Response

Agents API response type

data
AgentSchema · object[]
required
Last modified on June 18, 2026