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

# List Audience Contacts

> Fetch a paginated list of customers who have opted into marketing communications from the store, using the `x-store-id` header for verification. Supports filtering by `status` and `email` with pagination via `limit`, `page`, and `offset` query parameters.



## OpenAPI

````yaml /api-reference/growth-api.json get /audience
openapi: 3.0.0
info:
  title: Growth API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security:
  - storeIdHeader: []
paths:
  /audience:
    get:
      tags:
        - Audience
      summary: List Audience Contacts
      description: >-
        Fetch a paginated list of customers who have opted into marketing
        communications from the store, using the `x-store-id` header for
        verification. Supports filtering by `status` and `email` with pagination
        via `limit`, `page`, and `offset` query parameters.
      parameters:
        - name: status
          in: query
          description: Filter contacts by status (e.g., `active`, `unsubscribed`).
          schema:
            type: string
        - name: email
          in: query
          description: Filter contacts by email pattern.
          schema:
            type: string
      responses:
        '200':
          description: List of audience contacts with pagination.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AudienceContactsList'
      security:
        - storeIdHeader: []
components:
  schemas:
    AudienceContactsList:
      type: object
      properties:
        meta:
          type: object
          properties:
            total:
              type: integer
            page:
              type: integer
            limit:
              type: integer
            has_more:
              type: boolean
        data:
          type: array
          items:
            $ref: '#/components/schemas/AudienceMember'
    AudienceMember:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        email:
          type: string
        status:
          type: string
        total_orders:
          type: integer
        lifetime_revenue:
          type: number
        created_at:
          type: string
          format: date-time
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````