Getting started
You can interact with our APIs through node.js, python or curl
Use Gooey.AI's APIs to build fast! Get started by trying these simple setups - No servers, API keys, or rate limits to manage.
Quickstart
Embed your custom AI workflow on your website or app as a webview instantly. Customize the look and feel in seconds.
<div id="gooey-embed"></div>
<script>
function onLoadGooeyEmbed() {
GooeyEmbed.mount({});
}
</script>
<script async defer onload="onLoadGooeyEmbed()" src="
https://gooey.ai/chat/gooey-base-copilot-Kbo/lib.js
"></script>Pass custom in-app context
GooeyEmbed.mount({ payload: { variables: { username: "John Appleseed" } } });Real-time results, zero infrastructure Stream AI responses directly to users with tool use, voice, image, and video β all client-side. No servers, API keys, or rate limits to manage.
Write Python or JavaScript in our AI IDE β no setup required. Secure, fast code execution in V8 + Docker lets you build custom logic and connect to any service. No YAML, no OpenAPI specs, no DevOps.
Try it out here:

Read the API Docs
Create an API Key
Gooey.AI allows single API key for several workflows. So whether you are including AI images in your app or making a highly customized AI Copilot, you can access our whole suite of workflows through a single API key.
CREATE API KEYS HERE:
You can click on "Create new secret key"

A new API KEY will appear

Copy the key and use it for your API Requests.
Authentication
Remember that your API key is a secret! Do not share it with others or expose it in any client-side code (browsers, apps). Production requests must be routed through your own backend server where your API key can be securely loaded from an environment variable or key management service.
All API requests should include your API key in an Authorization HTTP header as follows:
Making a request
Let's make an example request to the lipsyncTTS API
Step 1
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.
Step 2
Use this sample code to call the API. Make sure to include the full code snippet and the error message.
Step 1
Install requests & add the GOOEY_API_KEY to your environment variables. Never store the api key in your code.
Step 2
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.
Step 1
Install curl & add the GOOEY_API_KEY to your environment variables. Never store the api key in your code.
GOOEY_API_KEY to your environment variables. Never store the api key in your code.Step 2
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.
This is what the example response will look like:
Last updated
Was this helpful?
