> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapio.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Fast Search

> A lighter, faster Google web search endpoint — organic results only, no HTML capture. Requires a Starter plan or higher.



## OpenAPI

````yaml get /v1/fast-search
openapi: 3.1.0
info:
  title: Scrapio
  version: 1.0.0
  description: >-
    Turn any URL into structured data. Fetch raw HTML, crawl sites, extract
    structured content, interact with dynamic pages, and search the web through
    one API.
  contact:
    name: Scrapio Support
    url: https://scrapio.dev
  license:
    name: Proprietary
servers:
  - url: https://api.scrapio.dev
    description: Production
security:
  - bearerAuth: []
tags:
  - name: System
  - name: Fetch
  - name: Crawl
  - name: Map
  - name: Interact
  - name: Search
  - name: Google
  - name: Fast Search
  - name: Jobs
  - name: YouTube
  - name: Amazon
  - name: Walmart
  - name: Booking
  - name: Agoda
  - name: Airbnb
  - name: ChatGPT
  - name: Perplexity
  - name: Gemini
  - name: Bing
  - name: Reddit
  - name: TikTok
  - name: Apple App Store
  - name: Target
  - name: Monitors
paths:
  /v1/fast-search:
    get:
      tags:
        - Fast Search
      summary: Fast Search
      description: >-
        Execute a lighter, faster Google web search. Returns organic results,
        news results, people-also-ask, related searches, and answer boxes only
        -- no knowledge graph, ads, shopping results, or HTML capture. Requires
        a Starter plan or higher.
      operationId: fastSearch
      parameters:
        - name: search
          in: query
          required: true
          schema:
            type: string
            minLength: 1
            description: Search query text
        - name: country_code
          in: query
          required: false
          schema:
            description: Country code for localized results
            type: string
            minLength: 2
            maxLength: 2
        - name: language
          in: query
          required: false
          schema:
            description: Language for results
            type: string
            minLength: 2
        - name: page
          in: query
          required: false
          schema:
            description: Result page number
            anyOf:
              - type: integer
                minimum: -9007199254740991
                maximum: 9007199254740991
              - type: string
      responses:
        '200':
          description: Structured Fast Search response with organic results.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FastSearchSuccessResponse'
        '400':
          description: Invalid search parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FastSearchErrorResponse'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FastSearchErrorResponse'
        '402':
          description: Fast Search requires a Starter plan or higher.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FastSearchErrorResponse'
        '429':
          description: Daily credit cap exceeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FastSearchErrorResponse'
        '502':
          description: Upstream provider blocked or failed the request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FastSearchErrorResponse'
        '503':
          description: Fast Search backend unavailable or unconfigured.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FastSearchErrorResponse'
      x-codeSamples:
        - lang: cURL
          label: cURL
          source: >-
            curl
            "https://api.scrapio.dev/v1/fast-search?search=openai&country_code=us"
            \
              -H "Authorization: Bearer $SCRAPIO_API_KEY"
        - lang: Python
          label: Python
          source: |-
            import os, requests
            resp = requests.get(
                "https://api.scrapio.dev/v1/fast-search",
                headers={"Authorization": f"Bearer {os.environ['SCRAPIO_API_KEY']}"},
                params={"search": "openai", "country_code": "us"},
            )
            print(resp.json()["organic_results"])
        - lang: JavaScript
          label: Node.js
          source: >-
            const params = new URLSearchParams({ search: "openai", country_code:
            "us" });

            const resp = await
            fetch(`https://api.scrapio.dev/v1/fast-search?${params}`, {
              headers: { Authorization: `Bearer ${process.env.SCRAPIO_API_KEY}` },
            });

            const data = await resp.json();

            console.log(data.organic_results);
components:
  schemas:
    FastSearchSuccessResponse:
      type: object
      properties:
        meta_data:
          type: object
          propertyNames:
            type: string
          additionalProperties: {}
        organic_results:
          type: array
          items:
            type: object
            propertyNames:
              type: string
            additionalProperties: {}
        news_results:
          type: array
          items:
            type: object
            propertyNames:
              type: string
            additionalProperties: {}
      additionalProperties: false
    FastSearchErrorResponse:
      type: object
      properties:
        request_id:
          type: string
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
            details:
              type: array
              items:
                type: string
          required:
            - code
            - message
      required:
        - request_id
        - error
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````