{"info":{"name":"NexRelay API","description":"OpenAI-compatible, Claude-compatible, and Gemini-style API requests for the NexRelay prepaid AI API gateway.","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"variable":[{"key":"baseUrl","value":"https://nexrelay-api.xyz"},{"key":"apiKey","value":"nra_YOUR_API_KEY"}],"auth":{"type":"bearer","bearer":[{"key":"token","value":"{{apiKey}}","type":"string"}]},"item":[{"name":"List models","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/models","host":["{{baseUrl}}"],"path":["api","v1","models"]}}},{"name":"OpenAI-compatible chat completion","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/chat/completions","host":["{{baseUrl}}"],"path":["api","v1","chat","completions"]},"body":{"mode":"raw","raw":"{\n  \"model\": \"gpt-5.4\",\n  \"messages\": [\n    {\n      \"role\": \"user\",\n      \"content\": \"Say hello in one sentence.\"\n    }\n  ],\n  \"max_tokens\": 120\n}","options":{"raw":{"language":"json"}}}}},{"name":"OpenAI-compatible response","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/responses","host":["{{baseUrl}}"],"path":["api","v1","responses"]},"body":{"mode":"raw","raw":"{\n  \"model\": \"gpt-5.5\",\n  \"input\": \"Explain prepaid API cost control in one paragraph.\",\n  \"max_output_tokens\": 200\n}","options":{"raw":{"language":"json"}}}}},{"name":"Claude-compatible message","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/v1/messages","host":["{{baseUrl}}"],"path":["v1","messages"]},"body":{"mode":"raw","raw":"{\n  \"model\": \"claude-sonnet-4-6\",\n  \"max_tokens\": 200,\n  \"messages\": [\n    {\n      \"role\": \"user\",\n      \"content\": \"Explain request-level API logs.\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}}}},{"name":"Gemini-compatible models","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/v1beta/models","host":["{{baseUrl}}"],"path":["v1beta","models"]}}}]}