Free APIs

Discover the free resources that will ensure the highest level of success for your project.

As we want to ensure your project will be successful with little development on your side, we developed the following free APIs that will better help you interact with our services.

GET is the only supported HTTP method for the free APIs.

#1: Locations API

The Locations API returns SERP API supported locations. It can be accessed via https://locations.webscrapingapi.com/ and its allowed parameters are:

ParameterTypeDescription

q

string

Searches locations that contain the supplied string

limit Required

int

Limit the number of results returned by the API

A basic URL example for the locations API is:

https://locations.webscrapingapi.com?q=<LOCATION>&limit=<NUMBER>

Location API Request Example

GET https://locations.webscrapingapi.com?q=Austin&limit=5

GET the first 5 available locations which include Austin in their name.

Query Parameters

NameTypeDescription

q

String

Austin

limit*

Integer

5

[
    {
        "Criteria ID": "1001982",
        "Name": "Austin",
        "Canonical Name": "Austin",
        "Parent ID": "Manitoba",
        "Country Code": "Canada",
        "Target Type": "20115",
        "Status": "CA"
    },
    {
        "Criteria ID": "1005691",
        "Name": "Kaustinen",
        "Canonical Name": "Kaustinen",
        "Parent ID": "Central Ostrobothnia",
        "Country Code": "Finland",
        "Target Type": "9075500",
        "Status": "FI"
    },
    {
        "Criteria ID": "1014438",
        "Name": "Austin",
        "Canonical Name": "Austin",
        "Parent ID": "Colorado",
        "Country Code": "United States",
        "Target Type": "21138",
        "Status": "US"
    },
    {
        "Criteria ID": "1016989",
        "Name": "Austin",
        "Canonical Name": "Austin",
        "Parent ID": "Indiana",
        "Country Code": "United States",
        "Target Type": "21148",
        "Status": "US"
    },
    {
        "Criteria ID": "1019697",
        "Name": "Austin",
        "Canonical Name": "Austin",
        "Parent ID": "Minnesota",
        "Country Code": "United States",
        "Target Type": "21156",
        "Status": "US"
    }
]

#2: Amazon Helpers API

The Amazon Helpers API allows you to fetch Amazon Search API supported Categories, Languages and Countries for Amazon Search. It can be accessed via https://amazon-helpers.webscrapingapi.com/ and the available endpoints are:

  • https://amazon-helpers.webscrapingapi.com/categories

The allowed parameters for the categories endpoint are:

ParameterTypeDescription

q

string

Searches categories that contain the supplied string.

limit

int

Limit the number of results returned by the API

A basic URL example for the categories endpoint is:

https://amazon-helpers.webscrapingapi.com/categories?q=<NAME>&limit=<NUMBER>

Amazon Categories API Request Example

GET https://amazon-helpers.webscrapingapi.com/categories?q=Baby&limit=10

GET the first 10 available Amazon Categories which include Baby in their name.

Query Parameters

NameTypeDescription

q

String

Baby

limit

Integer

10

[    
    {        
        "category_id": "3045",       
        "parent_alias": "books",       
        "category_title": "Children's Family Life Books",        
        "page_title": "Amazon.com: Family Life: Books: Sleep, Parents, New Baby, Siblings, Values, Multigenerational & More",        
        "link": "https://www.amazon.com/b?ie=UTF8&node=3045"    
    },    
    {        
        "category_id": "3056",        
        "parent_alias": "books",        
        "category_title": "Children's New Baby Books",        
        "page_title": "Amazon.com: New Baby: Books",        
        "link": "https://www.amazon.com/b?ie=UTF8&node=3056"    
    },    
    {        
        "category_id": "4873",        
        "parent_alias": "books",        
        "category_title": "Ancient Civilizations",        
        "page_title": "Amazon.com: Ancient Civilizations: Books: Rome, Greece, Egypt, Mesopotamia, Assyria, Babylonia & Sumer & More",        
        "link": "https://www.amazon.com/b?ie=UTF8&node=4873"    
    },    
    {        
        "category_id": "4874",        
        "parent_alias": "books",        
        "category_title": "Assyria, Babylonia & Sumer History",        
        "page_title": "Amazon.com: Assyria, Babylonia & Sumer: Books",        
        "link": "https://www.amazon.com/b?ie=UTF8&node=4874"    
    },    
    {        
        "category_id": "11403",        
        "parent_alias": "books",        
        "category_title": "Baby & Toddler Parenting",        
        "page_title": "Amazon.com: Early Childhood: Books",        
        "link": "https://www.amazon.com/b?ie=UTF8&node=11403"    
    },    
    {        
        "category_id": "1044510",        
        "parent_alias": "fashion",        
        "category_title": "Baby Boy's Clothing",        
        "page_title": "Amazon.com : Baby Boy's Clothing",        
        "link": "https://www.amazon.com/b?ie=UTF8&node=1044510"    
    },    
    {        
        "category_id": "1044520",        
        "parent_alias": "fashion",        
        "category_title": "Baby Boys' One-Piece Rompers",        
        "page_title": "Amazon.com : Baby Boys' One-Piece Rompers",        
        "link": "https://www.amazon.com/b?ie=UTF8&node=1044520"    
    },    
    {        
        "category_id": "1044532",        
        "parent_alias": "fashion",        
        "category_title": "Baby Girls' Tops",        
        "page_title": "Amazon.com : Baby Girls' Tops",        
        "link": "https://www.amazon.com/b?ie=UTF8&node=1044532"    
    },    
    {        
        "category_id": "1044536",        
        "parent_alias": "fashion",        
        "category_title": "Baby Girls' Bloomers, Diaper Covers & Underwear",        
        "page_title": "Amazon.com : Baby Girls' Bloomers, Diaper Covers & Underwear",        
        "link": "https://www.amazon.com/b?ie=UTF8&node=1044536"    
    },    
    {        
        "category_id": "1044542",        
        "parent_alias": "fashion",        
        "category_title": "Baby Girls' Dresses",        
        "page_title": "Amazon.com : Baby Girls' Dresses",        
        "link": "https://www.amazon.com/b?ie=UTF8&node=1044542"    
    }
]
  • https://amazon-helpers.webscrapingapi.com/countries

A basic URL example for the countries endpoint is:

https://amazon-helpers.webscrapingapi.com/countries
  • https://amazon-helpers.webscrapingapi.com/languages

A basic URL example for the languages endpoint is:

https://amazon-helpers.webscrapingapi.com/languages

Last updated