Platform Reference

Accie Platform APIs

Accie provides a unified identity and API architecture. Secret keys provisioned in Accie Accounts allow programmatic access across our services.

Architecture summary

Organizations, team members, and billing credits are managed centrally in Accie Accounts (https://accounts.accie.ai). Product microservices — such as Accie Extract (https://ocr.accie.ai) — authenticate against shared organizational tokens to run processing tasks and meter usage.

Authentication

API requests require an API key generated in the Accie Account Portal under Settings → Integrations → API Keys. All keys start with the prefix accie_sk_.

Send the key in the standard Authorization header as a Bearer token, or in the X-API-Key header:

Authorization: Bearer accie_sk_live_abc123...
# Or:
X-API-Key: accie_sk_live_abc123...

Product APIs

Standard Error Responses

All Accie APIs follow standard HTTP error response structures with machine-readable error codes:

{
  "detail": {
    "error": "quota_exceeded",
    "message": "Your organization has reached its included page limit for this billing period.",
    "code": "quota_exceeded"
  }
}