• Gooey.AI
  • API: Handmade Indian Jewelry


    📖 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": "Handmade Indian Jewelry",
      "keywords": "Handmade Indian Jewellery and Apparel, Jaipur Handmade Indian Jewellery and Apparel, Patna Handmade Indian Jewellery and Apparel,  ANU MERTON, A JEWELLERY & FASHION DESIGNER FROM BIHAR, INDIA, ",
      "title": "Anu Merton",
      "company_url": "https://anumerton.com/"
    };
    
    async function gooeyAPI() {
      const response = await fetch("https://api.gooey.ai/v2/SEOSummary?example_id=na7dmw5q", {
        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": "Handmade Indian Jewelry",
        "keywords": "Handmade Indian Jewellery and Apparel, Jaipur Handmade Indian Jewellery and Apparel, Patna Handmade Indian Jewellery and Apparel,  ANU MERTON, A JEWELLERY & FASHION DESIGNER FROM BIHAR, INDIA, ",
        "title": "Anu Merton",
        "company_url": "https://anumerton.com/",
    }
    
    response = requests.post(
        "https://api.gooey.ai/v2/SEOSummary?example_id=na7dmw5q",
        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=na7dmw5q' \
      -H "Authorization: bearer $GOOEY_API_KEY" \
      -H 'Content-Type: application/json' \
      -d '{
      "search_query": "Handmade Indian Jewelry",
      "keywords": "Handmade Indian Jewellery and Apparel, Jaipur Handmade Indian Jewellery and Apparel, Patna Handmade Indian Jewellery and Apparel,  ANU MERTON, A JEWELLERY & FASHION DESIGNER FROM BIHAR, INDIA, ",
      "title": "Anu Merton",
      "company_url": "https://anumerton.com/"
    }'
    

    🎁 Example Response

    {4 Items
    "id"
    :
    string
    "62cx0sa5zrh0"
    "url"
    :
    string
    "https://gooey.ai/seo-paragraph-generator/"
    "created_at"
    :
    string
    "2024-01-23T16:25:04.401346+00:00"
    "output"
    :
    {5 Items
    "output_content"
    :
    [2 Items
    0
    :
    string
    "**Handmade Indian Jewelry: A Timeless Art Form** "
    1
    :
    string
    "**Handmade Indian Jewelry and Apparel: A Timeless "
    ]
    "serp_results"
    :
    {4 Items
    "organic"
    :
    [
    ]9 Items
    "peopleAlsoAsk"
    :
    [
    ]4 Items
    "relatedSearches"
    :
    [
    ]8 Items
    "searchParameters"
    :
    {
    }4 Items
    }
    "search_urls"
    :
    [9 Items
    0
    :
    string
    "https://www.n8tivearts.com/"
    1
    :
    string
    "https://www.palmstrading.com/authentic-native-amer"
    2
    :
    string
    "https://hoelsindianshop.com/shop/native-american/v"
    3
    :
    string
    "https://www.burtonsgemsandopals.com/collections/so"
    4
    :
    string
    "https://www.pueblodirect.com/"
    5
    :
    string
    "https://www.novica.com/jewelry/india/"
    6
    :
    string
    "https://callicosilver.com/"
    7
    :
    string
    "https://gatheringtribes.com/collections/native-ame"
    8
    :
    string
    "https://theindiacrafthouse.com/en-us/collections/j"
    ]
    "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