docs

everything you need to use claudstrategy

Quick start

01

Buy CLAUDST on Uniswap (Base). Contract: 0x076B3c922f70225178F66B54528A98Ba2ed3c431

02

Go to the app, connect wallet, stake your tokens.

03

Sign a message to authenticate. You get an API key.

04

Use the key anywhere that supports custom OpenAI endpoints.

API

base url
https://api.claudestrategy.xyz/v1
auth
Authorization: Bearer ak-...
methodendpointwhat
GET/v1/modelslist models
POST/v1/chat/completionschat (streaming + non-streaming)
GET/v1/usagecheck credits

Models

modelsluginout
Claude Haikuclaudst-haiku$1/M$5/M
Claude Sonnetclaudst-sonnet$3/M$15/M
Claude Opusclaudst-opus$15/M$75/M
Claude Mythosclaudst-mythos$15/M$75/M

Setup

Cursor

Settings → Models → Add model: claudst-sonnet

Set API key to your claudstrategy key

Set base URL to https://api.claudestrategy.xyz/v1

Continue.dev

models:
  - name: Claude Sonnet
    provider: openai
    model: claudst-sonnet
    apiBase: https://api.claudestrategy.xyz/v1
    apiKey: ak-your-key

Python

from openai import OpenAI

client = OpenAI(
    api_key="ak-your-key",
    base_url="https://api.claudestrategy.xyz/v1"
)

r = client.chat.completions.create(
    model="claudst-sonnet",
    messages=[{"role": "user", "content": "hi"}]
)
print(r.choices[0].message.content)

curl

curl https://api.claudestrategy.xyz/v1/chat/completions \
  -H "Authorization: Bearer ak-your-key" \
  -H "Content-Type: application/json" \
  -d '{"model":"claudst-sonnet","messages":[{"role":"user","content":"hi"}]}'

Economics

1 staked token = $0.01 of inference per 12h cycle.

Credits are consumed at Anthropic's per-token rates. Different models have different costs (see table above).

Credits reset automatically every 12 hours from your first auth. Unused credits don't roll over.

Restake anytime to extend your lock by 12h and reset your cycle.

After lock expires you can unstake and withdraw your tokens.

Contracts

Token (CLAUDST)
0x076B3c922f70225178F66B54528A98Ba2ed3c431
Staking
0x674d8d23ee7906D2933E7424133F0BE035975c82
Network
Base (8453)