curl --request GET \
--url https://api.streamkap.com/topics/details/grouped \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.streamkap.com/topics/details/grouped"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.streamkap.com/topics/details/grouped', 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.streamkap.com/topics/details/grouped",
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://api.streamkap.com/topics/details/grouped"
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://api.streamkap.com/topics/details/grouped")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.streamkap.com/topics/details/grouped")
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{
"result": [
{
"group_id": "<string>",
"entity": {
"entity_id": "<string>",
"entity_type": "sources",
"entity_name": "<string>",
"connector": "alloydb",
"connector_display_name": "<string>"
},
"topic_count": 123,
"topics": {
"result": [
{
"id": "<string>",
"name": "<string>",
"entity": {
"entity_type": "sources",
"entity_id": "<string>",
"name": "<string>",
"connector": "alloydb",
"topic_ids": [
"<string>"
],
"topic_db_ids": [
"<string>"
],
"display_name": "<string>",
"filtered_snapshot_language": "<string>"
},
"prefix": "<string>",
"serialization": {
"key_format": "unknown",
"value_format": "unknown",
"key_converter": "<string>",
"value_converter": "<string>",
"schema_registry_enabled": false
},
"tags": [
"<string>"
],
"broker_only": false
}
],
"page": 1,
"page_size": 10,
"total": 123,
"has_next": true
},
"group_type": "entity_id"
}
],
"page": 1,
"page_size": 10,
"total": 123,
"has_next": true
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}List topics grouped by connector/entity
Get topics grouped by entity_id (connector instances) with nested pagination.
Each group represents a source/transform/destination entity and contains its topics. Supports dual pagination (groups and topics within groups) and dual sorting.
Supports multiple entity types via comma-separated values (e.g., entity_type=sources,transforms). Note: group_id requires exactly one entity_type to be specified.
curl --request GET \
--url https://api.streamkap.com/topics/details/grouped \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.streamkap.com/topics/details/grouped"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.streamkap.com/topics/details/grouped', 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.streamkap.com/topics/details/grouped",
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://api.streamkap.com/topics/details/grouped"
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://api.streamkap.com/topics/details/grouped")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.streamkap.com/topics/details/grouped")
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{
"result": [
{
"group_id": "<string>",
"entity": {
"entity_id": "<string>",
"entity_type": "sources",
"entity_name": "<string>",
"connector": "alloydb",
"connector_display_name": "<string>"
},
"topic_count": 123,
"topics": {
"result": [
{
"id": "<string>",
"name": "<string>",
"entity": {
"entity_type": "sources",
"entity_id": "<string>",
"name": "<string>",
"connector": "alloydb",
"topic_ids": [
"<string>"
],
"topic_db_ids": [
"<string>"
],
"display_name": "<string>",
"filtered_snapshot_language": "<string>"
},
"prefix": "<string>",
"serialization": {
"key_format": "unknown",
"value_format": "unknown",
"key_converter": "<string>",
"value_converter": "<string>",
"schema_registry_enabled": false
},
"tags": [
"<string>"
],
"broker_only": false
}
],
"page": 1,
"page_size": 10,
"total": 123,
"has_next": true
},
"group_type": "entity_id"
}
],
"page": 1,
"page_size": 10,
"total": 123,
"has_next": true
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Filter by entity type(s). Single value (e.g., 'sources') or comma-separated (e.g., 'sources,transforms'). Valid types: sources, destinations, transforms, pipelines, manual.
name, connector, topic_count asc, desc asc, desc Filter to a specific group/entity_id. Requires exactly one entity_type when used.
Show child attributes
Show child attributes
Filter by tag IDs. Comma-separated list (e.g., 'tag1,tag2'). Use with tag_filter_operation to control AND/OR logic.
Tag filter logic: 'or' (default) matches any tag, 'and' matches all tags.
and, or Was this page helpful?