Search topics by name (autocomplete)
curl --request GET \
--url https://api.aws53.cloud/v1/intent/topics/searchimport requests
url = "https://api.aws53.cloud/v1/intent/topics/search"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.aws53.cloud/v1/intent/topics/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_URL => "https://api.aws53.cloud/v1/intent/topics/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.aws53.cloud/v1/intent/topics/search"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.aws53.cloud/v1/intent/topics/search")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aws53.cloud/v1/intent/topics/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": [
{
"topicId": 1001,
"topicName": "Example cloud platform",
"type": "b2b",
"industry": "Technology",
"category": "Cloud Computing"
}
],
"meta": {
"timestamp": "2026-01-15T12:00:00.000Z",
"request_id": "example-request"
}
}Topic discovery and filters
Search topics
Search topics using the public Orbit API
GET
/
v1
/
intent
/
topics
/
search
Search topics by name (autocomplete)
curl --request GET \
--url https://api.aws53.cloud/v1/intent/topics/searchimport requests
url = "https://api.aws53.cloud/v1/intent/topics/search"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.aws53.cloud/v1/intent/topics/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_URL => "https://api.aws53.cloud/v1/intent/topics/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.aws53.cloud/v1/intent/topics/search"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.aws53.cloud/v1/intent/topics/search")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aws53.cloud/v1/intent/topics/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": [
{
"topicId": 1001,
"topicName": "Example cloud platform",
"type": "b2b",
"industry": "Technology",
"category": "Cloud Computing"
}
],
"meta": {
"timestamp": "2026-01-15T12:00:00.000Z",
"request_id": "example-request"
}
}Query Parameters
Case-insensitive topic-name search text. SQL wildcard characters percent and underscore are accepted.
Required string length:
1 - 100Example:
"cloud"
Filter by industry name.
Maximum string length:
100Example:
"Technology"
Restrict topics to the selected classification; both matches that literal classification.
Available options:
b2b, b2c, both Example:
"b2b"
Maximum topics to return; defaults to 10 and allows up to 50.
Required range:
1 <= x <= 50Example:
10
Was this page helpful?