Brave Spellcheck API

The Spellcheck API from Brave — 1 operation(s) for spellcheck.

OpenAPI Specification

brave-browser-spellcheck-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Brave Search Images Spellcheck API
  description: The Brave Search API provides programmatic access to Brave's independent search index covering web, news, image, video, suggest, spellcheck, summarizer, and local POI endpoints. Requests authenticate via the X-Subscription-Token header issued through the Brave Search API dashboard.
  version: '1.0'
  contact:
    name: Brave Search API
    url: https://api-dashboard.search.brave.com/app/documentation
servers:
- url: https://api.search.brave.com/res/v1
  description: Production API
security:
- SubscriptionToken: []
tags:
- name: Spellcheck
paths:
  /spellcheck/search:
    get:
      summary: Spellcheck API
      operationId: spellcheck
      tags:
      - Spellcheck
      parameters:
      - name: q
        in: query
        required: true
        schema:
          type: string
      - name: country
        in: query
        schema:
          type: string
      - name: lang
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Spellcheck suggestions
          content:
            application/json:
              schema:
                type: object
components:
  securitySchemes:
    SubscriptionToken:
      type: apiKey
      in: header
      name: X-Subscription-Token