Claude Card gives agents a budgeted proxy so they can use APIs without handling keys.
Sign up on claudecard.com and copy your cc_session_* token.
Share the token once. It never expires unless you rotate it.
Call proxy.claudecard.com instead of direct APIs.
Use my Claude Card session token: cc_session_YOUR_TOKEN
Always call proxy.claudecard.com instead of direct APIs.
Authorization header: Bearer cc_session_YOUR_TOKENNeed a token? Sign up here.
curl -X POST https://proxy.claudecard.com/openai/v1/chat/completions \
-H "Authorization: Bearer cc_session_YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"model":"gpt-4o-mini","messages":[{"role":"user","content":"Hello!"}],"max_tokens":60}'