> ## 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/advertisers/me

> Fetch the portfolio of Advertisers for this account



## OpenAPI

````yaml https://api.criteo.com/2025-01/marketingsolutions/open-api-specifications.json get /2025-01/advertisers/me
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/advertisers/me:
    get:
      tags:
        - Advertiser
      summary: /2025-01/advertisers/me
      description: Fetch the portfolio of Advertisers for this account
      operationId: ListAdvertisers
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetPortfolioResponse'
              example:
                data:
                  - type: advertiser
                    id: '13'
                    attributes:
                      advertiserName: ClientName1
                  - type: advertiser
                    id: '1352'
                    attributes:
                      advertiserName: ClientName2
                  - type: advertiser
                    id: '73550'
                    attributes:
                      advertiserName: ClientName3
                errors: []
                warnings: []
      security:
        - oauth: []
components:
  schemas:
    GetPortfolioResponse:
      type: object
      properties:
        data:
          uniqueItems: false
          type: array
          items:
            $ref: '#/components/schemas/EntityOfPortfolioMessage'
          description: The response�s primary data
          nullable: true
        errors:
          uniqueItems: false
          type: array
          items:
            $ref: '#/components/schemas/CriteoApiError'
          description: "Error list returned by the Criteo API\r\nFor successful requests it is empty"
          nullable: true
        warnings:
          uniqueItems: false
          type: array
          items:
            $ref: '#/components/schemas/CriteoApiWarning'
          description: "Warnings list returned by the Criteo API\r\nIn some situations the operations are successful but it may be useful to issue warnings to the API consumer.\r\nFor example the endpoint, entity or field is deprecated. Warnings are like compiler warnings, they indicate that problems may occur in the future."
          nullable: true
      description: Portfolio fetch Response
    EntityOfPortfolioMessage:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/PortfolioMessage'
        id:
          type: string
          description: A opaque string containing the unique Id of the entity
          nullable: true
        meta:
          type: object
          description: A meta object that contains application-specific metadata
          nullable: true
        type:
          enum:
            - campaign
            - adset
            - ad
            - advertiser
            - agency
            - publisher
            - address
            - client
            - contact
            - industry
          type: string
          description: A string containing the entity type
          nullable: true
          example: campaign
      description: Generic Criteo API successful data model
    CriteoApiError:
      type: object
      properties:
        code:
          enum:
            - internal-error
            - deprecated-field
            - endpoint-deprecated
            - required-field
            - invalid-date-format
            - invalid
            - invalid-ranged
            - invalid-timespan
          type: string
          description: >-
            A machine-readable error code string in kabab-case. Unique across
            Criteo
          nullable: true
          example: internal-error
        detail:
          type: string
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          nullable: true
        instance:
          type: string
          description: >-
            A URI reference that identifies the specific occurrence of the
            problem
          nullable: true
        source:
          type: object
          additionalProperties:
            type: string
          description: >-
            A machine-readable structure to reference to the exact location(s)
            causing the error(s).
          nullable: true
        title:
          type: string
          description: A short, human-readable remarks of the problem type.
          nullable: true
        traceId:
          type: string
          description: The correlation ID provided by the gateway
          nullable: true
        type:
          enum:
            - access_control
            - authentication
            - authorization
            - availability
            - deprecation
            - quota
            - validation
          type: string
          description: A machine-readable code specifying error category
          nullable: true
          example: access_control
      description: Criteo API response error
    CriteoApiWarning:
      type: object
      properties:
        code:
          enum:
            - internal-error
            - deprecated-field
            - endpoint-deprecated
            - required-field
            - invalid-date-format
            - invalid
            - invalid-ranged
            - invalid-timespan
          type: string
          description: >-
            A machine-readable error code string in kabab-case. Unique across
            Criteo
          nullable: true
          example: internal-error
        detail:
          type: string
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          nullable: true
        instance:
          type: string
          description: >-
            A URI reference that identifies the specific occurrence of the
            problem
          nullable: true
        title:
          type: string
          description: A short, human-readable remarks of the problem type.
          nullable: true
        traceId:
          type: string
          description: The correlation ID provided by the gateway
          nullable: true
        type:
          enum:
            - access_control
            - authentication
            - authorization
            - availability
            - deprecation
            - quota
            - validation
          type: string
          description: A machine-readable code specifying error category
          nullable: true
          example: access_control
      description: Criteo API response warning
    PortfolioMessage:
      type: object
      properties:
        advertiserName:
          type: string
          nullable: true
      description: Class with elementary info about advertiser
      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: {}

````