AgentWeb Auth, Scopes, And Rate Limits

AgentWeb uses scoped design-partner access for authenticated workflow execution. Public discovery documents are available without an API key. Execution APIs require an AgentWeb API key issued after workflow mapping.

Authentication

Authenticated runtime calls use a bearer token:

Authorization: Bearer aw_YOUR_KEY

API keys are created for approved design partners and scoped to specific workflow families. The key is not a generic account password and should not be embedded in public client-side code.

Scopes

Rate Limits

Rate limits are intentionally conservative until a design partner workflow is scoped. Production limits are set per partner, workflow, and runtime tier after the benchmark.

AccessDefault LimitNotes
Public read/discoveryFree-tier hourly limitUsed for discovery and evaluation.
Design partner executionPartner-specificSet after workflow mapping and benchmark.
Production runtimeContract-specificIncludes monitoring, logs, and reliability targets.

Expected Rate-Limit Headers

X-RateLimit-Limit: 100
X-RateLimit-Remaining: 99
Retry-After: 3600

Error Shape

{
  "error": {
    "code": "workflow_not_mapped",
    "message": "This workflow is not mapped for the provided API key.",
    "workflow_id": "supplier_discovery",
    "retryable": false
  }
}

Data Retention

AgentWeb prefers retaining workflow structure, endpoint shape, verification logic, latency, completion, and failure metrics. Sensitive customer payloads are redacted or not stored unless explicitly approved.

Related References