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

# List Affiliate Discovery Merchants



## OpenAPI

````yaml https://rewardsbot-prod.liquidrewardsapi.com/openapi.discovery.json get /v1/discovery/merchants
openapi: 3.1.0
info:
  title: RewardsBot Affiliate Discovery API
  description: Affiliate discovery search, detail, and related workflows.
  version: 2.0.0
servers: []
security: []
paths:
  /v1/discovery/merchants:
    get:
      tags:
        - affiliate-discovery
      summary: List Affiliate Discovery Merchants
      operationId: list_affiliate_discovery_merchants_v1_discovery_merchants_get
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
            title: Page
        - name: per_page
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 25
            title: Per Page
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Cursor
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AffiliateDiscoveryMerchantListResponse'
        '403':
          description: Missing API key.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '503':
          description: Affiliate Discovery merchant search is not configured.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    AffiliateDiscoveryMerchantListResponse:
      properties:
        query:
          type: string
          title: Query
        page_index:
          type: integer
          title: Page Index
        page_size:
          type: integer
          title: Page Size
        items:
          items:
            $ref: '#/components/schemas/AffiliateDiscoveryMerchantListItem'
          type: array
          title: Items
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
        expires_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Expires At
      type: object
      required:
        - query
        - page_index
        - page_size
        - items
      title: AffiliateDiscoveryMerchantListResponse
      x-contract-version: 2.0.0
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AffiliateDiscoveryMerchantListItem:
      properties:
        type:
          type: string
          const: merchant
          title: Type
          default: merchant
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        domain:
          anyOf:
            - type: string
            - type: 'null'
          title: Domain
        logo_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Logo Url
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        product_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Product Count
        categories:
          items:
            type: string
          type: array
          title: Categories
        brands:
          items:
            type: string
          type: array
          title: Brands
        product_terms:
          items:
            type: string
          type: array
          title: Product Terms
      type: object
      required:
        - id
        - name
      title: AffiliateDiscoveryMerchantListItem
      x-contract-version: 2.0.0
    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
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````