Search Engine API

What is the Kwinside Search Engine API?

The Kwinside Search Engine API returns the top search engines for a given domain and the full list of search engines Kwinside supports. It has two endpoints under /api/v1/serp/search-engine/*: one returns a domain's top search engines, the other the complete list of supported engines. Data covers six languages and is queried over REST, authenticated with your API key. Pricing is pay-as-you-go at $0.002 per request or a subscription plan, with 20 free requests per day for testing. Use it to discover which search engines to track for a domain, or to check Kwinside's engine coverage before pulling SERP, competitor or best-pages data.

Last updated: June 2026

The Search Engine API has two endpoints — get the top search engines for a domain, or the full list of supported search engines:

1. Top search engines for a domain

GET /api/v1/serp/search-engine/top

This API is used to get the number of keywords in TOP-100 of each search engine. The "id" stands for the search engine ID, and the "cnt" indicates the number of keywords in TOP-100.

Parameters description:

Parameters required Description
site required domain name
date required date-specific values
size count of items in response
key required an API key that you can get in your account

Sample of a URI request:

</>GET
1https://kwinside.com/api/v1/serp/search-engine/top?site=google.com&date=2026-06-08&key=example

Response:

{ }200 · JSON
{
  "credits_info": {
    "credits_used": 1,
    "credits_remaining": 19
  },
  "data": {
    "errors": null,
    "executionTime": "0.1683 seconds",
    "requestTime": "0.1683 seconds",
    "memory": "2 M",
    "date": "2026-06-08",
    "total": 27,
    "top_se": [
      { "id": 1, "cnt": 3248003 },
      { "id": 338, "cnt": 983317 },
      { "id": 216, "cnt": 693253 },
      { "id": 160, "cnt": 663928 },
      { "id": 197, "cnt": 494584 },
      { "id": 83, "cnt": 320228 }
    ]
  }
}

2. List of all search engines

GET /api/v1/serp/search-engine/list

This API is used to get a full list of search engines.

Parameters description:

Parameters required Description
key required an API key that you can get in your account

Sample of a URI request:

</>GET
1https://kwinside.com/api/v1/serp/search-engine/list?key=example

Response:

{ }200 · JSON
{
  "credits_info": { "credits_used": 2, "credits_remaining": 18 },
  "data": {
    "error": false,
    "result": {
      "count": 2045,
      "rows": [
        { "id": 1, "name": "google.com", "language": "All", "country": "International" },
        { "id": 11, "name": "google.at", "language": "German", "country": "Austria" }
      ]
    }
  }
}

Frequently asked questions

What does the Search Engine API return?
It lists the supported search engines (id, name, language, country) and, for a domain, how many of its keywords rank in the TOP-100 of each search engine on a given date.
Is there a free Search Engine API tier?
Yes — every account includes 20 free API requests per day; afterwards it is plans or pay-as-you-go at $0.002 per request.

SERP API · Keyword API · Competitors API