Example
Basic Chat
Simple single-message chat completion with the OpenAI SDK.
1
2
3
4
curl https://api.aipilotads.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"gpt-5.5","messages":[{"role":"user","content":"What is the capital of France?"}]}'