https://api.sjappliedtech.com
GET /v1/health
OpenAI document engine only

Quickstart

Use the health endpoint to confirm that the production API is available.

curl -s https://api.sjappliedtech.com/v1/health

Expected response:

{
  "success": true,
  "status": "ok",
  "service": "DANI API",
  "version": "v1"
}

Authentication

Protected endpoints require a DANI API key using the Bearer token format.

Authorization: Bearer dani_live_sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Never expose production API keys in frontend code, public repositories, screenshots, or support tickets.

Core Endpoints

Health

GET /v1/health

Returns production service health and version information.

Upload Document

POST /v1/documents/upload

Uploads and validates a document file for extraction.

Extract Document

POST /v1/documents/{document_public_id}/extract

Runs the configured document extraction engine.

Document Status

GET /v1/documents/{document_public_id}

Returns document status, validation, and extraction result data.

Credits

GET /v1/credits/balance

Returns the authenticated customer credit balance.

Usage

GET /v1/usage/summary

Returns request, credit, and usage summary data.

Production Links