---
title: "List seller profiles"
method: GET
path: "/v1/seller_profiles"
tags: ["v1"]
---

# List seller profiles

`GET /v1/seller_profiles`

Returns a paginated list of Amazon seller profiles connected to your organization. Use the sellerId and marketplace from these results to query seller-specific endpoints such as catalog and inventory.

## Query parameters

- `currentPage` number
- `pageSize` number

## Response `200`

- SellerProfileListDto
  - `currentPage` number, required
  - `pageSize` number, required — Number of items per page
  - `hasNext` boolean, required — True when there is a next page. Otherwise, false
  - `hasPrev` boolean, required — True when there is a previous page. Otherwise, false
  - `lastPage` number, required — Last page or total page count
  - `total` number, required — Total number of items
  - `data` SellerProfileDto[], required — List of items
    - `sellerId` string, required — Amazon seller profile identifier
    - `sellerName` string, required — Display name of the seller profile
    - `marketplace` string, required — Amazon marketplace domain (e.g. com, co.uk, de, ca)
    - `hasAdApi` boolean, required — Whether this seller profile has Ad API credentials connected
    - `createdAt` string, date-time, required — When the seller profile was connected to DataDive

## Other responses

- `400` — Invalid pagination parameters
- `401` — Api key is invalid
- `403` — Unauthorized to access the resource
- `404` — Resource not found
- `429` — Rate limit exceeded, either the per-client-IP limit or the per-API-key limit for this endpoint.
- `500` — Internal error

---

[API](https://skmtc.dev/datadive/apis/data-dive-developer-apis.md) · [All operations](https://skmtc.dev/datadive/apis/data-dive-developer-apis/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/datadive/data-dive-developer-apis/revisions/03207abc96ba/schema)
