Skip to main content
GET
/
v1
/
agents
/
{agent_id}
/
evolution
/
proposals
List Proposals
curl --request GET \
  --url https://api.example.com/v1/agents/{agent_id}/evolution/proposals
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "genome_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "genome_version": 123,
      "status": "<string>",
      "created_at": 123,
      "trigger_summary": "",
      "mutations": [],
      "pre_fitness": {},
      "post_fitness": {},
      "fitness_delta": {},
      "net_fitness_delta": 123,
      "reviewed_at": 123,
      "reviewed_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "reviewer_notes": "<string>",
      "engine_name": "<string>",
      "extra": {}
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Path Parameters

agent_id
string<uuid>
required

Query Parameters

status
string | null
limit
integer
default:50
Required range: 1 <= x <= 200
offset
integer
default:0
Required range: x >= 0

Response

Successful Response

Paginated list of proposals from Darwin.

items
Proposal · object[]
required
total
integer
required
limit
integer
required
offset
integer
required
Last modified on April 21, 2026