cURL
curl --request POST \ --url https://gptproto.com/v1/responses \ --header 'Authorization: <authorization>' \ --header 'Content-Type: application/json' \ --data '{ "model": "<string>", "input": "<string>" }'
{ "error": { "message": "Invalid request parameters", "type": "invalid_request_error", "code": "invalid_parameters" } }
responses mode
Bearer YOUR_API_KEY
curl -X POST "https://gptproto.com/v1/responses" \ -H "Authorization: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "o3-deep-research", "input": "Tell me a three sentence bedtime story about a unicorn." }'
{ "status": "success" }