📖 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 = {
"search_query": "Supralasik eye surgery",
"keywords": "Supralasik eye surgery",
"title": "Nolasik surgery",
"company_url": "https://Nolasiksurgery.ae"
};
async function gooeyAPI() {
const response = await fetch("https://api.gooey.ai/v2/SEOSummary?example_id=orXL61kbQI8", {
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 = {
"search_query": "Supralasik eye surgery",
"keywords": "Supralasik eye surgery",
"title": "Nolasik surgery",
"company_url": "https://Nolasiksurgery.ae",
}
response = requests.post(
"https://api.gooey.ai/v2/SEOSummary?example_id=orXL61kbQI8",
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/SEOSummary?example_id=orXL61kbQI8' \
-H "Authorization: bearer $GOOEY_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"search_query": "Supralasik eye surgery",
"keywords": "Supralasik eye surgery",
"title": "Nolasik surgery",
"company_url": "https://Nolasiksurgery.ae"
}'
🎁 Example Response
{4 Items"url":
string
"https://gooey.ai/seo-paragraph-generator/"
"created_at":
string
"2024-02-12T14:41:21.035254+00:00"
"output":
{5 Items"output_content":
[2 Items0:
string
"SupraLASIK eye surgery is a revolutionary non-surg…"
1:
string
"SupraLASIK eye surgery is a revolutionary procedur…"
] "serp_results":
{5 Items"peopleAlsoAsk":
[…
]4 Items "searchParameters":
{…
}4 Items "searchInformation":
{…
}1 Items } "search_urls":
[9 Items0:
string
"https://www.youtube.com/watch?v=enI1UYOTI8Y"
1:
string
"https://www.centreforsight.com/treatments/laser-ey…"
2:
string
"https://www.facebook.com/SupraLASIK/videos/suprala…"
3:
string
"https://www.instagram.com/supra_lasik/"
4:
string
"https://www.facebook.com/ImperialHealthDubai/video…"
5:
string
"https://upload.wikimedia.org/wikipedia/commons/1/1…"
6:
string
"https://www.w-els.com/home/"
7:
string
"https://www.eye7.in/lasik-eye-surgery/surface/"
8:
string
"https://facebook.com/SupraLASIK/photos/supralasik-…"
] "summarized_urls":
[6 Items] "final_prompt":
string
"I will give you a URL and focus keywords and using…"
} } Please Login to generate the $GOOEY_API_KEY