> ## 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-04/retail-media/retailers/{retailerId}/pages

> Get the page types available for the given retailer



## OpenAPI

````yaml https://api.criteo.com/2025-04/retailmedia/open-api-specifications.json get /2025-04/retail-media/retailers/{retailerId}/pages
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - RetailMedia
  version: 2025-04
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Accounts
  - name: Analytics
  - name: Audience
  - name: Balance
  - name: Campaign
  - name: Gateway
paths:
  /2025-04/retail-media/retailers/{retailerId}/pages:
    get:
      tags:
        - Campaign
      summary: /2025-04/retail-media/retailers/{retailerId}/pages
      description: Get the page types available for the given retailer
      operationId: RetailerApi_GetApi202110ExternalRetailerPagesByRetailerId
      parameters:
        - name: retailerId
          in: path
          description: The retailers to fetch pages for
          required: true
          schema:
            type: string
            format: int32
      responses:
        '200':
          description: Pages fetched successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetailerPages202110'
      security:
        - oauth:
            - RetailMedia_Campaign_Read
components:
  schemas:
    RetailerPages202110:
      required:
        - pageTypes
      type: object
      properties:
        pageTypes:
          type: array
          items:
            type: string
          description: List of valid pages for a retailer
      additionalProperties: false
      description: Wraps a list of valid pages for a retailer
  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: {}

````