API: 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": "ducati monster 696",
  "keywords": "ducati monster 696, 2009 ducati monster 696, ducati monster 696 for sale, ducati 696 monster for sale, 2012 ducati monster 696, ducati monster 696 2012, 2014 ducati monster 696, ducati 696 monster, ducati monster 696 top speed, ducati monster 696 price",
  "title": "motoworks chicago",
  "company_url": "https://www.motoworkschicago.com/"
};

async function gooeyAPI() {
  const response = await fetch("https://api.gooey.ai/v2/SEOSummary/", {
    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": "ducati monster 696",
    "keywords": "ducati monster 696, 2009 ducati monster 696, ducati monster 696 for sale, ducati 696 monster for sale, 2012 ducati monster 696, ducati monster 696 2012, 2014 ducati monster 696, ducati 696 monster, ducati monster 696 top speed, ducati monster 696 price",
    "title": "motoworks chicago",
    "company_url": "https://www.motoworkschicago.com/",
}

response = requests.post(
    "https://api.gooey.ai/v2/SEOSummary/",
    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/ \
  -H "Authorization: Bearer $GOOEY_API_KEY" \
  -H 'Content-Type: application/json' \
  -d '{
  "search_query": "ducati monster 696",
  "keywords": "ducati monster 696, 2009 ducati monster 696, ducati monster 696 for sale, ducati 696 monster for sale, 2012 ducati monster 696, ducati monster 696 2012, 2014 ducati monster 696, ducati 696 monster, ducati monster 696 top speed, ducati monster 696 price",
  "title": "motoworks chicago",
  "company_url": "https://www.motoworkschicago.com/"
}'

🎁 Example Response

{4 Items
"id"
:
string
"cnekozncxz5b"
"url"
:
string
"https://gooey.ai/seo-paragraph-generator/"
"created_at"
:
string
"2024-02-27T14:52:22.849054+00:00"
"output"
:
{5 Items
"output_content"
:
[1 Items
0
:
string
"<!DOCTYPE html> <html lang="en"> <head> <meta ch"
]
"serp_results"
:
{5 Items
"organic"
:
[
]10 Items
"peopleAlsoAsk"
:
[
]4 Items
"knowledgeGraph"
:
{
}5 Items
"relatedSearches"
:
[
]8 Items
"searchParameters"
:
{
}4 Items
}
"search_urls"
:
[10 Items
0
:
string
"https://en.wikipedia.org/wiki/Ducati_Monster_696"
1
:
string
"https://www.cycletrader.com/Ducati-Monster-696/mot"
2
:
string
"https://www.motorcyclenews.com/bike-reviews/ducati"
3
:
string
"https://www.motorcyclespecs.co.za/model/ducati/duc"
4
:
string
"https://www.devittinsurance.com/bike-reviews/ducat"
5
:
string
"https://www.ducati.com/ww/en/bikes/monster/monster"
6
:
string
"https://www.youtube.com/watch?v=f7RjGkmPhi0"
7
:
string
"https://idratherberiding.com/2011/09/03/ducati-mon"
8
:
string
"https://ridermagazine.com/2013/03/07/2013-ducati-m"
9
:
string
"https://www.roadrunner.travel/motorcycles/2009-duc"
]
"summarized_urls"
:
[9 Items
0
:
{
}3 Items
1
:
{
}3 Items
2
:
{
}3 Items
3
:
{
}3 Items
4
:
{
}3 Items
5
:
{
}3 Items
6
:
{
}3 Items
7
:
{
}3 Items
8
:
{
}3 Items
]
"final_prompt"
:
string
"Please write an article for the following company "
}
}

Please Login to generate the $GOOEY_API_KEY