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

# Search patents

> Search patents



## OpenAPI

````yaml GET /v1/google/patents/search
openapi: 3.1.0
info:
  title: ScrapeBadger Google Scraper API
  version: 1.0.0
  description: >-
    Structured JSON APIs for 16 Google product APIs: Search, Maps, News, Hotels,
    Trends, Jobs, Shopping, Patents, Scholar, Autocomplete, Images, Videos,
    Finance, AI Mode, Lens, Products.
servers:
  - url: https://scrapebadger.com
security: []
paths:
  /v1/google/patents/search:
    get:
      tags:
        - Google Patents
      summary: Search patents
      operationId: patents_search_v1_google_patents_search_get
      parameters:
        - name: q
          in: query
          required: true
          schema:
            type: string
            description: Search query
            title: Q
          description: Search query
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Page
        - name: num
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 10
            title: Num
        - name: sort
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Sort
        - name: inventor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Inventor
        - name: assignee
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Assignee
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                title: Response Patents Search V1 Google Patents Search Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````