📖 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 = {
"serp_search_location": "us",
"search_query": "site:fandom.com anime icon",
"text_prompt": ""
};
async function gooeyAPI() {
const response = await fetch("https://api.gooey.ai/v2/GoogleImageGen?example_id=opi5hweh", {
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 = {
"serp_search_location": SerpSearchLocation.UNITED_STATES,
"search_query": "site:fandom.com anime icon",
"text_prompt": "",
}
response = requests.post(
"https://api.gooey.ai/v2/GoogleImageGen?example_id=opi5hweh",
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/GoogleImageGen?example_id=opi5hweh' \
-H "Authorization: bearer $GOOEY_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"serp_search_location": "us",
"search_query": "site:fandom.com anime icon",
"text_prompt": ""
}'
🎁 Example Response
{4 Items"url":
string
"https://gooey.ai/render-images-with-ai/"
"created_at":
string
"2023-04-14T18:55:34.594352+00:00"
"output":
{3 Items"output_images":
[10 Items0:
string
"https://static.wikia.nocookie.net/5e348a2b-b681-49…"
1:
string
"https://static.wikia.nocookie.net/artbreeder/image…"
2:
string
"https://static.wikia.nocookie.net/da055f8f-f62b-49…"
3:
string
"https://static.wikia.nocookie.net/786dc58b-75ae-4f…"
4:
string
"https://static.wikia.nocookie.net/8ab77215-aa12-43…"
5:
string
"https://static.wikia.nocookie.net/7dc94117-3e98-40…"
6:
string
"https://static.wikia.nocookie.net/aff20e15-5fb5-4e…"
7:
string
"https://static.wikia.nocookie.net/4bfef7e4-d06c-4e…"
8:
string
"https://static.wikia.nocookie.net/c2928126-fcd2-48…"
9:
string
"https://static.wikia.nocookie.net/a68aa1a3-2587-49…"
] "image_urls":
[10 Items0:
string
"https://static.wikia.nocookie.net/5e348a2b-b681-49…"
1:
string
"https://static.wikia.nocookie.net/artbreeder/image…"
2:
string
"https://static.wikia.nocookie.net/da055f8f-f62b-49…"
3:
string
"https://static.wikia.nocookie.net/786dc58b-75ae-4f…"
4:
string
"https://static.wikia.nocookie.net/8ab77215-aa12-43…"
5:
string
"https://static.wikia.nocookie.net/7dc94117-3e98-40…"
6:
string
"https://static.wikia.nocookie.net/aff20e15-5fb5-4e…"
7:
string
"https://static.wikia.nocookie.net/4bfef7e4-d06c-4e…"
8:
string
"https://static.wikia.nocookie.net/c2928126-fcd2-48…"
9:
string
"https://static.wikia.nocookie.net/a68aa1a3-2587-49…"
] } } Please Login to generate the $GOOEY_API_KEY