Search Engine API

API Documentation

 

Introduction

Search engine API allows developers to add search capabilities into their websites and applications to return the information that is most relevant to the user query. This is an experimental API Search and totally free with zero limitations.

 

 

----------------------------------------------------------------------------------------------------

 

To use our API, you must follow the URL structure that is provided below:

 

https://developer.nstoolz.com/api/search/?q=coffe

 

----------------------------------------------------------------------------------------------------

After that, you should get an output json similar to this:

 

{
  "search_parameters": {
    "q": "coffe",
    "total_results": 2,
    "next_position": 2
  },
  "results": [
    {
      "position": 1,
      "title": "Coffee - Wikipedia",
      "description": "Coffee is a brewed drink prepared from roasted coffee beans ...",
      "url": "https://en.wikipedia.org/wiki/Coffee",
      "type": "website"
    },
    {
      "position": 2,
      "title": "COFFEE: Overview, Uses, Side Effects, Precautions ...",
      "description": "Coffee is a drink made from coffee beans ...",
      "url": "https://www.webmd.com/vitamins/ai/ingredientmono-980/coffee",
      "type": "website"
    }
  ]
}

----------------------------------------------------------------------------------------------------

 

To load next page, you must add postision query and use the next_position. the URL structure that is:

 

https://developer.nstoolz.com/api/search/?q=coffe&position=2

 

----------------------------------------------------------------------------------------------------