ORIS
Developers Quickstart

Quickstart

Get your API key, install the SDK, and register your first agent in under five minutes.

1. Get your API key

Sign up at developer.useoris.xyz. Navigate to API Keys in the developer dashboard and generate a new key. The key starts with oris_sk_live_ for production or oris_sk_test_ for sandbox.

1
Create your account at developer.useoris.xyz/signup
2
Open Settings > API Keys in the dashboard
3
Click Generate Key and copy the value
4
Store the key in a secure location. It will not be shown again.

2. Install the SDK

Oris provides official SDKs for Python and TypeScript. Pick the one that fits your stack.

bash
# Python
pip install oris-sdk
bash
# TypeScript / Node.js
npm install @oris/sdk

3. Register your first agent

Pass your agent metadata to the register method. The response includes the agent ID, KYA tier, and wallet address.

quickstart.py
from oris import OrisClient

client = OrisClient(api_key="oris_sk_live_...")

# Register agent
agent = client.agents.register(
    name="Researcher-01",
    description="Data procurement agent"
)

print(agent.id)        # "agt_01h..."
print(agent.kya_tier)  # "L0"

4. Create a wallet and set a spending policy

Create a wallet for your agent on any supported chain and attach a spending policy with daily limits.

python
wallet = client.wallets.create(agent_id=agent.id, chain="polygon")
client.policies.create(agent_id=agent.id, daily_limit_usd=500)

print(wallet.address)  # "0x5d3e..."

5. Next steps

You have a working integration. Explore the rest of the platform to build a complete agent payment pipeline.