• Gooey.AI
  • API: The Fandom Star Trek Bot


    📖 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": "site:fandom.com who did Picard love the most?",
      "keywords": "Star Trek",
      "title": "Memory Alpha",
      "company_url": "https://memory-alpha.fandom.com"
    };
    
    async function gooeyAPI() {
      const response = await fetch("https://api.gooey.ai/v2/SEOSummary?example_id=krm162nt", {
        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": "site:fandom.com who did Picard love the most?",
        "keywords": "Star Trek",
        "title": "Memory Alpha",
        "company_url": "https://memory-alpha.fandom.com",
    }
    
    response = requests.post(
        "https://api.gooey.ai/v2/SEOSummary?example_id=krm162nt",
        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=krm162nt' \
      -H "Authorization: bearer $GOOEY_API_KEY" \
      -H 'Content-Type: application/json' \
      -d '{
      "search_query": "site:fandom.com who did Picard love the most?",
      "keywords": "Star Trek",
      "title": "Memory Alpha",
      "company_url": "https://memory-alpha.fandom.com"
    }'
    

    🎁 Example Response

    {4 Items
    "id"
    :
    string
    "qupbz7mvr85v"
    "url"
    :
    string
    "https://gooey.ai/seo-paragraph-generator/"
    "created_at"
    :
    string
    "2024-02-12T14:43:24.408104+00:00"
    "output"
    :
    {5 Items
    "output_content"
    :
    [3 Items
    0
    :
    string
    "Ah, the eternal question of who Captain Jean-Luc P"
    1
    :
    string
    "Jean-Luc Picard, the stoic captain of the Star Tre"
    2
    :
    string
    "Ah, the tangled love life of Jean-Luc Picard, the "
    ]
    "serp_results"
    :
    {3 Items
    "organic"
    :
    [
    ]10 Items
    "relatedSearches"
    :
    [
    ]2 Items
    "searchParameters"
    :
    {
    }4 Items
    }
    "search_urls"
    :
    [10 Items
    0
    :
    string
    "https://www.fandom.com/articles/star-trek-picard-c"
    1
    :
    string
    "https://memory-alpha.fandom.com/wiki/Jean-Luc_Pica"
    2
    :
    string
    "https://memorydelta.fandom.com/wiki/Jean-Luc_Picar"
    3
    :
    string
    "https://www.fandom.com/articles/captain-picard-bes"
    4
    :
    string
    "https://memory-alpha.fandom.com/wiki/Beverly_Crush"
    5
    :
    string
    "https://memory-beta.fandom.com/wiki/Jean-Luc_Picar"
    6
    :
    string
    "https://memory-alpha.fandom.com/wiki/Attached_(epi"
    7
    :
    string
    "https://memory-alpha.fandom.com/wiki/Starship_Mine"
    8
    :
    string
    "https://memory-alpha.fandom.com/wiki/Vash"
    9
    :
    string
    "https://hero.fandom.com/wiki/Soji_Asha"
    ]
    "summarized_urls"
    :
    [10 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
    9
    :
    {
    }3 Items
    ]
    "final_prompt"
    :
    string
    "Answer the question after "Topic:" asked from the "
    }
    }

    Please Login to generate the $GOOEY_API_KEY