All requests below will use this key. Your API key is sent directly to api.cueapi.ai and never stored by the docs site.
GET
/v1/executions/claimableList Claimable
List pending worker-transport executions available for claiming.
taskstringqueryFilter by payload.task value. Only returns executions matching this handler name.
Request
bash
curl https://api.cueapi.ai/v1/executions/claimable \
-H "Authorization: Bearer cue_sk_YOUR_KEY"bash
curl "https://api.cueapi.ai/v1/executions/claimable?task=draft-linkedin" \
-H "Authorization: Bearer cue_sk_YOUR_KEY"Response
json
{
"executions": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"cue_id": "cue_a1b2c3d4e5f6",
"scheduled_for": "2026-03-13T09:00:00Z",
"payload": {
"task": "draft-linkedin",
"kind": "agent_turn",
"instruction": "Draft a LinkedIn post"
}
}
]
}GET
Try it/v1/executions/claimableEnter your API key above to send requests