Did you receive a voucher for the Codex track of the hackathon and don't know where to redeem it? You're not alone. Many teams add credits and then discover the Codex model doesn't show up or the API returns "voucher access denied". Frustrating, right? Let's unravel this mystery step by step.
What's going on
The OpenAI Codex Track prize requires you to use Codex as a coding agent. Hugging Face and the organizers handed out vouchers so you can try and build with Codex. However, there are two key points that often cause confusion:
- Vouchers can be coupons you redeem on the OpenAI platform or credentials that organizers enable on an organizational account.
- Codex isn't always enabled by default on every account or org. Even if you have credits, the model might require explicit activation.
The result? You have credit, but not permission to use the model. Annoying? Yes. Fixable? Also yes.
Technical steps to try to activate your voucher
- Recheck the hackathon email and dashboard
- Look for the email with instructions and the voucher format. Sometimes the redeem link is different from the code.
- Confirm whether the voucher is for the OpenAI platform (a coupon) or if the organizers must enable access from their account.
- Try redeeming on the OpenAI platform
- Go to your account on the OpenAI Platform and look for Billing / Credits / Redeem coupon. If there's a coupon field, paste the code.
- If you can't find the form, open a ticket with OpenAI support before moving to more complex steps.
- Verify you're in the correct organization
- Many accounts have organizations. If the voucher was issued for an organization, you must select that org in the top corner before using the credit.
- In the terminal or API calls, make sure you're using the API key associated with the account/org that received the voucher.
- Test your API key and model availability
- A direct way to check if your key can see models is to list available models. Use this example with
curl:
curl -s https://api.openai.com/v1/models \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
- Look in the response for any model name related to Codex (for example
code-...orcodex-...). If it doesn't appear, the model isn't enabled for that account.
- If you see "Model voucher access denied"
-
Possible causes:
- The voucher wasn't applied to the correct org/user.
- The Codex model is in restricted access or requires manual enablement by OpenAI.
- Coupon expired or usage limits (quota) already reached.
- Regional or compliance restrictions.
-
What to do:
- Take screenshots: the voucher email, the exact error, and the
curloutput listing models. - Open a ticket with OpenAI Support including: voucher code, event name (Build Small Hackathon - OpenAI Codex Track), your organization, and the error "Model voucher access denied".
- Ask explicitly that they enable the Codex model for your org or tell you the exact step to redeem the voucher.
- Take screenshots: the voucher email, the exact error, and the
- Collaborate with the organizers (and copy the admins you mentioned)
- In the community thread or on email, ask admins to confirm with the providers whether vouchers were issued as coupons or as enablements on an organizational account.
- Use this template message to send to admins/OpenAI:
"Hi, we have the voucher [CODE] for the OpenAI Codex Track of the Build Small Hackathon. When trying to use the API with our API key we get 'Model voucher access denied' and the Codex model does not appear in the model list. Could you confirm whether the voucher needs redemption in the OpenAI console or manual enablement by the organizers? Attached are screenshots and the link to our Space/Repo: [URL]."
Recommended copy: @hannah @hmb @Freddy Boulton @freddyaboulton @Pete @akhaliq @yuvraj sharma @ysharma
Final practical recommendations (quick)
- If you resolved the issue on a second attempt, note what steps differed: did you redeem first in the UI or receive confirmation by email? Repeating that flow for Codex can save time.
- Add a file in your repo that says "Generated with OpenAI Codex" and make sure the commits that include that file are in the public history to meet the "Codex-attributed commits" rule.
- Document all redemption attempts and support responses. If you're competing for prizes, you'll need clear evidence.
Using vouchers and models at hackathons is sometimes more bureaucracy than science, but with the right evidence and the right messages to support and organizers, it's solvable. Want me to draft the support email for you with all the details ready to paste? I can prepare it right now.
Original source
https://huggingface.co/blog/build-small-hackathon/sponsors-vouchers
