Complete list of features

API Information

Provides information about the domain:

  • Domain Score - Our calculated PageRank, the higher the score, the stronger the domain is.
  • Total inbound links - Number of follow/nofollow link, and number of links to homepage.
  • Unique domains - Number of unique domains pointing to the domain.
  • Top organic keywords - Shows which keywords the domain is ranked for.
  • Main competitors - Shows the main competitors based on similar search keywords.
  • Top ads keywords - Shows if the domain is using ads, and if so, which keywords.
  • Referring pages languages - Shows the distribution of the languages based on the linking page language.
  • Referring pages classification - Shows the distribution of the classification of the linking pages.
  • Referring pages domains - Shows the distribution of the classification of the linking domains.
  • Backlinks - Shows the backlinks to this domain.
  • Outlinks - Shows the outlinks from this domain.
  • Top anchors - Shows the top anchors of the backlinks to the domain.
  • Referring domains - Shows the top domains with the most backlinks to this domain.
  • Indexed pages - Shows the top indexed pages based on the most backlinks to them.
  • Subdomains - Shows a list of the domain's subdomains.
  • Referring TLDs - Shows the distribution of the referring TLDs to this domain.
  • The API requires a token for authorization, and can be accessed with any web aware application, the format of the request is: http://apiurl//api.php?token=token&apitype=type& specific data per request

    The return value is JSON and will always include the field responsecode with the possible values:

  • 0 - OK
  • 1 - Internal error
  • 2 - No token (the token can't be found)
  • 10 - Invalid token
  • 11 - Bad parameter
  • 12 - No credits
  • Each API call cost is different in terms of credit and is specified in each call

    This API call will return the search engine results for the requested keyword, the cost is one credit for each 10 rows of returned data, so if you requested 100 results for q keyword, the cost is 10 credits, the minimum cost is one credit

    Parameters:

  • apitype - Is set to search
  • keyword - The keyword you want to search, for unicode keywords you should encode the utf8 with base64 and use the parameter keyword64 instead.
  • maxitems (optional) - Max results to provide.
  • Example: Get 20 results for the keyword seo:

    http://apiurl/api.php?token=token&apitype=search&keyword=seo&maxitems=20
    Reply:
    {"result":[{"URL":"moz.com\/beginners-guide-to-seo"},{"URL":"searchengineland.com\/guide\/what-is-seo"},{"URL":"support.google.com\/webmasters\/answer\/7451184?hl=en"},{"URL":"neilpatel.com\/what-is-seo\/"},{"URL":"en.wikipedia.org\/wiki\/Search_engine_optimization"},{"URL":"wordstream.com\/blog\/ws\/2015\/04\/30\/seo-basics"},{"URL":"wordstream.com\/seo"},{"URL":"searchenginejournal.com\/seo-guide\/"},{"URL":"ahrefs.com\/blog\/what-is-seo\/"},{"URL":"searchenginewatch.com\/2016\/01\/21\/seo-basics-22-essentials-you-need-for-optimizing-your-site\/"},{"URL":"backlinko.com\/hub\/seo\/what-is-seo"},{"URL":"webopedia.com\/TERM\/S\/SEO.html"},{"URL":"mangools.com\/blog\/learn-seo\/"},{"URL":"redevolution.com\/what-is-seo"},{"URL":"redevolution.com\/what-is-seo"},{"URL":"blog.hubspot.com\/marketing\/what-is-seo"},{"URL":"quicksprout.com\/seo\/"},{"URL":"searchenginewatch.com\/category\/seo\/"},{"URL":"optinmonster.com\/ultimate-seo-guide\/"},{"URL":"seo.com\/"}],"total":97,"responsecode":0}

    This API call will return the search engine results for the requested keyword, the cost is one credit for volume result and one credit for classification result, if you request both, the cost is two credits

    Parameters:

  • apitype - Is set to keywordinformation
  • keyword - The keyword you want to search, for unicode keywords you should encode the utf8 with base64 and use the parameter keyword64 instead.
  • class (optional) - Set to one if you want the keyword's classification.
  • volume (set by default) - Set to zero if you don't want the search volume.
  • Example 1: Get the search volume for the keyword seo:

    http://apiurl/api.php?token=token&apitype=keywordinformation&keyword=seo
    Reply:
    {"volume":300000,"ctr":33,"difficulty":"55","adctr":1,"responsecode":0}

    The result data is:

  • volume - Montly search volume.
  • ctr - Click through rate in precentage (100 being the higest).
  • adctr - Ad Click through rate in precentage (100 being the higest).
  • Difficulty - Keyword ranking difficulty.
  • Example 2: Get the search volume for the keyword seo and classification result:

    http://apiurl/api.php?token=token&apitype=keywordinformation&keyword=seo&class=1
    Reply:
    {"volume":300000,"ctr":33,"difficulty":"55","adctr":1,"category1":"165","category2":"0","categorytext1":"SEO","categorytext2":"","responsecode":0}

    The result data is the volume data and additional:

  • category1 - Category number.
  • category2 - Additional category number.
  • categorytext1 - Text name of the category.
  • categorytext2 - Text name of the additional category.
  • Example 3: Get only the keyword's classification:

    http://apiurl/api.php?token=token&apitype=keywordinformation&keyword=seo&class=1&volume=0
    Reply:
    {"category1":"165","category2":"0","categorytext1":"SEO","categorytext2":"","responsecode":0}