📖 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/1puOIxBps5tDrrHYhNZ2Xi_jabTe-98wofoytLLYm5rg/edit?usp=sharing"
],
"run_urls": [
"https://gooey.ai/copilot/2-mbazagem31pro-a2t-kinyarwanda-mr3yy6ovs3of/",
"https://gooey.ai/copilot/6-omnigem31pro-a2t-kinyarwanda-gagvreh09617/",
"https://gooey.ai/copilot/9-mbazagem31flash-lite-a2t-kinyarwanda-u70xqp4wseqx/",
"https://gooey.ai/copilot/10-omnideepseek32-kinyarwanda-jny3qvoy79dd/",
"https://gooey.ai/copilot/11-omnikimik25-kinyarwanda-p3ig8xgonklr/",
"https://gooey.ai/copilot/12-omniminimax27-kinyarwanda-2cjkzf7yenui/",
"https://gooey.ai/copilot/13-omniglm51-kinyarwanda-lc4xk36d82xm/",
"https://gooey.ai/copilot/14-mbazaminimax27-kinyarwanda-5o50qa7dj9xi/",
"https://gooey.ai/copilot/15-mbazakimik25-kinyarwanda-6fwbzy6via3r/",
"https://gooey.ai/copilot/16-mbazagptoss-120b-kinyarwanda-38xp366l9b0s/",
"https://gooey.ai/copilot/17-mbazaqwen36-kinyarwanda-zyi4d6vnxig7/"
],
"input_columns": {
"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=2lnsvhiae4f6", {
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/1puOIxBps5tDrrHYhNZ2Xi_jabTe-98wofoytLLYm5rg/edit?usp=sharing"
],
"run_urls": [
"https://gooey.ai/copilot/2-mbazagem31pro-a2t-kinyarwanda-mr3yy6ovs3of/",
"https://gooey.ai/copilot/6-omnigem31pro-a2t-kinyarwanda-gagvreh09617/",
"https://gooey.ai/copilot/9-mbazagem31flash-lite-a2t-kinyarwanda-u70xqp4wseqx/",
"https://gooey.ai/copilot/10-omnideepseek32-kinyarwanda-jny3qvoy79dd/",
"https://gooey.ai/copilot/11-omnikimik25-kinyarwanda-p3ig8xgonklr/",
"https://gooey.ai/copilot/12-omniminimax27-kinyarwanda-2cjkzf7yenui/",
"https://gooey.ai/copilot/13-omniglm51-kinyarwanda-lc4xk36d82xm/",
"https://gooey.ai/copilot/14-mbazaminimax27-kinyarwanda-5o50qa7dj9xi/",
"https://gooey.ai/copilot/15-mbazakimik25-kinyarwanda-6fwbzy6via3r/",
"https://gooey.ai/copilot/16-mbazagptoss-120b-kinyarwanda-38xp366l9b0s/",
"https://gooey.ai/copilot/17-mbazaqwen36-kinyarwanda-zyi4d6vnxig7/",
],
"input_columns": {"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=2lnsvhiae4f6",
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=2lnsvhiae4f6' \
-H "Authorization: bearer $GOOEY_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"documents": [
"https://docs.google.com/spreadsheets/d/1puOIxBps5tDrrHYhNZ2Xi_jabTe-98wofoytLLYm5rg/edit?usp=sharing"
],
"run_urls": [
"https://gooey.ai/copilot/2-mbazagem31pro-a2t-kinyarwanda-mr3yy6ovs3of/",
"https://gooey.ai/copilot/6-omnigem31pro-a2t-kinyarwanda-gagvreh09617/",
"https://gooey.ai/copilot/9-mbazagem31flash-lite-a2t-kinyarwanda-u70xqp4wseqx/",
"https://gooey.ai/copilot/10-omnideepseek32-kinyarwanda-jny3qvoy79dd/",
"https://gooey.ai/copilot/11-omnikimik25-kinyarwanda-p3ig8xgonklr/",
"https://gooey.ai/copilot/12-omniminimax27-kinyarwanda-2cjkzf7yenui/",
"https://gooey.ai/copilot/13-omniglm51-kinyarwanda-lc4xk36d82xm/",
"https://gooey.ai/copilot/14-mbazaminimax27-kinyarwanda-5o50qa7dj9xi/",
"https://gooey.ai/copilot/15-mbazakimik25-kinyarwanda-6fwbzy6via3r/",
"https://gooey.ai/copilot/16-mbazagptoss-120b-kinyarwanda-38xp366l9b0s/",
"https://gooey.ai/copilot/17-mbazaqwen36-kinyarwanda-zyi4d6vnxig7/"
],
"input_columns": {
"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-16T15:15:07.175950+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=o6gyeacwut76&uid=t1Z…"
1:
string
"https://gooey.ai/eval/?run_id=44ozn1jcfjbh&uid=t1Z…"
] } } Please Login to generate the $GOOEY_API_KEY