Get pain points
curl --request GET \
--url https://app.reechee.io/api/v1/products/{id}/pain-points \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.reechee.io/api/v1/products/{id}/pain-points"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.reechee.io/api/v1/products/{id}/pain-points', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.reechee.io/api/v1/products/{id}/pain-points",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.reechee.io/api/v1/products/{id}/pain-points"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.reechee.io/api/v1/products/{id}/pain-points")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.reechee.io/api/v1/products/{id}/pain-points")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"product": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"logo_url": "<string>",
"description": "<string>"
},
"themes": [
{
"category_name": "<string>",
"quotes": [
{
"quote_text": "<string>",
"platform": "<string>",
"source_url": "<string>",
"review_date": "<string>"
}
],
"trend": "trending",
"total_mentions": 123,
"business_impact": "<string>"
}
],
"total_themes": 123,
"status": "<string>",
"generated_at": "2023-11-07T05:31:56Z",
"summary": "<string>"
},
"meta": {
"upsell": "<string>"
}
}{
"success": false,
"error": {
"code": "not_found",
"message": "Resource not found"
}
}{
"success": false,
"error": {
"code": "rate_limited",
"message": "Rate limit exceeded",
"details": {
"retry_after_seconds": 12,
"limit": 60,
"remaining": 0
}
}
}Endpoints
Get pain points
One endpoint, two depths by auth lane:
- Anonymous - a free taste: summary, the top 3 themes (each with up to 2
quotes), and
total_themes. Themeta.upsellfield links to the full report. Returns the product with emptythemeswhen no report exists yet - never a silent empty. - With a valid API key - the full report: every theme and quote, trend badges, and analysis metadata. No upsell.
A product with no generated report returns 404 to anonymous callers only
when the product id itself is unknown; a known product without a report returns
200 with an empty taste.
GET
/
products
/
{id}
/
pain-points
Get pain points
curl --request GET \
--url https://app.reechee.io/api/v1/products/{id}/pain-points \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.reechee.io/api/v1/products/{id}/pain-points"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.reechee.io/api/v1/products/{id}/pain-points', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.reechee.io/api/v1/products/{id}/pain-points",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.reechee.io/api/v1/products/{id}/pain-points"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.reechee.io/api/v1/products/{id}/pain-points")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.reechee.io/api/v1/products/{id}/pain-points")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"product": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"logo_url": "<string>",
"description": "<string>"
},
"themes": [
{
"category_name": "<string>",
"quotes": [
{
"quote_text": "<string>",
"platform": "<string>",
"source_url": "<string>",
"review_date": "<string>"
}
],
"trend": "trending",
"total_mentions": 123,
"business_impact": "<string>"
}
],
"total_themes": 123,
"status": "<string>",
"generated_at": "2023-11-07T05:31:56Z",
"summary": "<string>"
},
"meta": {
"upsell": "<string>"
}
}{
"success": false,
"error": {
"code": "not_found",
"message": "Resource not found"
}
}{
"success": false,
"error": {
"code": "rate_limited",
"message": "Rate limit exceeded",
"details": {
"retry_after_seconds": 12,
"limit": 60,
"remaining": 0
}
}
}Authorizations
A paid-team API key, sent as Authorization: Bearer rch_live_…. Create and
revoke keys in the app under Settings → API keys.
Path Parameters
Product id (uuid).
⌘I