Semantic audience discovery — match a natural-language ask against what customers actually said, returning candidate people + evidence
curl --request POST \
--url http://localhost:8080/sequences/discovery/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"since": "2023-11-07T05:31:56Z",
"max_insights": 25,
"max_people": 2500,
"min_similarity": 0.5
}
'import requests
url = "http://localhost:8080/sequences/discovery/search"
payload = {
"query": "<string>",
"since": "2023-11-07T05:31:56Z",
"max_insights": 25,
"max_people": 2500,
"min_similarity": 0.5
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
query: '<string>',
since: '2023-11-07T05:31:56Z',
max_insights: 25,
max_people: 2500,
min_similarity: 0.5
})
};
fetch('http://localhost:8080/sequences/discovery/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8080",
CURLOPT_URL => "http://localhost:8080/sequences/discovery/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'query' => '<string>',
'since' => '2023-11-07T05:31:56Z',
'max_insights' => 25,
'max_people' => 2500,
'min_similarity' => 0.5
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://localhost:8080/sequences/discovery/search"
payload := strings.NewReader("{\n \"query\": \"<string>\",\n \"since\": \"2023-11-07T05:31:56Z\",\n \"max_insights\": 25,\n \"max_people\": 2500,\n \"min_similarity\": 0.5\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("http://localhost:8080/sequences/discovery/search")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"<string>\",\n \"since\": \"2023-11-07T05:31:56Z\",\n \"max_insights\": 25,\n \"max_people\": 2500,\n \"min_similarity\": 0.5\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:8080/sequences/discovery/search")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"<string>\",\n \"since\": \"2023-11-07T05:31:56Z\",\n \"max_insights\": 25,\n \"max_people\": 2500,\n \"min_similarity\": 0.5\n}"
response = http.request(request)
puts response.read_body{
"insights": [
{
"insight_id": "<string>",
"content": "<string>",
"sentiment": "<string>",
"similarity": 123,
"occurrence_count": 123,
"session_count_in_window": 123,
"people_count_in_window": 123,
"first_seen_at": "<string>",
"last_seen_at": "<string>",
"resolved_at": "<string>"
}
],
"people": [
{
"contact_id": "<string>",
"name": "<string>",
"phone_normalized": "<string>",
"email_normalized": "<string>",
"whatsapp_user_id": "<string>",
"unsubscribed": true,
"last_session_at": "<string>",
"csat_last": 123,
"matched": [
{
"insight_id": "<string>",
"session_ids": [
"<string>"
],
"session_count": 123,
"resolved_session_count": 123,
"last_session_at": "<string>"
}
]
}
],
"total_people": 123,
"truncated": true,
"since": "<string>"
}{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}Audience discovery
Semantic audience discovery — match a natural-language ask against what customers actually said, returning candidate people + evidence
Find who to enroll from a natural-language ask, matched against what customers actually said in recent sessions. Returns candidate people with evidence, no fit judgment.
POST
/
sequences
/
discovery
/
search
Semantic audience discovery — match a natural-language ask against what customers actually said, returning candidate people + evidence
curl --request POST \
--url http://localhost:8080/sequences/discovery/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"since": "2023-11-07T05:31:56Z",
"max_insights": 25,
"max_people": 2500,
"min_similarity": 0.5
}
'import requests
url = "http://localhost:8080/sequences/discovery/search"
payload = {
"query": "<string>",
"since": "2023-11-07T05:31:56Z",
"max_insights": 25,
"max_people": 2500,
"min_similarity": 0.5
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
query: '<string>',
since: '2023-11-07T05:31:56Z',
max_insights: 25,
max_people: 2500,
min_similarity: 0.5
})
};
fetch('http://localhost:8080/sequences/discovery/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8080",
CURLOPT_URL => "http://localhost:8080/sequences/discovery/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'query' => '<string>',
'since' => '2023-11-07T05:31:56Z',
'max_insights' => 25,
'max_people' => 2500,
'min_similarity' => 0.5
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://localhost:8080/sequences/discovery/search"
payload := strings.NewReader("{\n \"query\": \"<string>\",\n \"since\": \"2023-11-07T05:31:56Z\",\n \"max_insights\": 25,\n \"max_people\": 2500,\n \"min_similarity\": 0.5\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("http://localhost:8080/sequences/discovery/search")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"<string>\",\n \"since\": \"2023-11-07T05:31:56Z\",\n \"max_insights\": 25,\n \"max_people\": 2500,\n \"min_similarity\": 0.5\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:8080/sequences/discovery/search")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"<string>\",\n \"since\": \"2023-11-07T05:31:56Z\",\n \"max_insights\": 25,\n \"max_people\": 2500,\n \"min_similarity\": 0.5\n}"
response = http.request(request)
puts response.read_body{
"insights": [
{
"insight_id": "<string>",
"content": "<string>",
"sentiment": "<string>",
"similarity": 123,
"occurrence_count": 123,
"session_count_in_window": 123,
"people_count_in_window": 123,
"first_seen_at": "<string>",
"last_seen_at": "<string>",
"resolved_at": "<string>"
}
],
"people": [
{
"contact_id": "<string>",
"name": "<string>",
"phone_normalized": "<string>",
"email_normalized": "<string>",
"whatsapp_user_id": "<string>",
"unsubscribed": true,
"last_session_at": "<string>",
"csat_last": 123,
"matched": [
{
"insight_id": "<string>",
"session_ids": [
"<string>"
],
"session_count": 123,
"resolved_session_count": 123,
"last_session_at": "<string>"
}
]
}
],
"total_people": 123,
"truncated": true,
"since": "<string>"
}{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Required string length:
3 - 500Pattern:
^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$Required range:
1 <= x <= 50Required range:
1 <= x <= 5000Required range:
0 <= x <= 1Was this page helpful?