📖 To learn more, take a look at our complete API

📤 Example Request

  1. Generate an api key below👇

  2. 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
  1. 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/19KvUlVGdyEIPFO0w8RL0rb08FRJkmKkVppZEV-DmxZI/edit?usp=sharing"
  ],
  "run_urls": [
    "https://gooey.ai/copilot/0-gpt55-hausa-ls9t9e2u5m3u/",
    "https://gooey.ai/copilot/1-gem31pro-hausa-8no0z403fbm9/",
    "https://gooey.ai/copilot/2-gem31flashlite-hausa-o0ug7mqros5j/",
    "https://gooey.ai/copilot/3-gpt-realtime-15-hausa-983wl0u87zl2/",
    "https://gooey.ai/copilot/4-gpt55-omni-hausa-2wbgsngdz4l6/",
    "https://gooey.ai/copilot/5-gpt55-intron-hausa-ooqr4rb0oei0/",
    "https://gooey.ai/copilot/6-gem31pro-omni-hausa-z1si1s5001oc/",
    "https://gooey.ai/copilot/7-gem31pro-intron-hausa-3isocto7w5qr/",
    "https://gooey.ai/copilot/8-gem31flashlite-omni-hausa-on1kclya0aqr/",
    "https://gooey.ai/copilot/9-gem31flashlite-intron-hausa-su9ctidsbsaz/",
    "https://gooey.ai/copilot/10-gpt-realtime-15-omni-hausa-vzj72idbjhvn/",
    "https://gooey.ai/copilot/11-gpt-realtime-15-intron-hausa-b4y59pe218t5/",
    "https://gooey.ai/copilot/12-kimi-k26-omni-hausa-ewl630pp7zgc/",
    "https://gooey.ai/copilot/13-kimi-k26-intron-hausa-o9t94ejx1j8v/",
    "https://gooey.ai/copilot/14-gpt-oss-120b-omni-hausa-8atb13bz914i/",
    "https://gooey.ai/copilot/15-gpt-oss-120b-intron-hausa-9h4q2wltlp01/",
    "https://gooey.ai/copilot/16-gemma-4-26b-omni-hausa-g9l27ylrjljs/",
    "https://gooey.ai/copilot/17-gemma-4-26b-intron-hausa-837mpdxwm2j4/"
  ],
  "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=4rbjl8il6vob", {
    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();
  1. Generate an api key below👇

  2. 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
  1. 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/19KvUlVGdyEIPFO0w8RL0rb08FRJkmKkVppZEV-DmxZI/edit?usp=sharing"
    ],
    "run_urls": [
        "https://gooey.ai/copilot/0-gpt55-hausa-ls9t9e2u5m3u/",
        "https://gooey.ai/copilot/1-gem31pro-hausa-8no0z403fbm9/",
        "https://gooey.ai/copilot/2-gem31flashlite-hausa-o0ug7mqros5j/",
        "https://gooey.ai/copilot/3-gpt-realtime-15-hausa-983wl0u87zl2/",
        "https://gooey.ai/copilot/4-gpt55-omni-hausa-2wbgsngdz4l6/",
        "https://gooey.ai/copilot/5-gpt55-intron-hausa-ooqr4rb0oei0/",
        "https://gooey.ai/copilot/6-gem31pro-omni-hausa-z1si1s5001oc/",
        "https://gooey.ai/copilot/7-gem31pro-intron-hausa-3isocto7w5qr/",
        "https://gooey.ai/copilot/8-gem31flashlite-omni-hausa-on1kclya0aqr/",
        "https://gooey.ai/copilot/9-gem31flashlite-intron-hausa-su9ctidsbsaz/",
        "https://gooey.ai/copilot/10-gpt-realtime-15-omni-hausa-vzj72idbjhvn/",
        "https://gooey.ai/copilot/11-gpt-realtime-15-intron-hausa-b4y59pe218t5/",
        "https://gooey.ai/copilot/12-kimi-k26-omni-hausa-ewl630pp7zgc/",
        "https://gooey.ai/copilot/13-kimi-k26-intron-hausa-o9t94ejx1j8v/",
        "https://gooey.ai/copilot/14-gpt-oss-120b-omni-hausa-8atb13bz914i/",
        "https://gooey.ai/copilot/15-gpt-oss-120b-intron-hausa-9h4q2wltlp01/",
        "https://gooey.ai/copilot/16-gemma-4-26b-omni-hausa-g9l27ylrjljs/",
        "https://gooey.ai/copilot/17-gemma-4-26b-intron-hausa-837mpdxwm2j4/",
    ],
    "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=4rbjl8il6vob",
    headers={
        "Authorization": "bearer " + os.environ["GOOEY_API_KEY"],
    },
    json=payload,
)
assert response.ok, response.content

result = response.json()
print(response.status_code, result)
  1. Generate an api key below👇

  2. 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
  1. 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=4rbjl8il6vob' \
  -H "Authorization: bearer $GOOEY_API_KEY" \
  -H 'Content-Type: application/json' \
  -d '{
  "documents": [
    "https://docs.google.com/spreadsheets/d/19KvUlVGdyEIPFO0w8RL0rb08FRJkmKkVppZEV-DmxZI/edit?usp=sharing"
  ],
  "run_urls": [
    "https://gooey.ai/copilot/0-gpt55-hausa-ls9t9e2u5m3u/",
    "https://gooey.ai/copilot/1-gem31pro-hausa-8no0z403fbm9/",
    "https://gooey.ai/copilot/2-gem31flashlite-hausa-o0ug7mqros5j/",
    "https://gooey.ai/copilot/3-gpt-realtime-15-hausa-983wl0u87zl2/",
    "https://gooey.ai/copilot/4-gpt55-omni-hausa-2wbgsngdz4l6/",
    "https://gooey.ai/copilot/5-gpt55-intron-hausa-ooqr4rb0oei0/",
    "https://gooey.ai/copilot/6-gem31pro-omni-hausa-z1si1s5001oc/",
    "https://gooey.ai/copilot/7-gem31pro-intron-hausa-3isocto7w5qr/",
    "https://gooey.ai/copilot/8-gem31flashlite-omni-hausa-on1kclya0aqr/",
    "https://gooey.ai/copilot/9-gem31flashlite-intron-hausa-su9ctidsbsaz/",
    "https://gooey.ai/copilot/10-gpt-realtime-15-omni-hausa-vzj72idbjhvn/",
    "https://gooey.ai/copilot/11-gpt-realtime-15-intron-hausa-b4y59pe218t5/",
    "https://gooey.ai/copilot/12-kimi-k26-omni-hausa-ewl630pp7zgc/",
    "https://gooey.ai/copilot/13-kimi-k26-intron-hausa-o9t94ejx1j8v/",
    "https://gooey.ai/copilot/14-gpt-oss-120b-omni-hausa-8atb13bz914i/",
    "https://gooey.ai/copilot/15-gpt-oss-120b-intron-hausa-9h4q2wltlp01/",
    "https://gooey.ai/copilot/16-gemma-4-26b-omni-hausa-g9l27ylrjljs/",
    "https://gooey.ai/copilot/17-gemma-4-26b-intron-hausa-837mpdxwm2j4/"
  ],
  "input_columns": {
    "input_audio": "input_audio"
  },
  "output_columns": {
    "run_url": "Run URL",
    "run_time": "Run Time",
    "output_text": "Output Text"
  }
}'

🎁 Example Response

{4 Items
"id"
:
string
"lc2fqrexs1mz"
"url"
:
string
"https://test.gooey.ai/bulk/"
"created_at"
:
string
"2026-05-13T05:55:55.900180+00:00"
"output"
:
{4 Items
"output_documents"
:
[1 Items
0
:
string
"https://storage.googleapis.com/dara-c1b52.appspot."
]
"bulk_progress"
:
NULL
"eval_progress"
:
NULL
"eval_runs"
:
[2 Items
0
:
string
"https://gooey.ai/eval/?run_id=mbj9xpljjs8z&uid=t1Z"
1
:
string
"https://gooey.ai/eval/?run_id=z2y93zzrz33d&uid=t1Z"
]
}
}

Please Login to generate the $GOOEY_API_KEY