ScraperAPI Sync API

The Sync API from ScraperAPI — 1 operation(s) for sync.

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-sync-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-sync-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Scraper Structured Sync 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: Sync
paths:
  /:
    get:
      summary: Scrape a URL synchronously
      operationId: scrape
      tags:
      - Sync
      parameters:
      - $ref: '#/components/parameters/ApiKey'
      - name: url
        in: query
        required: true
        description: The fully-qualified URL to scrape (place after api_key).
        schema:
          type: string
          format: uri
      - name: render
        in: query
        description: Set to true to render JavaScript with a headless browser.
        schema:
          type: boolean
      - name: country_code
        in: query
        description: Geo-target the request (e.g. us, gb, de).
        schema:
          type: string
      - name: premium
        in: query
        description: Use residential/premium proxies.
        schema:
          type: boolean
      - name: session_number
        in: query
        description: Reuse the same IP across requests (15-minute idle TTL).
        schema:
          type: integer
      - name: keep_headers
        in: query
        schema:
          type: boolean
      - name: device_type
        in: query
        description: desktop or mobile.
        schema:
          type: string
          enum:
          - desktop
          - mobile
      responses:
        '200':
          description: HTML body of the target page.
          content:
            text/html:
              schema:
                type: string
    post:
      summary: Scrape a URL with a POST body
      operationId: scrapePost
      tags:
      - Sync
      parameters:
      - $ref: '#/components/parameters/ApiKey'
      - name: url
        in: query
        required: true
        schema:
          type: string
          format: uri
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              additionalProperties: true
          application/json:
            schema:
              type: object
              additionalProperties: true
      responses:
        '200':
          description: Response of the target site for the proxied POST.
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.