Gooey.AI API Platform
π Introduction
You can interact with the API through HTTP requests from any language.
If you're comfortable with OpenAPI specs, jump straight to our complete API
π Authentication
The Gooey.AI API uses API keys for authentication. Visit the API Keys section to retrieve the API key you'll use in your requests.
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:
Authorization: Bearer GOOEY_API_KEY
β API Generator
Choose a workflow to see how you can interact with it via the 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 = {};
async function gooeyAPI() {
const response = await fetch("https://api.gooey.ai/v2/video-bots", {
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 = {}
response = requests.post(
"https://api.gooey.ai/v2/video-bots",
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/video-bots \
-H "Authorization: bearer $GOOEY_API_KEY" \
-H 'Content-Type: application/json' \
-d '{}'
π Example Response
{4 Items"url":
string
"https://gooey.ai/copilot/"
"created_at":
string
"2024-11-22T04:39:59.195058"
"output":
{13 Items"output_text":
[1 Items0:
string
"Irrigate chilli fields just after planting, then bβ¦"
] "output_audio":
[1 Items0:
string
"https://storage.googleapis.com/dara-c1b52.appspot.β¦"
] "raw_input_text":
string
"How to do irrigation in a chilli field?"
"raw_output_text":
[1 Items0:
string
"Irrigate chilli fields just after planting, then bβ¦"
] "final_search_query":
string
"You are looking for information on how to do irrigβ¦"
"finish_reason":
[1 Items] } }
π API keys
Please Login to generate the $GOOEY_API_KEY