Model: openai/sora-2-pro
Job ID: T370UuaYKsYC7C3PoVlM
Generation ID: gen-vid-1774468176-JVusj78IJ3O2EjUa3djW
Requested Duration: 4s
I've been testing the API integration with my agent and ran into three specific issues regarding endpoint stability, documentation accuracy, and pricing mismatches.
Bug 1: The /content endpoint throws 404s (Doc Mismatch) The official API spec states that to download the video, we should run GET /api/alpha/videos/:jobId/content.
- Actual Behavior: Hitting that endpoint directly returns a
404 Not Found. * Workaround Used: I had to parse theunsigned_urlsarray from the completed status JSON and use the specific string provided (.../content?index=0). - Request: Either the documentation should be updated to clarify that users must extract the URL from the
unsigned_urlsarray, or the bare/contentendpoint needs to actually route to the file.