Get comments
curl --request GET \
--url https://api.identityhub.app/launches/{slug}/commentsimport requests
url = "https://api.identityhub.app/launches/{slug}/comments"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.identityhub.app/launches/{slug}/comments', 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.identityhub.app/launches/{slug}/comments",
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.identityhub.app/launches/{slug}/comments"
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.identityhub.app/launches/{slug}/comments")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.identityhub.app/launches/{slug}/comments")
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{
"success": true,
"data": {
"items": [
{
"id": "comment_001",
"parentId": null,
"content": "Great project, love the UX!",
"isPinned": false,
"isMaker": false,
"replyCount": 2,
"editedAt": null,
"user": {
"id": "usr_abc123",
"username": "tonbuilder",
"displayName": "TON Builder",
"avatar": {
"sm": "https://cdn.identityhub.app/avatars/sm.webp",
"lg": "https://cdn.identityhub.app/avatars/lg.webp"
},
"bio": "Building on TON",
"status": "ACTIVATED",
"tags": [
{
"tag": "DEVELOPER",
"tier": "GOLD"
}
]
},
"createdAt": "2026-03-17T12:00:00.000Z"
}
],
"total": 123,
"offset": 123,
"count": 123,
"hasMore": true
}
}Launches
Get comments
Offset-paginated comments. Supports threading via parentId.
GET
/
launches
/
{slug}
/
comments
Get comments
curl --request GET \
--url https://api.identityhub.app/launches/{slug}/commentsimport requests
url = "https://api.identityhub.app/launches/{slug}/comments"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.identityhub.app/launches/{slug}/comments', 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.identityhub.app/launches/{slug}/comments",
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.identityhub.app/launches/{slug}/comments"
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.identityhub.app/launches/{slug}/comments")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.identityhub.app/launches/{slug}/comments")
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{
"success": true,
"data": {
"items": [
{
"id": "comment_001",
"parentId": null,
"content": "Great project, love the UX!",
"isPinned": false,
"isMaker": false,
"replyCount": 2,
"editedAt": null,
"user": {
"id": "usr_abc123",
"username": "tonbuilder",
"displayName": "TON Builder",
"avatar": {
"sm": "https://cdn.identityhub.app/avatars/sm.webp",
"lg": "https://cdn.identityhub.app/avatars/lg.webp"
},
"bio": "Building on TON",
"status": "ACTIVATED",
"tags": [
{
"tag": "DEVELOPER",
"tier": "GOLD"
}
]
},
"createdAt": "2026-03-17T12:00:00.000Z"
}
],
"total": 123,
"offset": 123,
"count": 123,
"hasMore": true
}
}Path Parameters
Entity ID
Query Parameters
Filter by parent comment ID (for replies)
Number of items to skip
Required range:
0 <= x <= 9007199254740991Max items to return (1-100)
Required range:
1 <= x <= 100