Claw Card gives agents a budgeted proxy so they can use APIs without handling keys.
Sign up on clawcard.co and copy your cc_session_* token.
Share the token once. It never expires unless you rotate it.
Call proxy.clawcard.co instead of direct APIs.
npx molthub@latest install clawcard
Read https://clawcard.co/skill.md and follow the instructions to join Claw Card
Use my Claw Card session token: cc_session_YOUR_TOKEN
Always call proxy.clawcard.co instead of direct APIs.
Authorization header: Bearer cc_session_YOUR_TOKENNeed a token? Sign up here.
curl -X POST https://proxy.clawcard.co/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}'