List conversions
curl --request GET \
--url https://api-stage.bitrobot.ai/subnets/{subnet_id}/conversions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api-stage.bitrobot.ai/subnets/{subnet_id}/conversions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api-stage.bitrobot.ai/subnets/{subnet_id}/conversions', 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-stage.bitrobot.ai/subnets/{subnet_id}/conversions",
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-stage.bitrobot.ai/subnets/{subnet_id}/conversions"
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-stage.bitrobot.ai/subnets/{subnet_id}/conversions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-stage.bitrobot.ai/subnets/{subnet_id}/conversions")
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{
"status": "success",
"data": {
"conversions": [
{
"conversion_id": "01ARZ3NDEKTSV4RRFFQ69G5FAZ",
"converted_at": "2026-03-12T00:00:00Z",
"period_started_at": "2026-03-11T00:00:00Z",
"period_ended_at": "2026-03-12T00:00:00Z",
"total_subnet_points_in_pool": 58000,
"gross_bolts_allocation": 10000,
"total_bolts_distributed": 10000,
"user_bolts_distributed": 9000,
"owner_bolts_distributed": 1000,
"user_breakdown": [
{
"wallet_address": "HN7cABqLq46Es1jh92dQQisAq662SmxELLLsHHe4YWrH",
"user_id": "01HQXK5V7YWQZ8NGQB2RJVT9MS",
"subnet_points": 1200,
"share_percentage": 2.07,
"bolts_earned": 206.9
},
{
"wallet_address": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
"user_id": "01HQXK6A2BWPN3KGQC4SJWU8NT",
"subnet_points": 800,
"share_percentage": 1.38,
"bolts_earned": 137.93
}
]
}
],
"pagination": {
"page": 1,
"limit": 50,
"total": 45
}
}
}{
"error": "Invalid or missing API key"
}Subnets
List conversions
View the history of Subnet Points to BitRobot Bolts conversions for your subnet. Each entry represents a single conversion event (e.g., one period’s distribution).
GET
/
subnets
/
{subnet_id}
/
conversions
List conversions
curl --request GET \
--url https://api-stage.bitrobot.ai/subnets/{subnet_id}/conversions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api-stage.bitrobot.ai/subnets/{subnet_id}/conversions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api-stage.bitrobot.ai/subnets/{subnet_id}/conversions', 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-stage.bitrobot.ai/subnets/{subnet_id}/conversions",
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-stage.bitrobot.ai/subnets/{subnet_id}/conversions"
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-stage.bitrobot.ai/subnets/{subnet_id}/conversions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-stage.bitrobot.ai/subnets/{subnet_id}/conversions")
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{
"status": "success",
"data": {
"conversions": [
{
"conversion_id": "01ARZ3NDEKTSV4RRFFQ69G5FAZ",
"converted_at": "2026-03-12T00:00:00Z",
"period_started_at": "2026-03-11T00:00:00Z",
"period_ended_at": "2026-03-12T00:00:00Z",
"total_subnet_points_in_pool": 58000,
"gross_bolts_allocation": 10000,
"total_bolts_distributed": 10000,
"user_bolts_distributed": 9000,
"owner_bolts_distributed": 1000,
"user_breakdown": [
{
"wallet_address": "HN7cABqLq46Es1jh92dQQisAq662SmxELLLsHHe4YWrH",
"user_id": "01HQXK5V7YWQZ8NGQB2RJVT9MS",
"subnet_points": 1200,
"share_percentage": 2.07,
"bolts_earned": 206.9
},
{
"wallet_address": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
"user_id": "01HQXK6A2BWPN3KGQC4SJWU8NT",
"subnet_points": 800,
"share_percentage": 1.38,
"bolts_earned": 137.93
}
]
}
],
"pagination": {
"page": 1,
"limit": 50,
"total": 45
}
}
}{
"error": "Invalid or missing API key"
}Authorizations
API key authentication. Your API key should start with brb_.
Example: Authorization: Bearer brb_1234567890abcdef
Path Parameters
The unique identifier of the subnet (ULID format)
Pattern:
^[0-9A-HJKMNP-TV-Z]{26}$Query Parameters
Filter conversions from this date (ISO 8601)
Filter conversions until this date (ISO 8601)
Page number for pagination
Required range:
x >= 1Results per page
Required range:
1 <= x <= 200