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

# Query visitor data via API key

> Read-only access to resolved visitor data. Pass `email` to get a single visitor journey with sessions. Authenticated via `X-API-Key` header.



## OpenAPI

````yaml https://api.aws53.cloud/openapi-data.json get /v1/data
openapi: 3.1.0
info:
  title: Identification API
  version: 1.0.0
  description: >-
    Programmatic access to your visitor data and pixel management. Authenticate
    with your API key (X-API-Key header).
servers:
  - url: https://api.aws53.cloud
    description: Production
security:
  - apiKeyAuth: []
tags:
  - name: Visitors
  - name: Pixels
  - name: Account
paths:
  /v1/data:
    get:
      tags:
        - Visitors
      summary: Query visitor data via API key
      description: >-
        Read-only access to resolved visitor data. Pass `email` to get a single
        visitor journey with sessions. Authenticated via `X-API-Key` header.
      parameters:
        - schema:
            type: string
            format: email
            description: Filter by exact email to get visitor journey
          required: false
          name: email
          in: query
        - schema:
            type: integer
            minimum: 1
            default: 1
            description: Page number (50 results per page)
          required: false
          name: page
          in: query
        - schema:
            type: string
            enum:
              - 24h
              - 7d
              - 14d
              - 30d
              - 90d
              - all
            default: 30d
            description: Time window filter
          required: false
          name: timeframe
          in: query
        - schema:
            type: string
            description: Filter by website domain
          required: false
          name: domain
          in: query
      responses:
        '200':
          description: Visitor data
        '401':
          description: Missing or invalid API key
        '403':
          description: API key revoked or organization inactive
        '503':
          description: Service unavailable
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Organization API key (sk_...). Get yours from Settings > API Keys in the
        dashboard.

````