alloy@eng:~$alloy.com ↗
New Featurev2.8.02025-03-01

Bulk Decisions API

You can now submit up to 1,000 decisions in a single API call using the new bulk decisions endpoint.

Endpoint: POST /decisions/bulk

This is especially useful for backfill scenarios, migration workflows, and batch processing pipelines where submitting decisions individually would hit rate limits.

{
  "decisions": [
    {
      "application_token": "app_abc123",
      "outcome": "approved",
      "reason_codes": ["CLEAN_IDENTITY"]
    }
  ]
}

Rate limits apply per batch, not per individual decision within the batch. See the API reference for full details.