Back to Home
Documentation

Integrations

Connect NeuroDocs with your existing stack.

Connect NeuroDocs with storage, messaging, and business automation tools.

Last updated: June 13, 20263 key sections
api-client.ts
import { neuro } from "docs";
// Initialize API client
const client = new NeuroDocs({
apiKey: "nd_live_...",
version: "2026-06"
});
await client.extract("doc_123");
STATUS: READY200 OK

Section 1

Storage and Auth

  • Supabase handles object storage, auth, and row-level authorization.
  • Use scoped bucket policies so users can only access their own files.

Section 2

Event-driven Processing

  • Trigger background workers from queue events instead of synchronous APIs.
  • Push completion events to webhook consumers for downstream automation.

Section 3

Business System Sync

  • Sync extracted records to ERP/CRM with stable identifiers and retry-safe writes.
  • Keep a reconciliation job for failed sync events and reprocessing.