API: Faraaz Mohd's Create a perfect SEO-optimized Title & Paragraph


📖 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 = {
  "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=70hvuue9y9aq", {
    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 = {
    "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=70hvuue9y9aq",
    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://api.gooey.ai/v2/SEOSummary?example_id=70hvuue9y9aq' \
  -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
"id"
:
string
"f9mbeefmm6b6"
"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 Items
0
:
string
"SupraLASIK eye surgery is a revolutionary non-surg"
1
:
string
"SupraLASIK eye surgery is a revolutionary procedur"
]
"serp_results"
:
{5 Items
"organic"
:
[
]9 Items
"answerBox"
:
{
}4 Items
"peopleAlsoAsk"
:
[
]4 Items
"searchParameters"
:
{
}4 Items
"searchInformation"
:
{
}1 Items
}
"search_urls"
:
[9 Items
0
:
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
0
:
{
}3 Items
1
:
{
}3 Items
2
:
{
}3 Items
3
:
{
}3 Items
4
:
{
}3 Items
5
:
{
}3 Items
]
"final_prompt"
:
string
"I will give you a URL and focus keywords and using"
}
}

Please Login to generate the $GOOEY_API_KEY