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
Available Now
Accie Extract API
High-throughput document vision pipeline. Submit single documents or batches, poll job progress, retrieve tax-verified fields, and download Tally XML / Excel exports.
Real-Time Events
Outbound Webhooks
Signed HMAC-SHA256 push notifications dispatched when asynchronous jobs complete or encounter errors.
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"
}
}