curl --request GET \
--url https://app.concretehq.com/api/v1/companies/{companyPublicId}/touchpoints \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.concretehq.com/api/v1/companies/{companyPublicId}/touchpoints"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.concretehq.com/api/v1/companies/{companyPublicId}/touchpoints', 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.concretehq.com/api/v1/companies/{companyPublicId}/touchpoints",
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.concretehq.com/api/v1/companies/{companyPublicId}/touchpoints"
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.concretehq.com/api/v1/companies/{companyPublicId}/touchpoints")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.concretehq.com/api/v1/companies/{companyPublicId}/touchpoints")
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{
"items": [
{
"publicId": "tch123abc456",
"headline": "Acme May 2026 investor update",
"topics": [
"periodic-company-update"
],
"occurredAt": "2026-06-01T12:00:00Z",
"updatedAt": "2026-06-02T08:14:09Z",
"insights": [
{
"publicId": "ins789ghi012",
"category": "growth",
"content": "ARR reached $24M in May, up 18% since the February update.",
"occurredAt": "2026-06-01T12:00:00Z",
"citations": [
{
"type": "file",
"publicId": "fil789ghi012",
"name": "Acme May 2026 Investor Update.pdf",
"extension": "pdf",
"permalink": "https://app.concretehq.com/v/fil789ghi012"
}
]
}
]
}
]
}List company touchpoints
List a company’s touchpoints, newest first, with pagination support. A touchpoint groups the activity around one company event, such as an investor update, a board meeting, or an announcement, and carries the insights extracted from that activity with citations back to the source material.
curl --request GET \
--url https://app.concretehq.com/api/v1/companies/{companyPublicId}/touchpoints \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.concretehq.com/api/v1/companies/{companyPublicId}/touchpoints"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.concretehq.com/api/v1/companies/{companyPublicId}/touchpoints', 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.concretehq.com/api/v1/companies/{companyPublicId}/touchpoints",
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.concretehq.com/api/v1/companies/{companyPublicId}/touchpoints"
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.concretehq.com/api/v1/companies/{companyPublicId}/touchpoints")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.concretehq.com/api/v1/companies/{companyPublicId}/touchpoints")
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{
"items": [
{
"publicId": "tch123abc456",
"headline": "Acme May 2026 investor update",
"topics": [
"periodic-company-update"
],
"occurredAt": "2026-06-01T12:00:00Z",
"updatedAt": "2026-06-02T08:14:09Z",
"insights": [
{
"publicId": "ins789ghi012",
"category": "growth",
"content": "ARR reached $24M in May, up 18% since the February update.",
"occurredAt": "2026-06-01T12:00:00Z",
"citations": [
{
"type": "file",
"publicId": "fil789ghi012",
"name": "Acme May 2026 Investor Update.pdf",
"extension": "pdf",
"permalink": "https://app.concretehq.com/v/fil789ghi012"
}
]
}
]
}
]
}Authorizations
API key authentication using Bearer token format
Path Parameters
Company public ID
Query Parameters
Token for pagination to get next page
Number of results per page (default: 100, max: 100)
1 <= x <= 100Only touchpoints with these topics. Repeat the parameter to pass
multiple (e.g. ?topic=board-meeting&topic=company-announcement).
periodic-company-update, company-announcement, board-meeting, adhoc-company-update, legal-communication, other Only touchpoints with insights in these categories. Repeat the
parameter to pass multiple. Also narrows the insights returned
on each touchpoint to the matching categories.
funding, growth, product, go_to_market, team, operations, financial_health, marketing, governance, exit, other Sort order. May be occurredAt, when the underlying activity
happened, or updatedAt, when the touchpoint last changed
(content edits, insights re-derived as new activity arrived).
Both newest first. Page tokens are only valid for the sort they
were issued under.
occurredAt, updatedAt 
