> ## 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-01/marketing-solutions/creatives/{id}/preview

> Get the preview of a specific Creative



## OpenAPI

````yaml https://api.criteo.com/2025-01/marketingsolutions/open-api-specifications.json post /2025-01/marketing-solutions/creatives/{id}/preview
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - MarketingSolutions
  version: 2025-01
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Advertiser
  - name: Analytics
  - name: Audience
  - name: Campaign
  - name: Creative
  - name: Gateway
paths:
  /2025-01/marketing-solutions/creatives/{id}/preview:
    post:
      tags:
        - Creative
      summary: /2025-01/marketing-solutions/creatives/{id}/preview
      description: Get the preview of a specific Creative
      operationId: GenerateCreativePreview
      parameters:
        - name: height
          in: query
          description: The height of the Creative to preview.
          schema:
            type: integer
            format: int32
        - name: id
          in: path
          description: The Creative identifier to preview.
          required: true
          schema:
            type: string
        - name: width
          in: query
          description: The width of the Creative to preview.
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: The preview HTML of a specific Creative is returned.
          content:
            text/html:
              schema:
                type: string
            application/json:
              schema:
                type: string
      security:
        - oauth:
            - MarketingSolutions_Creative_Manage
components:
  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: {}

````