curl --request GET \
--url https://app.reechee.io/api/v1/opportunities \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.reechee.io/api/v1/opportunities"
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/opportunities', 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/opportunities",
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/opportunities"
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/opportunities")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.reechee.io/api/v1/opportunities")
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": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"is_viewed": true,
"status": "new",
"created_at": "2023-11-07T05:31:56Z",
"source": "review",
"frustration_tier": "severe",
"mention": {
"url": "<string>",
"posted_at": "2023-11-07T05:31:56Z",
"sentiment": "<string>",
"has_buying_signal": true,
"pain_points": {},
"author_name": "<string>",
"author_headline": "<string>",
"author_title": "<string>",
"author_company_name": "<string>",
"author_company_logo": "<string>",
"subreddit": "<string>",
"product": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"logo_url": "<string>"
}
},
"review": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"platform": "<string>",
"reviewer_name": "<string>",
"reviewer_title": "<string>",
"reviewer_company": "<string>",
"enriched_company_name": "<string>",
"enriched_company_logo": "<string>",
"rating": 123,
"review_url": "<string>",
"published_at": "2023-11-07T05:31:56Z",
"company_industry": "<string>",
"company_size": "<string>",
"company_country": "<string>",
"product": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"logo_url": "<string>"
}
}
}
],
"meta": {
"pagination": {
"page": 1,
"page_size": 20,
"has_more": true
}
}
}{
"success": false,
"error": {
"code": "invalid_request",
"message": "Invalid request"
}
}{
"success": false,
"error": {
"code": "unauthorized",
"message": "API key required"
}
}{
"success": false,
"error": {
"code": "rate_limited",
"message": "Rate limit exceeded",
"details": {
"retry_after_seconds": 12,
"limit": 60,
"remaining": 0
}
}
}List opportunities
The team’s latest opportunities with filters and pagination. Requires an API
key. Sorted by created_at (recency).
Each row is either review-sourced or social-sourced: source says which
("review", "linkedin", or "reddit"), review is populated for the former
and mention for the latter. Social sources (LinkedIn, Reddit) require a Scale
plan or higher - they are simply absent from the response on lower plans.
curl --request GET \
--url https://app.reechee.io/api/v1/opportunities \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.reechee.io/api/v1/opportunities"
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/opportunities', 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/opportunities",
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/opportunities"
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/opportunities")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.reechee.io/api/v1/opportunities")
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": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"is_viewed": true,
"status": "new",
"created_at": "2023-11-07T05:31:56Z",
"source": "review",
"frustration_tier": "severe",
"mention": {
"url": "<string>",
"posted_at": "2023-11-07T05:31:56Z",
"sentiment": "<string>",
"has_buying_signal": true,
"pain_points": {},
"author_name": "<string>",
"author_headline": "<string>",
"author_title": "<string>",
"author_company_name": "<string>",
"author_company_logo": "<string>",
"subreddit": "<string>",
"product": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"logo_url": "<string>"
}
},
"review": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"platform": "<string>",
"reviewer_name": "<string>",
"reviewer_title": "<string>",
"reviewer_company": "<string>",
"enriched_company_name": "<string>",
"enriched_company_logo": "<string>",
"rating": 123,
"review_url": "<string>",
"published_at": "2023-11-07T05:31:56Z",
"company_industry": "<string>",
"company_size": "<string>",
"company_country": "<string>",
"product": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"logo_url": "<string>"
}
}
}
],
"meta": {
"pagination": {
"page": 1,
"page_size": 20,
"has_more": true
}
}
}{
"success": false,
"error": {
"code": "invalid_request",
"message": "Invalid request"
}
}{
"success": false,
"error": {
"code": "unauthorized",
"message": "API key required"
}
}{
"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.
Query Parameters
Free-text match across the opportunity's review.
Filter by triage status. Only new is accepted as a filter.
new Restrict to opportunities whose review is for this product id (uuid).
Comma-separated review ratings, e.g. 4,5.
"4,5"
Comma-separated frustration tiers to keep, any of severe, moderate,
mild (see frustration_tier on the response). Review-sourced rows
only: a social mention has no tier, so social rows drop out while this
filter is set. Any other value is a 400 invalid_request.
"severe,moderate"
Comma-separated sources to include, at either level: a review site
(g2, capterra, trustpilot, trustradius, sourceforge) or a social
source (linkedin, reddit). Mix freely, e.g. g2,linkedin. Omit for
everything the team's plan entitles.
"g2,linkedin"
Comma-separated company industries.
Comma-separated company sizes.
Comma-separated company countries.
Inclusive lower bound on created_at (ISO 8601).
Inclusive upper bound on created_at (ISO 8601).
Sort order by creation time.
newest, oldest 1-indexed page number.
x >= 1Items per page (max 100).
1 <= x <= 100