#Need a Sora 2 code
1 messages · Page 1 of 1 (latest)
You can’t get Sora 2 access via “codes” from other users.
According to OpenAI’s docs, Sora 2 access is being rolled out gradually, and you request access directly from OpenAI:
- For the Sora app, download the iOS app and request to be notified when your account is enabled. The app is invite-only and uses your existing OpenAI account; some users may be asked for an invite code during onboarding, but those are provided as part of OpenAI’s own rollout, not shared publicly. [Getting started with Sora]
- For the Sora 2 API, your organization needs to be on usage tier 1–5 and verified; access is then available without a user-shared “code.” [Model access tiers]
If you need example Sora 2 API code, here’s an official JavaScript snippet that starts a Sora 2 video job:
import OpenAI from 'openai';
const openai = new OpenAI();
let video = await openai.videos.create({
model: 'sora-2',
prompt: "A video of the words 'Thank you' in sparkling letters",
});
console.log('Video generation started: ', video);
And a matching Python example:
from openai import OpenAI
client = OpenAI()
video = client.videos.create(
model="sora-2",
prompt="A calico cat playing a piano on stage",
)
print(video.id)
[Create video; Video generation guide]
To get access, follow the official waitlist / verification paths instead of relying on shared codes.
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
@thin pike Kapa.ai is still learning and improving, please let me know how I did by reacting below.