Anyrow SDK
TypeScript/JS SDK for Anyrow AI document extraction API
Anyrow SDK (@anyrow/sdk) is the official TypeScript/JavaScript client for the Anyrow API — AI-native document extraction with built-in structured storage.
Extract clean rows from PDFs, images, emails, calls, and websites. Manage tables, rows, batches, live extraction streams, and exports via a single typed client.
Runs in browsers and on Node, Bun, Deno, and Cloudflare Workers — any runtime with `fetch`.
Install:
npm install @anyrow/sdk
Quick start:
import { AnyrowSDK } from "@anyrow/sdk"
const client = new AnyrowSDK({ baseURL: "https://api.anyrow.ai", headers: { Authorization: "Bearer KEY" }})
await client.extract.once({ params: { project_id: "proj_123" }, json: { url: "https://example.com/doc.pdf" }})
Open source (MIT). ...