📖 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 = {
"documents": [
"https://docs.google.com/spreadsheets/d/1t0I3VkmF49A60LGcAvGyF99SeGRc4OXeQIHhmDI8jlI/edit?usp=sharing"
],
"run_urls": [
"https://gooey.ai/copilot/0-gpt55-sindhi-j43a0rs2yg3l/",
"https://gooey.ai/copilot/1-gpt55-omni-sindhi-a15vtuc3h9sq/",
"https://gooey.ai/copilot/2-gem31pro-sindhi-znybak8kc0o1/",
"https://gooey.ai/copilot/3-gem31pro-omni-sindhi-koujs4a0b6yg/",
"https://gooey.ai/copilot/4-gem31flashlite-sindhi-67ens4q8s2ik/",
"https://gooey.ai/copilot/5-gem31flashlite-omni-sindhi-9ls73ickk3fl/",
"https://gooey.ai/copilot/6-kimi-k26-omni-sindhi-p2ka7psm618c/",
"https://gooey.ai/copilot/7-gpt-oss-120b-omni-sindhi-76ho2636h2ob/",
"https://gooey.ai/copilot/8-gpt-realtime-15-sindhi-wyrugylcd4ex/",
"https://gooey.ai/copilot/9-gpt-realtime-15-omni-sindhi-ychbxohz611o/",
"https://gooey.ai/copilot/10-gemma4-26b-omni-sindhi-qr0j1pif89ub/"
],
"input_columns": {
"documents": "documents",
"input_audio": "input_audio"
},
"output_columns": {
"run_url": "Run URL",
"run_time": "Run Time",
"output_text": "Output Text"
}
};
async function gooeyAPI() {
const response = await fetch("https://test.api.gooey.ai/v2/bulk?example_id=noghet7fzozt", {
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 = {
"documents": [
"https://docs.google.com/spreadsheets/d/1t0I3VkmF49A60LGcAvGyF99SeGRc4OXeQIHhmDI8jlI/edit?usp=sharing"
],
"run_urls": [
"https://gooey.ai/copilot/0-gpt55-sindhi-j43a0rs2yg3l/",
"https://gooey.ai/copilot/1-gpt55-omni-sindhi-a15vtuc3h9sq/",
"https://gooey.ai/copilot/2-gem31pro-sindhi-znybak8kc0o1/",
"https://gooey.ai/copilot/3-gem31pro-omni-sindhi-koujs4a0b6yg/",
"https://gooey.ai/copilot/4-gem31flashlite-sindhi-67ens4q8s2ik/",
"https://gooey.ai/copilot/5-gem31flashlite-omni-sindhi-9ls73ickk3fl/",
"https://gooey.ai/copilot/6-kimi-k26-omni-sindhi-p2ka7psm618c/",
"https://gooey.ai/copilot/7-gpt-oss-120b-omni-sindhi-76ho2636h2ob/",
"https://gooey.ai/copilot/8-gpt-realtime-15-sindhi-wyrugylcd4ex/",
"https://gooey.ai/copilot/9-gpt-realtime-15-omni-sindhi-ychbxohz611o/",
"https://gooey.ai/copilot/10-gemma4-26b-omni-sindhi-qr0j1pif89ub/",
],
"input_columns": {"documents": "documents", "input_audio": "input_audio"},
"output_columns": {
"run_url": "Run URL",
"run_time": "Run Time",
"output_text": "Output Text",
},
}
response = requests.post(
"https://test.api.gooey.ai/v2/bulk?example_id=noghet7fzozt",
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://test.api.gooey.ai/v2/bulk?example_id=noghet7fzozt' \
-H "Authorization: bearer $GOOEY_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"documents": [
"https://docs.google.com/spreadsheets/d/1t0I3VkmF49A60LGcAvGyF99SeGRc4OXeQIHhmDI8jlI/edit?usp=sharing"
],
"run_urls": [
"https://gooey.ai/copilot/0-gpt55-sindhi-j43a0rs2yg3l/",
"https://gooey.ai/copilot/1-gpt55-omni-sindhi-a15vtuc3h9sq/",
"https://gooey.ai/copilot/2-gem31pro-sindhi-znybak8kc0o1/",
"https://gooey.ai/copilot/3-gem31pro-omni-sindhi-koujs4a0b6yg/",
"https://gooey.ai/copilot/4-gem31flashlite-sindhi-67ens4q8s2ik/",
"https://gooey.ai/copilot/5-gem31flashlite-omni-sindhi-9ls73ickk3fl/",
"https://gooey.ai/copilot/6-kimi-k26-omni-sindhi-p2ka7psm618c/",
"https://gooey.ai/copilot/7-gpt-oss-120b-omni-sindhi-76ho2636h2ob/",
"https://gooey.ai/copilot/8-gpt-realtime-15-sindhi-wyrugylcd4ex/",
"https://gooey.ai/copilot/9-gpt-realtime-15-omni-sindhi-ychbxohz611o/",
"https://gooey.ai/copilot/10-gemma4-26b-omni-sindhi-qr0j1pif89ub/"
],
"input_columns": {
"documents": "documents",
"input_audio": "input_audio"
},
"output_columns": {
"run_url": "Run URL",
"run_time": "Run Time",
"output_text": "Output Text"
}
}'
🎁 Example Response
{4 Items"url":
string
"https://test.gooey.ai/bulk/"
"created_at":
string
"2026-04-28T03:57:45.699109+00:00"
"output":
{4 Items"output_documents":
[1 Items0:
string
"https://storage.googleapis.com/dara-c1b52.appspot.…"
] "eval_runs":
[2 Items0:
string
"https://gooey.ai/eval/?run_id=35eg7s6xtscx&uid=cUA…"
1:
string
"https://gooey.ai/eval/?run_id=k3h4amtctnsv&uid=t1Z…"
] } } Please Login to generate the $GOOEY_API_KEY