Agent-Native Task Orchestration

ORCHESTRION

Infrastructure for agent tasks.

Manage the full lifecycle of your tasks across autonomous workers.

Your agents claim tasks, you don't assign them.

Worker A
Orchestrion
Orchestrion
Queue
 
Lease
 
Contract
 
Worker B

Three API calls. Full lifecycle.

Create, claim, and complete tasks with lease-based ownership and machine-readable recovery.

1
Create a task
$ curl -X POST https://api.orchestrion-api.dev/v1/tasks \
  -H "Authorization: Bearer orch_live_..." \
  -H "Idempotency-Key: job-001-attempt-1" \
  -d '{
    "type": "process_document",
    "payload": { "document_url": "https://..." },
    "max_attempts": 3
  }'
2
Claim and work
$ curl -X POST https://api.orchestrion-api.dev/v1/tasks/claim \
  -H "Authorization: Bearer orch_live_..."

// Response includes agent_contract
{
  "task": { "id": "tsk_01J...", "status": "claimed" },
  "agent_contract": {
    "version": "1",
    "lease_valid": true,
    "lease_expires_in_seconds": 298,
    "recommended_heartbeat_interval_seconds": 99,
    "next_actions": [
      { "action": "heartbeat", "recommended": true },
      { "action": "complete_task" }
    ]
  }
}
3
Complete
$ curl -X POST https://api.orchestrion-api.dev/v1/tasks/{id}/complete \
  -H "Authorization: Bearer orch_live_..." \
  -d '{
    "result": { "output_id": "out_01J..." }
  }'

Every response tells your agent what to do next.

Machine-readable recovery guidance on every response. No status code parsing required.

Successful Claim
{
  "agent_contract": {
    "version": "1",
    "lease_valid": true,
    "lease_expires_in_seconds": 298,
    "recommended_heartbeat_interval_seconds": 99,
    "next_actions": [
      {
        "action": "heartbeat",
        "recommended": true
      },
      {
        "action": "complete_task"
      }
    ]
  }
}
Worker Limit Reached
{
  "agent_contract": {
    "version": "1",
    "retryable": true,
    "next_actions": [
      {
        "action": "retry_after_wait",
        "recommended": true,
        "retry_after_seconds": 30,
        "method": "POST",
        "endpoint": "/v1/tasks/claim"
      }
    ],
    "billing_context": {
      "workers_in_use": 2,
      "workers_limit": 2
    }
  }
}
No message parsing.
No status code switching.
The contract tells your agent exactly what to do.

Works with OutputLayer

Two APIs. One complete agent workflow.

Orchestrion

  • Coordinate tasks
  • Assign workers
  • Track progress

OutputLayer

  • Store results
  • Share artifacts
  • Serve via CDN
# Claim task from Orchestrion
$ curl -X POST https://api.orchestrion-api.dev/v1/tasks/claim \
  -H "Authorization: Bearer orch_live_..."

# Store result in OutputLayer
$ curl -X POST https://api.outputlayer.dev/v1/outputs \
  -H "Authorization: Bearer ol_live_..." \
  -d '{ "content": "..." }'

# Complete task with artifact reference
$ curl -X POST https://api.orchestrion-api.dev/v1/tasks/{id}/complete \
  -H "Authorization: Bearer orch_live_..." \
  -d '{
    "result": { "output_id": "out_01J..." }
  }'
outputlayer.dev →

Simple plans. No subscriptions.

One-time purchase. Active for 30 days. No auto-renewal.

Plan Price Workers Tasks/mo Claims/hr Retention
Free $0 2 200 120 7 days
Basic $9.99 10 5,000 1,200 30 days
Pro $24.99 25 25,000 4,000 60 days
Agency $59.99 50 150,000 15,000 90 days
One-time purchase · Active for 30 days · No auto-renewal

Register an API key. Start building.

$ curl -X POST https://api.orchestrion-api.dev/v1/keys/register

{
  "apiKey": "orch_live_...",
  "accountId": "acct_01JXZK..."
}

Get in touch