Github
Our SDKs are available on Github:Node.js
Python
Installation
Usage
To get your workspace API Keys, see API Keys.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Orq MCP is live: Use natural language to interrogate traces, spot regressions, and experiment your way to optimal AI configurations. Available in Claude Desktop, Claude Code, Cursor, and more. Start now →
Install and configure the official Orq.ai SDKs for Python and Node.js. Authenticate with your API key and start making API calls in minutes.
# The SDK can be installed with either pip or poetry package managers.
# PIP
pip install orq-ai-sdk
# Poetry
poetry add orq-ai-sdk
# The SDK can be installed with either npm, pnpm, bun or yarn package managers.
# NPM
npm add @orq-ai/node
# PNPM
pnpm add @orq-ai/node
# Bun
bun add @orq-ai/node
# Yarn
yarn add @orq-ai/node zod
# Note that Yarn does not install peer dependencies automatically. You will need
# to install zod as shown above.
import os
from orq_ai_sdk import Orq
client = Orq(
api_key=os.environ.get("ORQ_API_KEY", "__API_KEY__"),
)
import { Orq } from "@orq-ai/node";
const client = new Orq({
apiKey: 'orq-api-key',
});
Was this page helpful?