---
title: "Get matched offers list"
method: GET
path: "/offer-manager/pvt/offers"
tags: ["Matched Offers"]
---

# Get matched offers list

`GET /offer-manager/pvt/offers`

Offers are seller's products and SKUs that were sent to the marketplace, and already have their price and inventory level configured. 

 This endpoint retrieves the available offers in a marketplace. It differs from the Get Suggestions endpoints, since it retrieves products that were already matched by the marketplace, and are currently in its catalog. 

## Permissions

Any user or [API key](https://developers.vtex.com/docs/guides/api-authentication-using-api-keys) must have at least one of the appropriate [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3) to be able to successfully run this request. Otherwise they will receive a status code `403` error. These are the applicable resources for this endpoint:

| **Product** | **Category** | **Resource** |
| --------------- | ----------------- | ----------------- |
| Seller Register | Seller Administration | **View Seller** |

You can [create a custom role](https://help.vtex.com/en/tutorial/roles--7HKK5Uau2H6wxE1rH5oRbc#creating-a-role) with that resource or use one of the following [predefined roles](https://help.vtex.com/en/tutorial/predefined-roles--jGDurZKJHvHJS13LnO7Dy):

| **Role** | **Resource** | 
| --------------- | ----------------- | 
| Seller manager | View Seller |

>❗ Assigning a [predefined role](https://help.vtex.com/en/tutorial/predefined-roles--jGDurZKJHvHJS13LnO7Dy) to users or application keys usually grants permission to multiple [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3). If some of these permissions are not necessary, consider creating a custom role instead. For more information regarding security, see [Best practices for using application keys](https://help.vtex.com/en/tutorial/best-practices-api-keys--7b6nD1VMHa49aI5brlOvJm).

## Path parameters

- `accountName` string, required
- `environment` string, required

## Query parameters

- `sort` string
- `rows` integer
- `start` integer
- `fq` string

## Headers

- `Content-Type` string, required
- `Accept` string, required

## Response `200`

OK

- object[] — Response with the list of offers available on the Marketplace.
  - `LastModified` string — Last date when the offer was modified.
  - `ProductId` string — Unique identifier of the seller's product. This is the ID that the marketplace will use for all references to this product.
  - `CategoryId` integer — Offer's Category ID that the product belongs to, configured in the Catalog. It should be the marketplace's category chosen for the offer to be matched with.
  - `BrandId` integer — Offer's brand ID that the product belongs to, configured in the Catalog. It should be the marketplace's brand chosen for the offer to be matched with.
  - `ProductName` string — Name of the offer's product.
  - `Skus` Sku2[] — A list of SKUs (Stock Keeping Units) associated with the product. Each SKU contains detailed information about specific variants of the product, such as color, size, and other specifications.
    - `SkuId` string, required — SKU's unique identifier number.
    - `EanId` string, nullable, required — EAN's unique identifier number.
    - `RefId` string, nullable, required — SKU's Reference ID.
    - `NameComplete` string, required — Complete name of the SKU.
    - `Name` string, required — Summarized name of the SKU.
    - `IsActive` boolean, required — Whether the SKU is active in the trade policy (true), or not (false).
    - `MainImage` object, required — Main image's information.
    - `Offers` Offer[], required — Array with offers.
      - `SellerId` string, required — ID of the seller in the marketplace. This ID must be created by the marketplace.
      - `SellerSkuId` string, required — Unique identifier of the SKU in the seller. This is the ID that the marketplace will use for future references to this SKU, such as price and inventory notifications.
      - `OffersPerSalesChannel` OffersPerSalesChannel[], required — Each element in the array corresponds to an offer in a specific trade policy.
        - `SaleChannel` integer, required — Sales channel ([trade policy](https://help.vtex.com/en/tutorial/how-trade-policies-work--6Xef8PZiFm40kg2STrMkMV)) of the SKU.
        - `Price` integer, required — SKU's price.
        - `ListPrice` integer, required — SKU's suggested selling price.
        - `PriceWithoutDiscount` integer, required — SKU's price without discount applied.
        - `AvailableQuantity` integer, required — Available SKU stock quantity.
      - `AvailableSalesChannels` string, nullable, required — The sales channel ([trade policy](https://help.vtex.com/en/tutorial/how-trade-policies-work--6Xef8PZiFm40kg2STrMkMV)) ID in which the SKU is available.

---

[API](https://skmtc.net/vtex/apis/marketplace-api.md) · [All operations](https://skmtc.net/vtex/apis/marketplace-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/vtex/marketplace-api/revisions/27e83b4cc9ac/schema)
