> ## 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-07/marketing-solutions/marketplace-performance-outcomes/advertisers/preview-limit

> Get the collection of advertisers preview limits associated with the authorized user.



## OpenAPI

````yaml https://api.criteo.com/2025-07/marketingsolutions/open-api-specifications.json get /2025-07/marketing-solutions/marketplace-performance-outcomes/advertisers/preview-limit
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - MarketingSolutions
  version: 2025-07
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Advertiser
  - name: Analytics
  - name: Audience
  - name: Campaign
  - name: Creative
  - name: Gateway
paths:
  /2025-07/marketing-solutions/marketplace-performance-outcomes/advertisers/preview-limit:
    get:
      tags:
        - Campaign
      summary: >-
        /2025-07/marketing-solutions/marketplace-performance-outcomes/advertisers/preview-limit
      description: >-
        Get the collection of advertisers preview limits associated with the
        authorized user.
      operationId: GetMarketplaceAdvertiserPreviewLimits
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdvertiserQuotaMessage'
      security:
        - oauth:
            - MarketingSolutions_Campaign_Read
components:
  schemas:
    AdvertiserQuotaMessage:
      type: object
      properties:
        advertiserId:
          type: integer
          format: int32
          nullable: true
        quotaEndDate:
          type: string
          format: date-time
          nullable: true
        quotaLimit:
          type: integer
          format: int32
          nullable: true
        quotaStartDate:
          type: string
          format: date-time
          nullable: true
        quotaUsed:
          type: integer
          format: int32
          nullable: true
      description: Data representing an advertiser's quota
  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: {}

````