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

# Export Parquet

> Columnar Parquet for warehouse loads.



## OpenAPI

````yaml GET /api/v1/export/parquet
openapi: 3.1.0
info:
  title: WXA VPN IP Intelligence API
  description: >-
    Real-time and bulk IP intelligence for VPN, proxy, Tor, relay, hosting, CDN,
    and residential proxy detection.


    **Authentication:** Customer-facing requests are authenticated by the
    wxaintel-platform gateway (`wxaintel.wxapros.com/api/v1/vpn/...`) which
    validates the `Authorization: Bearer` header or `?apiKey=` query param,
    enforces tier and quota, then forwards to this backend with a shared
    `X-Internal-Key` + `X-Tier`. See CONTRACT.md.


    **Tiers:** free, starter, pro, scale, business, enterprise. Pro+ adds
    residential proxy attribution, confidence/freshness, and CSV export.
    Business+ adds MMDB and Parquet bulk downloads. Enterprise adds NetFlow
    protocol attribution.
  contact:
    name: WXA VPN Support
    url: https://www.whoisxmlapi.com/
    email: support@whoisxmlapi.com
  version: 1.0.0
servers: []
security: []
paths:
  /api/v1/export/parquet:
    get:
      summary: Export Parquet
      description: |-
        Return a time-limited download URL for the daily Parquet build.

        Available to Business+ tiers per launch-pricing-proposal. No competitor
        confirmed to ship Parquet at self-serve pricing.
      operationId: export_parquet_api_v1_export_parquet_get
      parameters:
        - name: artifact
          in: query
          required: false
          schema:
            type: string
            pattern: ^(ranges|points)$
            default: ranges
            title: Artifact
        - name: X-Internal-Key
          in: header
          required: false
          schema:
            type: string
            default: ''
            title: X-Internal-Key
        - name: X-Tier
          in: header
          required: false
          schema:
            type: string
            default: ''
            title: X-Tier
        - name: X-User-Id
          in: header
          required: false
          schema:
            type: string
            default: ''
            title: X-User-Id
        - name: X-Quota-Used
          in: header
          required: false
          schema:
            type: string
            default: ''
            title: X-Quota-Used
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '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

````