> ## 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.

# Get Affiliate Conversions

> Retrieves a paginated list of orders attributed to a specific affiliate, specified by the `id` path parameter, ensuring the affiliate is part of the store using the `x-store-id` header. Uses pagination with `limit`, `page`, and `offset` query parameters.



## OpenAPI

````yaml /api-reference/growth-api.json get /affiliates/{id}/conversions
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:
  /affiliates/{id}/conversions:
    get:
      tags:
        - Affiliates
      summary: Get Affiliate Conversions
      description: >-
        Retrieves a paginated list of orders attributed to a specific affiliate,
        specified by the `id` path parameter, ensuring the affiliate is part of
        the store using the `x-store-id` header. Uses pagination with `limit`,
        `page`, and `offset` query parameters.
      parameters:
        - name: id
          in: path
          required: true
          description: ID of the affiliate.
          schema:
            type: string
      responses:
        '200':
          description: List of affiliate conversions with pagination.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AffiliateConversions'
      security:
        - storeIdHeader: []
components:
  schemas:
    AffiliateConversions:
      type: object
      properties:
        meta:
          type: object
          properties:
            total:
              type: integer
            page:
              type: integer
            limit:
              type: integer
            has_more:
              type: boolean
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              status:
                type: string
              amount:
                type: number
              net_amount:
                type: number
              affiliate_commission_cents:
                type: integer
              affiliate_payout_status:
                type: string
              created_at:
                type: string
                format: date-time
              customer:
                type: object
                properties:
                  id:
                    type: string
                  name:
                    type: string
                  email:
                    type: string
              product:
                type: object
                properties:
                  id:
                    type: string
                  name:
                    type: string
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````