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

# Southwest Airlines flight fares as JSON

> Live Southwest Airlines fares for a route and date, returned as JSON. Each fare product (Basic / Wanna Get Away / Wanna Get Away Plus / Anytime / Business Select) is priced in US dollars or Rapid Rewards points. One-way or return. Origin and destination are IATA airport codes (e.g. DAL, HOU). The search runs on a warm, anti-bot-cleared session.



## OpenAPI

````yaml /api-reference/openapi.json post /flights/southwest-quotes
openapi: 3.1.0
info:
  title: ScrapeUnblocker API
  description: >-
    Public API for the ScrapeUnblocker proxy/anti-bot service. Authenticate
    every request with the `x-scrapeunblocker-key` header. Three endpoints are
    documented here: page-source extraction, Google SERP scraping, and image
    fetch. All other paths exist for internal operations and are intentionally
    hidden from this spec.
  version: 3.0.0
servers:
  - url: https://api.scrapeunblocker.com
    description: Production
security: []
paths:
  /flights/southwest-quotes:
    post:
      tags:
        - Plugins
      summary: Southwest Airlines flight fares as JSON
      description: >-
        Live Southwest Airlines fares for a route and date, returned as JSON.
        Each fare product (Basic / Wanna Get Away / Wanna Get Away Plus /
        Anytime / Business Select) is priced in US dollars or Rapid Rewards
        points. One-way or return. Origin and destination are IATA airport codes
        (e.g. DAL, HOU). The search runs on a warm, anti-bot-cleared session.
      operationId: southwest_flights_flights_southwest_quotes_post
      parameters:
        - name: origin
          in: query
          required: false
          schema:
            type: string
            title: Origin
        - name: dest
          in: query
          required: false
          schema:
            type: string
            title: Dest
        - name: depart_date
          in: query
          required: false
          schema:
            type: string
            title: Depart Date
        - name: return_date
          in: query
          required: false
          schema:
            type: string
            title: Return Date
        - name: adults
          in: query
          required: false
          schema:
            type: integer
            maximum: 8
            minimum: 1
            default: 1
            title: Adults
        - name: fare_type
          in: query
          required: false
          schema:
            type: string
            default: dollars
            title: Fare Type
        - name: proxy_country
          in: query
          required: false
          schema:
            type: string
            default: US
            title: Proxy Country
        - name: max_attempts
          in: query
          required: false
          schema:
            type: integer
            maximum: 5
            minimum: 1
            default: 3
            title: Max Attempts
      responses:
        '200':
          description: Southwest fares as JSON.
          content:
            application/json:
              schema: {}
        '400':
          description: Missing or invalid search parameters.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - ScrapeUnblockerKey: []
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
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ScrapeUnblockerKey:
      type: apiKey
      in: header
      name: x-scrapeunblocker-key
      description: Your ScrapeUnblocker API key. Apply on every request.

````