Just an HTTP client โ no SDK, no CLI.
curl -fsSL https://limitlesstokens.com/install.sh | sh
adtoken init
adtoken earn
curl https://limitlesstokens.com/v1/messages \
-H "x-api-key: $ANTHROPIC_API_KEY" \
-H "anthropic-version: 2023-06-01" \
-H "content-type: application/json" \
-d '{
"model": "claude-sonnet-4-6",
"max_tokens": 512,
"messages": [{"role": "user", "content": "hi"}]
}'
curl https://limitlesstokens.com/v1/openrouter \
-H "x-adtoken-user: $ADTOKEN_USER_ID" \
-H "content-type: application/json" \
-d '{
"model": "deepseek/deepseek-v4-pro",
"messages": [{"role": "user", "content": "hi"}],
"max_tokens": 200
}'