Skip to main content
anyformat provides official SDKs for Python and TypeScript. They are auto-generated from our OpenAPI specification using Stainless, so they stay in sync with every API update.

Python SDK

anyformat Python SDK

Official Python client library for the anyformat API.

Installation

Requires Python 3.9+.
pip install anyformat

Quick example

from anyformat import Anyformat

client = Anyformat()  # reads ANYFORMAT_API_KEY from environment

# Check API connectivity
client.health.check()

# List your workflows
workflows = client.workflows.list()
print(workflows.results)
For a complete guide covering authentication, async usage, error handling, and all available methods, see the Python SDK Guide.

TypeScript / Node SDK

The TypeScript SDK is coming soon. It will be published to npm as anyformat.

anyformat TypeScript SDK

Official TypeScript/Node client library for the anyformat API (coming soon).
Preview:
npm install anyformat  # not yet published
import Anyformat from 'anyformat';

const client = new Anyformat(); // reads ANYFORMAT_API_KEY from env
Follow the GitHub repo for release updates.