Skip to main content
GET
/
products
Search products
curl --request GET \
  --url https://app.reechee.io/api/v1/products
{
  "success": true,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "Slack",
      "by": "Slack",
      "logo_url": "<string>",
      "description": "<string>",
      "categories": [
        "<string>"
      ],
      "pain_points_report_status": "<string>",
      "pain_points_report_generated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "pagination": {
      "page": 1,
      "page_size": 20,
      "has_more": true
    }
  }
}

Query Parameters

query
string

Case-insensitive substring match on the product name.

Example:

"zendesk"

page
integer
default:1

1-indexed page number.

Required range: x >= 1
page_size
integer
default:20

Items per page (max 100).

Required range: 1 <= x <= 100

Response

A page of products.

success
boolean
required
data
object[]
required
meta
object
required