ScraperAPI Structured API

The Structured API from ScraperAPI — 2 operation(s) for structured.

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/scraper-api-structured-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

scraper-api-structured-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Scraper Structured API
  description: 'ScraperAPI is a web scraping API that handles proxies, headless browsers,

    and CAPTCHA solving. Sync, async, structured data, and data pipeline

    endpoints are available. All requests require an api_key.

    Source: https://docs.scraperapi.com/

    '
  version: '1.0'
servers:
- url: https://api.scraperapi.com
  description: Synchronous API
- url: https://async.scraperapi.com
  description: Asynchronous API
- url: https://datapipeline.scraperapi.com
  description: DataPipeline API
security:
- ApiKeyAuth: []
tags:
- name: Structured
paths:
  /structured/google/search:
    get:
      summary: Structured Google search results
      operationId: structuredGoogleSearch
      tags:
      - Structured
      parameters:
      - $ref: '#/components/parameters/ApiKey'
      - name: query
        in: query
        required: true
        schema:
          type: string
      - name: country_code
        in: query
        schema:
          type: string
      - name: tld
        in: query
        schema:
          type: string
      responses:
        '200':
          description: JSON-structured SERP.
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
  /structured/amazon/product:
    get:
      summary: Structured Amazon product data
      operationId: structuredAmazonProduct
      tags:
      - Structured
      parameters:
      - $ref: '#/components/parameters/ApiKey'
      - name: asin
        in: query
        required: true
        schema:
          type: string
      - name: country
        in: query
        schema:
          type: string
      - name: tld
        in: query
        schema:
          type: string
      responses:
        '200':
          description: JSON-structured Amazon product.
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
components:
  parameters:
    ApiKey:
      name: api_key
      in: query
      required: true
      description: ScraperAPI account key.
      schema:
        type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: query
      name: api_key
      description: ScraperAPI account key, passed as a query parameter.