Call GPT-5.5, OpenAI's flagship model, for free. The keys are OpenAI-compatible, so your existing OpenAI code runs unchanged — you only swap the base URL. No OpenAI account, no sign-up, no card.
A working API key that reaches GPT-5.5 through an OpenAI-compatible
gateway. Because it speaks the OpenAI API format, you keep your existing
openai SDK code, prompts, and tooling — the only change is the
base_url. Great for chat apps, agents, content generation, and drop-in
replacement of paid OpenAI calls.
https://aiapiv2.pekpik.com/v1.gpt-5.5 with any OpenAI SDK or compatible tool.curl https://aiapiv2.pekpik.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_FREE_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.5",
"messages": [{"role": "user", "content": "Write a haiku about free APIs"}]
}'
from openai import OpenAI
client = OpenAI(
api_key="YOUR_FREE_KEY",
base_url="https://aiapiv2.pekpik.com/v1",
)
resp = client.chat.completions.create(
model="gpt-5.5",
messages=[{"role": "user", "content": "Summarize relativity in one paragraph"}],
)
print(resp.choices[0].message.content)
import OpenAI from "openai";
const client = new OpenAI({
apiKey: "YOUR_FREE_KEY",
baseURL: "https://aiapiv2.pekpik.com/v1",
});
const r = await client.chat.completions.create({
model: "gpt-5.5",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);
Yes. Keys are shared publicly with a pre-funded budget — no credit card, no sign-up. Because they're shared, a key may run out of budget; grab another from the table or come back later.
GPT-5.5 via the model name gpt-5.5. Keys are OpenAI-compatible, so your existing OpenAI code works unchanged — you only change the base URL.
No. Copy a key, set the base URL to https://aiapiv2.pekpik.com/v1, and call the API. No OpenAI account required.
Capacity for a single model can fluctuate. Use Smart mode in the playground — it auto-routes to an available model — or pick Claude or DeepSeek from the table.