Skip to main content
GET
/
watchlist
List watchlist
curl --request GET \
  --url https://app.reechee.io/api/v1/watchlist \
  --header 'Authorization: Bearer <token>'
{
  "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
    }
  }
}

Authorizations

Authorization
string
header
required

A paid-team API key, sent as Authorization: Bearer rch_live_…. Create and revoke keys in the app under Settings → API keys.

Query Parameters

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 followed products.

success
boolean
required
data
object[]
required
meta
object
required