📖 To learn more, take a look at our complete API
📤 Example Request
Generate an api key below👇
Install node-fetch & add the GOOEY_API_KEY to your environment variables.
Never store the api key in your code and don't use direcly in the browser.
$ npm install node-fetch
$ export GOOEY_API_KEY=sk-xxxx
- Use this sample code to call the API.
If you encounter any issues, write to us at [email protected] and make sure to include the full code snippet and the error message.
import fetch from 'node-fetch';
const payload = {
"input_prompt": "In terms of coolness, what are the top 5 {{product}} makers who sell in the US? Answer as a ranked list of {{product}} makers and do not give any qualifications or explanations.\nEg. \n1. {{product}} maker 1\n2. {{product}} maker 2\n\u2026",
"selected_models": [
"claude_4_6_sonnet",
"apertus_70b_instruct",
"deepseek_v3p2",
"gpt_5_4",
"kimi_k_2_5",
"gpt-oss-120b",
"gemini_3_1_flash_lite",
"glm_5"
]
};
async function gooeyAPI() {
const response = await fetch("https://api.gooey.ai/v2/CompareLLM", {
method: "POST",
headers: {
"Authorization": "bearer " + process.env["GOOEY_API_KEY"],
"Content-Type": "application/json",
},
body: JSON.stringify(payload),
});
if (!response.ok) {
throw new Error(response.status);
}
const result = await response.json();
console.log(response.status, result);
}
gooeyAPI();
Generate an api key below👇
Install requests & add the GOOEY_API_KEY to your environment variables.
Never store the api key in your code.
$ python3 -m pip install requests
$ export GOOEY_API_KEY=sk-xxxx
- Use this sample code to call the API.
If you encounter any issues, write to us at [email protected] and make sure to include the full code snippet and the error message.
import os
import requests
payload = {
"input_prompt": "In terms of coolness, what are the top 5 {{product}} makers who sell in the US? Answer as a ranked list of {{product}} makers and do not give any qualifications or explanations.\nEg. \n1. {{product}} maker 1\n2. {{product}} maker 2\n…",
"selected_models": [
"claude_4_6_sonnet",
"apertus_70b_instruct",
"deepseek_v3p2",
"gpt_5_4",
"kimi_k_2_5",
"gpt-oss-120b",
"gemini_3_1_flash_lite",
"glm_5",
],
}
response = requests.post(
"https://api.gooey.ai/v2/CompareLLM",
headers={
"Authorization": "bearer " + os.environ["GOOEY_API_KEY"],
},
json=payload,
)
assert response.ok, response.content
result = response.json()
print(response.status_code, result)
Generate an api key below👇
Install curl & add the GOOEY_API_KEY to your environment variables.
Never store the api key in your code.
export GOOEY_API_KEY=sk-xxxx
- Run the following
curl command in your terminal.
If you encounter any issues, write to us at [email protected] and make sure to include the full curl command and the error message.
curl https://api.gooey.ai/v2/CompareLLM \
-H "Authorization: bearer $GOOEY_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"input_prompt": "In terms of coolness, what are the top 5 {{product}} makers who sell in the US? Answer as a ranked list of {{product}} makers and do not give any qualifications or explanations.\nEg. \n1. {{product}} maker 1\n2. {{product}} maker 2\n\u2026",
"selected_models": [
"claude_4_6_sonnet",
"apertus_70b_instruct",
"deepseek_v3p2",
"gpt_5_4",
"kimi_k_2_5",
"gpt-oss-120b",
"gemini_3_1_flash_lite",
"glm_5"
]
}'
🎁 Example Response
{4 Items"url":
string
"https://gooey.ai/compare-large-language-models/"
"created_at":
string
"2026-03-27T12:18:38.837285+00:00"
"output":
{1 Items"output_text":
{8 Items"gpt-oss-120b":
[…
]1 Items "deepseek_v3p2":
[…
]1 Items "claude_4_6_sonnet":
[…
]1 Items "apertus_70b_instruct":
[…
]1 Items "gemini_3_1_flash_lite":
[…
]1 Items } } } Please Login to generate the $GOOEY_API_KEY