Installation
Pore ships official SDKs for TypeScript, Python, and Rust.
TypeScript
Section titled “TypeScript”npm install @pore/sdk# orpnpm add @pore/sdk# oryarn add @pore/sdkRequires Node.js 22 or later. Runs in Cloudflare Workers, Vercel Edge Functions, Deno, and Bun without modification.
Python
Section titled “Python”pip install pore# oruv add poreRequires Python 3.11 or later. Both sync and async clients are available.
cargo add pore-sdkRequires Rust 1.80 or later. The Rust SDK shares types with pore-core for
zero-cost abstractions in-process.
Environment variables
Section titled “Environment variables”All SDKs read the following when no explicit value is passed to the constructor:
PORE_API_KEY— your tenant-scoped API key.PORE_API_URL— API base URL; defaults tohttps://api.pore.dev.
Verifying the install
Section titled “Verifying the install”npx @pore/cli pingReturns a pong if the key is valid and the API is reachable.