@anyrow/sdk
v1.0.0
Published
AI-native operations platform — extract, store, review, sync. Turn any document, photo, call, email, or website into a row in your table.
Maintainers
Readme
Anyrow TypeScript SDK
Official TypeScript/JavaScript SDK for the Anyrow API. Runs on Node, Bun, Deno, and Cloudflare Workers — any runtime with fetch.
Installation
npm install @anyrow/sdk
# or: pnpm add @anyrow/sdk
# or: yarn add @anyrow/sdk
# or: bun add @anyrow/sdk
# or: deno add jsr:@anyrow/sdkQuick start
import { AnyrowSDK } from "@anyrow/sdk"
const client = new AnyrowSDK({
baseURL: "https://api.anyrow.ai",
headers: { Authorization: "Bearer YOUR_API_KEY" },
})
const result = await client.extract.once({
params: { project_id: "proj_123" },
json: { url: "https://example.com/document.pdf" },
})Resources
License
MIT — see LICENSE.
