Skip to main content
GET
/
v1
/
agent-configurations
Get Agent Configurations
curl --request GET \
  --url https://api.example.com/v1/agent-configurations/
{
  "results": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "agent_name": "<string>",
      "model_name": "<string>",
      "team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": 123,
      "updated_at": 123,
      "agent_url": "<string>",
      "hub": "custom",
      "api_key": "<string>",
      "agent_system_prompt": "<string>",
      "rate_limit_requests_per_minute": 100,
      "status": "active",
      "access_level": "black_box",
      "agent_params": {
        "temperature": 123,
        "top_p": 123,
        "max_tokens": 123,
        "timeout": 123,
        "rag_params": {},
        "function_route_params": {}
      },
      "mcp_config": {
        "proxy_url": "<string>",
        "access_level": "read",
        "server_urls": [
          "<string>"
        ]
      },
      "delegated_agents": [
        {
          "url": "<string>",
          "agent_card_url": "<string>",
          "name": "<string>",
          "capabilities": [
            "<string>"
          ]
        }
      ],
      "white_box_config": {
        "source_code": "<string>",
        "repo_url": "<string>",
        "github_username": "<string>",
        "repo_branch": "<string>",
        "entry_point": "<string>"
      },
      "agent_metadata": {
        "role": "<string>",
        "job_description": "<string>",
        "version": "<string>",
        "author": "<string>",
        "tags": [
          "<string>"
        ]
      },
      "purpose": "<string>",
      "protocol": "chat_completions",
      "test_score": "<string>",
      "last_tested_by": "<string>",
      "evaluated_harnesses": [
        "<string>"
      ],
      "last_evaluated_at": 123,
      "protection_status": "unprotected",
      "trust_stage": "registered",
      "trusted_at": 123,
      "ttt_days": 123,
      "dome_config_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "dome_manually_configured": false,
      "import_metadata": {
        "source": "manual",
        "source_url": "<string>",
        "imported_at": 123,
        "original_format": "<string>"
      },
      "capabilities": {
        "streaming": false,
        "push_notifications": false,
        "code_execution": false,
        "memory": false,
        "delegation": false,
        "tools": [
          "<string>"
        ]
      },
      "skills": [
        {
          "id": "<string>",
          "name": "<string>",
          "description": "<string>",
          "input_modes": [
            "<string>"
          ],
          "output_modes": [
            "<string>"
          ]
        }
      ],
      "latest_evaluation": {
        "evaluation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "overall_score": 123,
        "reliability_score": 123,
        "security_score": 123,
        "safety_score": 123,
        "completed_at": 123
      }
    }
  ],
  "count": 123
}

Query Parameters

statuses
string[] | null

Filter by status(es). If not provided, defaults to non-archived statuses.

limit
integer
default:100

Maximum number of results

Required range: x >= 1
offset
integer
default:0

Number of results to skip

Required range: x >= 0
include_scores
boolean
default:false

When true, sideloads the latest completed evaluation scores onto each agent.

Response

Successful Response

List response model.

results
Agent · object[]
required
count
integer
required
Last modified on April 21, 2026