← All offersActive Anthropic credit

Claim your $20 USD in Claude API credits

Full guide so nothing slips: prerequisites, how to redeem, and — most importantly — how to USE the credits before they expire.

Claude Code for Developers in Santiago · Workshop DevEps × Bendita IA — 23 abril 2026
01Before you start

Three things you need

If all three are ready, the rest takes 90 seconds.

  • Your usual email

    The same one you use for Claude.ai works. Anthropic identifies attendees by their email.

  • Anthropic Console account

    It's the API console, separate from claude.ai. First login with your email creates the account for free.

    console.anthropic.com
  • An organization created

    On first login, console asks you to create an org (can be just your name). Without an org, the offer form won't show up.

    console.anthropic.com
02Redeem the offer

Claim your $20 USD in 4 clicks

This offer is closed
Deadline: April 29, 2026
Scan from your phoneOpen offer directly
  1. 01
    Open the link and log in

    Click the orange button or scan the QR. It asks you to log in with your Anthropic Console account (not claude.ai).

  2. 02
    Verify your organization

    The form auto-detects your organization (you don't paste any ID). Check the name is correct before submitting.

  3. 03
    Fill the form

    First name, last name, and which Anthropic products you already use (Claude.ai, Claude Code, Claude API). Takes 30 seconds.

  4. 04
    Submit the request

    You'll see the 'Request submitted · Reviewing' screen. Done, your part is over.

  5. 05
    Wait 1-2 business days

    Anthropic reviews every request before crediting. This is for EVERYONE, not specific to your account. You get an email when the credits are ready.

03When they arrive

How to use your credits before they expire

Credits land in your console account. To spend them you need to create an API key and wire it from your code. Here's the shortest possible example.

Create your first API key

In console.anthropic.com → Settings → API Keys → Create Key. Copy it and store it in an environment variable (e.g.: ANTHROPIC_API_KEY).

console.anthropic.com/settings/keys
curl https://api.anthropic.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": 256,
    "messages": [{"role": "user", "content": "Hola Claude!"}]
  }'
Credits expire in 3 months
From the day they're credited. No renewals or transfers. Build something, don't let them die.
Frequently asked

Common errors and how to avoid them

Other questions? Email community@anthropic.com or check the Claude support center.