SerpWow Search API

The Search API from SerpWow — 6 operation(s) for search.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/serpwow-search-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

serpwow-search-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: SerpWow Search API
  description: 'SerpWow is a real-time SERP (search engine results page) API supporting

    Google, Bing, Yahoo, Baidu, Yandex, Naver, Amazon and eBay. Documented at

    https://docs.trajectdata.com/serpwow. Authentication is via the api_key

    query parameter.

    '
  version: live
servers:
- url: https://api.serpwow.com/live
  description: Production
security:
- apiKeyAuth: []
tags:
- name: Search
paths:
  /search:
    get:
      tags:
      - Search
      summary: Retrieve search engine results for a query
      operationId: search
      parameters:
      - in: query
        name: api_key
        required: true
        schema:
          type: string
        description: Your SerpWow API key
      - in: query
        name: q
        required: true
        schema:
          type: string
        description: Search query
      - in: query
        name: engine
        schema:
          type: string
          enum:
          - google
          - bing
          - yahoo
          - baidu
          - yandex
          - naver
          - amazon
          - ebay
        description: Search engine to use
      - in: query
        name: location
        schema:
          type: string
      - in: query
        name: page
        schema:
          type: integer
      - in: query
        name: output
        schema:
          type: string
          enum:
          - json
          - html
          - csv
      responses:
        '200':
          description: Search results
  /places:
    get:
      tags:
      - Search
      summary: Retrieve Google Maps results for a location search
      operationId: places
      parameters:
      - in: query
        name: api_key
        required: true
        schema:
          type: string
      - in: query
        name: q
        required: true
        schema:
          type: string
      - in: query
        name: location
        schema:
          type: string
      responses:
        '200':
          description: Places results
  /shopping:
    get:
      tags:
      - Search
      summary: Retrieve Google Shopping results for a product query
      operationId: shopping
      parameters:
      - in: query
        name: api_key
        required: true
        schema:
          type: string
      - in: query
        name: q
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Shopping results
  /news:
    get:
      tags:
      - Search
      summary: Retrieve Google News results for a search term
      operationId: news
      parameters:
      - in: query
        name: api_key
        required: true
        schema:
          type: string
      - in: query
        name: q
        required: true
        schema:
          type: string
      responses:
        '200':
          description: News results
  /product:
    get:
      tags:
      - Search
      summary: Retrieve Google product results for a specific product ID
      operationId: product
      parameters:
      - in: query
        name: api_key
        required: true
        schema:
          type: string
      - in: query
        name: product_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Product results
  /place_reviews:
    get:
      tags:
      - Search
      summary: Retrieve Google place reviews for a location
      operationId: placeReviews
      parameters:
      - in: query
        name: api_key
        required: true
        schema:
          type: string
      - in: query
        name: data_id
        required: true
        schema:
          type: string
        description: Google place data_id
      responses:
        '200':
          description: Place reviews
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: query
      name: api_key