---
title: "List all Niches"
method: GET
path: "/v1/niches"
tags: ["v1"]
---

# List all Niches

`GET /v1/niches`

Retrieves a paginated list of Niches. Each Niche represents a market segment or product category being tracked.

## Query parameters

- `currentPage` number
- `pageSize` number

## Response `200`

- NicheList
  - `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` NicheItem[], required — List of items
    - `nicheId` string, required — The unique identifier of the Niche
    - `heroKeyword` string, required — The primary keyword that defines the Niche
    - `nicheLabel` string, required — A human-readable label for the Niche
    - `marketplace` string, required — The Amazon marketplace domain (e.g., com, uk, de)
    - `latestResearchDate` object, required — The date when the Niche data was last updated

## 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)
