> ## 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/sellers

> Return a collection of sellers filtered by optional filter parameters.
If all parameters are omitted the entire collection to which the user has
access is returned. Returned sellers must satisfy all supplied filter
criteria if multiple parameters are used.



## OpenAPI

````yaml https://api.criteo.com/2025-07/marketingsolutions/open-api-specifications.json get /2025-07/marketing-solutions/marketplace-performance-outcomes/sellers
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/sellers:
    get:
      tags:
        - Campaign
      summary: /2025-07/marketing-solutions/marketplace-performance-outcomes/sellers
      description: "Return a collection of sellers filtered by optional filter parameters.\r\nIf all parameters are omitted the entire collection to which the user has\r\naccess is returned. Returned sellers must satisfy all supplied filter\r\ncriteria if multiple parameters are used."
      operationId: GetMarketplaceSellers
      parameters:
        - name: advertiserId
          in: query
          description: Return only sellers belonging to the specified advertiser
          schema:
            type: integer
            format: int32
        - name: campaignId
          in: query
          description: Return only sellers belonging to the specified campaign
          schema:
            type: integer
            format: int32
        - name: sellerName
          in: query
          description: Return only sellers with the matching name.
          schema:
            type: string
        - name: sellerStatus
          in: query
          description: Return only sellers with specific status.
          schema:
            enum:
              - Inactive
              - Active
            type: string
        - name: withBudgetStatus
          in: query
          description: Return only sellers with specific budget status.
          schema:
            enum:
              - Archived
              - Current
              - Scheduled
            type: string
        - name: withProducts
          in: query
          description: Return only sellers with or without products in catalog.
          schema:
            type: boolean
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SellerBase'
      security:
        - oauth:
            - MarketingSolutions_Campaign_Read
components:
  schemas:
    SellerBase:
      type: object
      properties:
        id:
          type: string
          description: Unique seller identifier
        sellerName:
          type: string
          description: Display name of the seller (merchant)
      description: >-
        The seller represents the merchant selling products on the advertiser's
        marketplace platform.
      example:
        id: '10656107'
        sellerName: AutoShop NYC
  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: {}

````