v1

List all Niches

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

get/v1/niches

Query parameters

currentPagenumber
Example:1

The page of items to retrieve. By default, it is 1

pageSizenumber
Example:20

Number of items per page. By default, it is 20. Max page size is 50

Response

currentPagenumber required
pageSizenumber required

Number of items per page

hasNextboolean required

True when there is a next page. Otherwise, false

hasPrevboolean required

True when there is a previous page. Otherwise, false

lastPagenumber required

Last page or total page count

totalnumber required

Total number of items

Example response

{
  "currentPage": 1,
  "pageSize": 20,
  "lastPage": 1,
  "total": 1,
  "data": [
    {
      "nicheId": "z515cGOFg3",
      "heroKeyword": "dog hat",
      "nicheLabel": "Dog-hat opportunity",
      "marketplace": "com"
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.