Industry Modules API

A complete reference for Tulify's industry-specific modules. Select a module below to view its specialized endpoints.

Authentication & Modes

API Key Authentication
All API requests must be authenticated using your API Key in the request header.
x-api-key: your_api_key_here
Async Processing & Webhooks
Handling large datasets efficiently.

When submitting large datasets (e.g., arrays with > 50 items), the API automatically switches to Async Mode.

  • The API returns a queued status with a jobId immediately.
  • Include a webhookUrl in your request body to receive the results.
  • Once processing is complete, a webhook POST request is sent to your URL.
// Async Response { "status": "queued", "jobId": "job_12345", "message": "Dataset is large. Processing in background..." }

Available Modules