To get above JSON content you can do these steps.
Preparation:
- Make sure you have installed
curl
andjq
installed on your system - Active internet connection
- Account with unable to verify or declined (somehow) organization status
- Open browser and open https://platform.openai.com/settings/organization/general
- Login to OpenAI with account which has a declined or unable to verify status.
- Open browser DevTool like Chrome DevTool (F12 on Windows, Option+Command+I on macOS)
- Open Network tab
- Filter by
/login
path and see response POST response - Access response json path
user.session.sensitive_id
and it contains Session Authorization - Copy Organization ID from Dashboard (step 1) and Session Authorization (from step 6)
- Try command below
curl --location 'https://api.openai.com/v1/inquiries' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer $SESSION_AUTH' \
--header 'OpenAI-Organization: $ORGANIZATION_ID' | jq
FAQ:
Where did i get link to
https://api.openai.com/v1/inquiries
- I got it from browser DevTools from new account with unverified status
Why do i need those debugging?
- I need access to modern models and i’m can verify my organization
Why i need new models?
- Coding, building website and finish some my open-source projects
What if still can’t verify or OpenAI can’t help here?
- I would like to ask refund to use other AI/LLM provider to finish my task
Related issues