EdgazeDocsEdgaze Docs
DocumentationAPI Reference
Home
Getting started
API ReferenceAuthenticationQuickstart
Workflows
GETList WorkflowsGETGet WorkflowGETList Workflow VersionsPOSTAccept Workflow Update
Runs
POSTCreate RunGETList RunsGETGet RunPOSTCancel RunGETList Run Events
Guides
WebhooksErrors & Edge CasesBilling & Spend CapsStreaming & Real-timeOpenAPI specification

Platform status

Checking platform status
All documentation
API Reference

REST endpoints, authentication, and webhooks for running workflows from your backend.

Overview
Getting started
API ReferenceAuthenticationQuickstart
Workflows
GETList WorkflowsGETGet WorkflowGETList Workflow VersionsPOSTAccept Workflow Update
Runs
POSTCreate RunGETList RunsGETGet RunPOSTCancel RunGETList Run Events
Guides
WebhooksErrors & Edge CasesBilling & Spend CapsStreaming & Real-timeOpenAPI specification
Developer console

Platform status

Checking platform status
Getting started

Authentication

Every API request must include a valid secret key in the Authorization header.

Audience

Developers building with the Edgaze API.

Every API request must include a valid secret key in the Authorization header. Keys are scoped, revocable, and optionally spend-capped: create and manage them in the Developer console.

Key format#

Authorization: Bearer edgaze_sk_live_…

Keys follow the pattern edgaze_sk_{live|test}_…. The plaintext is shown once at creation in the Developer console. Only a SHA-256 hash is stored server-side: if you lose the key, revoke it and create a new one.

Never commit keys to source control. Use environment variables or a secrets manager, and rotate keys if exposure is suspected.

Scopes#

Each key is issued with one or more scopes. The API rejects requests that lack the required scope.

ScopeAccess
run:executePOST /runs
run:readGET /runs/\*, including events and streams

Workflow list and detail endpoints accept either scope. Run status, event, and stream endpoints specifically require run:read; run:execute alone cannot read a run. Default keys include both scopes.

Security behavior#

The API is designed to avoid leaking tenant or resource existence.

  • Invalid, revoked, or expired keys always return 401 with the same message: no enumeration of which condition applied.
  • Cross-tenant resource access returns 404 for runs, not 403. You cannot probe whether a run id exists in another account.
  • Workflow entitlement denial returns 403 forbidden with a uniform message when you are authenticated but not allowed to run a listing.
  • Scope violations return 403 insufficient_scope before any handler logic runs.

Was this useful?

Your response helps us improve the documentation.

← API ReferenceQuickstart →
On this page
Key formatScopesSecurity behavior
© 2026 Edge Platforms, Inc. All rights reserved.