docs
everything you need to use claudstrategy
Quick start
Buy CLAUDST on Uniswap (Base). Contract: 0x076B3c922f70225178F66B54528A98Ba2ed3c431
Go to the app, connect wallet, stake your tokens.
Sign a message to authenticate. You get an API key.
Use the key anywhere that supports custom OpenAI endpoints.
API
| method | endpoint | what |
|---|---|---|
| GET | /v1/models | list models |
| POST | /v1/chat/completions | chat (streaming + non-streaming) |
| GET | /v1/usage | check credits |
Models
| model | slug | in | out |
|---|---|---|---|
| Claude Haiku | claudst-haiku | $1/M | $5/M |
| Claude Sonnet | claudst-sonnet | $3/M | $15/M |
| Claude Opus | claudst-opus | $15/M | $75/M |
| Claude Mythos | claudst-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-keyPython
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.