List bounty submissions
curl --request GET \
--url https://api.identityhub.app/bounties/{bountyId}/submissionsimport requests
url = "https://api.identityhub.app/bounties/{bountyId}/submissions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.identityhub.app/bounties/{bountyId}/submissions', 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/bounties/{bountyId}/submissions",
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/bounties/{bountyId}/submissions"
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/bounties/{bountyId}/submissions")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.identityhub.app/bounties/{bountyId}/submissions")
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": "sub_001",
"title": "TON Smart Contract Tutorial",
"description": "Here is my tutorial covering TOLK and deployment.",
"fieldValues": [
{
"label": "GitHub",
"type": "url",
"value": "https://github.com/example/ton-tutorial"
}
],
"additionalLinks": [
{
"name": "Twitter",
"value": "https://twitter.com/example"
},
{
"name": "Blog post",
"value": "https://example.com/blog/ton-tutorial"
}
],
"imageUrl": "https://cdn.identityhub.app/bounties/bounty_001/submissions/sub_001.webp",
"status": "PENDING",
"moderationReason": null,
"prizePlace": null,
"commentCount": 3,
"clapCount": 15,
"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"
}
]
},
"makers": [
{
"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-25T08:00:00.000Z",
"updatedAt": "2026-03-25T08:00:00.000Z"
}
],
"total": 123,
"page": 123,
"pageSize": 123,
"totalPages": 123,
"hasMore": true
}
}{
"success": false,
"error": "User not found",
"code": "NOT_FOUND"
}{
"success": false,
"error": "User not found",
"code": "NOT_FOUND"
}Bounties
List bounty submissions
Returns paginated submissions for a bounty. Only available when submissions are visible.
GET
/
bounties
/
{bountyId}
/
submissions
List bounty submissions
curl --request GET \
--url https://api.identityhub.app/bounties/{bountyId}/submissionsimport requests
url = "https://api.identityhub.app/bounties/{bountyId}/submissions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.identityhub.app/bounties/{bountyId}/submissions', 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/bounties/{bountyId}/submissions",
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/bounties/{bountyId}/submissions"
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/bounties/{bountyId}/submissions")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.identityhub.app/bounties/{bountyId}/submissions")
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": "sub_001",
"title": "TON Smart Contract Tutorial",
"description": "Here is my tutorial covering TOLK and deployment.",
"fieldValues": [
{
"label": "GitHub",
"type": "url",
"value": "https://github.com/example/ton-tutorial"
}
],
"additionalLinks": [
{
"name": "Twitter",
"value": "https://twitter.com/example"
},
{
"name": "Blog post",
"value": "https://example.com/blog/ton-tutorial"
}
],
"imageUrl": "https://cdn.identityhub.app/bounties/bounty_001/submissions/sub_001.webp",
"status": "PENDING",
"moderationReason": null,
"prizePlace": null,
"commentCount": 3,
"clapCount": 15,
"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"
}
]
},
"makers": [
{
"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-25T08:00:00.000Z",
"updatedAt": "2026-03-25T08:00:00.000Z"
}
],
"total": 123,
"page": 123,
"pageSize": 123,
"totalPages": 123,
"hasMore": true
}
}{
"success": false,
"error": "User not found",
"code": "NOT_FOUND"
}{
"success": false,
"error": "User not found",
"code": "NOT_FOUND"
}Path Parameters
Query Parameters
Page number (1-based)
Required range:
1 <= x <= 9007199254740991Items per page (1-100)
Required range:
1 <= x <= 100