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

# /2025-10/retail-media/accounts/{accountId}/retailers

> Gets page of retailer objects that are associated with the given account



## OpenAPI

````yaml https://api.criteo.com/2025-10/retailmedia/open-api-specifications.json get /2025-10/retail-media/accounts/{accountId}/retailers
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - RetailMedia
  version: 2025-10
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Accounts
  - name: Analytics
  - name: Audience
  - name: Balance
  - name: Billing
  - name: Campaign
  - name: Gateway
paths:
  /2025-10/retail-media/accounts/{accountId}/retailers:
    get:
      tags:
        - Campaign
      summary: /2025-10/retail-media/accounts/{accountId}/retailers
      description: Gets page of retailer objects that are associated with the given account
      operationId: GetRetailersByAccountId
      parameters:
        - name: accountId
          in: path
          description: The given account id
          required: true
          schema:
            type: string
        - name: limitToId
          in: query
          description: The ids that you would like to limit your result set to
          schema:
            type: array
            items:
              type: string
        - name: pageIndex
          in: query
          description: >-
            The 0 indexed page index you would like to receive given the page
            size
          schema:
            type: integer
            format: int32
            default: 0
        - name: pageSize
          in: query
          description: >-
            The maximum number of items you would like to receive in this
            request
          schema:
            type: integer
            format: int32
            default: 25
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonApiPageResponseOfRetailer'
      security:
        - oauth:
            - RetailMedia_Campaign_Read
components:
  schemas:
    JsonApiPageResponseOfRetailer:
      required:
        - data
        - metadata
      type: object
      properties:
        data:
          type: array
          items:
            $ref: >-
              #/components/schemas/JsonApiBodyWithIdOfInt64AndRetailerAndRetailer
        errors:
          type: array
          items:
            $ref: '#/components/schemas/CommonError'
          nullable: true
        metadata:
          $ref: '#/components/schemas/PageMetadata'
        warnings:
          type: array
          items:
            $ref: '#/components/schemas/CommonWarning'
          nullable: true
      additionalProperties: false
      description: >-
        A wrapper class to return a single page of <typeparamref name="T" />
        with metadata
    JsonApiBodyWithIdOfInt64AndRetailerAndRetailer:
      required:
        - id
        - type
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/ExternalRetailer'
        id:
          type: string
          format: long-id
        type:
          type: string
      additionalProperties: false
      description: "A JSON:API wrapper class to format a <typeparamref name=\"TAttributes\" /> with external Id, Type, and\r\nAttributes properties"
    CommonError:
      type: object
      properties:
        code:
          type: string
          description: >-
            (REQUIRED) A machine-readable unique error code, expressed as a
            string value. The format used must be kebab-case.
          nullable: true
        detail:
          type: string
          description: >-
            (RECOMMENDED) A human-readable explanation specific to this
            occurrence of the problem.
          nullable: true
        instance:
          type: string
          description: >-
            (REQUIRED) A URI reference that identifies the specific occurrence
            of the problem.
          nullable: true
        source:
          type: object
          additionalProperties:
            type: string
          description: >-
            (OPTIONAL) A machine-readable structure to reference to the exact
            location(s) causing the error(s)
          nullable: true
        stackTrace:
          type: string
          description: >-
            (NEVER IN PRODUCTION) A human-readable stacktrace produced by the
            implementation technology
          nullable: true
        title:
          type: string
          description: (RECOMMENDED) A short, human-readable summary of the problem type.
          nullable: true
        traceId:
          type: string
          description: >-
            (REQUIRED) The Correlation ID provided by the Gateway. It is also a
            unique identifier for this particular occurrence of the problem.
          nullable: true
        type:
          enum:
            - unknown
            - access-control
            - authentication
            - authorization
            - availability
            - deprecation
            - quota
            - validation
          type: string
          description: (REQUIRED) The classification of the error.
          nullable: true
      additionalProperties: false
      description: A JSON:API Common error structure
    PageMetadata:
      required:
        - currentPageIndex
        - currentPageSize
      type: object
      properties:
        currentPageIndex:
          type: integer
          format: int32
        currentPageSize:
          type: integer
          format: int32
        nextPage:
          type: string
          nullable: true
        previousPage:
          type: string
          nullable: true
        totalItemsAcrossAllPages:
          type: integer
          format: int64
          nullable: true
        totalPages:
          type: integer
          format: int64
          nullable: true
      additionalProperties: false
      description: Metadata related to the current request
    CommonWarning:
      type: object
      properties:
        code:
          type: string
          description: >-
            (REQUIRED) A machine-readable unique error code, expressed as a
            string value. The format used must be kebab-case.
          nullable: true
        detail:
          type: string
          description: >-
            (RECOMMENDED) A human-readable explanation specific to this
            occurrence of the problem.
          nullable: true
        instance:
          type: string
          description: >-
            (REQUIRED) A URI reference that identifies the specific occurrence
            of the problem.
          nullable: true
        source:
          type: object
          additionalProperties:
            type: string
          description: >-
            (OPTIONAL) A machine-readable structure to reference to the exact
            location(s) causing the error(s)
          nullable: true
        stackTrace:
          type: string
          description: >-
            (NEVER IN PRODUCTION) A human-readable stacktrace produced by the
            implementation technology
          nullable: true
        title:
          type: string
          description: (RECOMMENDED) A short, human-readable summary of the problem type.
          nullable: true
        traceId:
          type: string
          description: >-
            (REQUIRED) The Correlation ID provided by the Gateway. It is also a
            unique identifier for this particular occurrence of the problem.
          nullable: true
        type:
          enum:
            - unknown
            - access-control
            - authentication
            - authorization
            - availability
            - deprecation
            - quota
            - validation
          type: string
          description: (REQUIRED) The classification of the error.
          nullable: true
      additionalProperties: false
      description: A JSON:API Base common warning
    ExternalRetailer:
      required:
        - name
      type: object
      properties:
        campaignEligibilities:
          type: array
          items:
            enum:
              - unknown
              - auction
              - preferred
              - offsite
              - offsiteCpc
            type: string
          nullable: true
        name:
          maxLength: 100
          type: string
      additionalProperties: false
      description: >-
        A Retail Media Retailer used to represent a selection of products from
        multiple brands
      nullable: true
  securitySchemes:
    oauth:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}
        authorizationCode:
          authorizationUrl: https://api.criteo.com/oauth2
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}

````