List points history
curl --request GET \
--url https://api-stage.bitrobot.ai/subnets/{subnet_id}/points/history \
--header 'Authorization: Bearer <token>'import requests
url = "https://api-stage.bitrobot.ai/subnets/{subnet_id}/points/history"
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}/points/history', 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}/points/history",
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}/points/history"
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}/points/history")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-stage.bitrobot.ai/subnets/{subnet_id}/points/history")
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": {
"events": [
{
"ledger_id": "01ARZ3NDEKTSV4RRFFQ69G5FAX",
"event_type": "grant",
"wallet_address": "HN7cABqLq46Es1jh92dQQisAq662SmxELLLsHHe4YWrH",
"user_id": "01HQXK5V7YWQZ8NGQB2RJVT9MS",
"points": 100,
"reason": "Task completion bonus",
"client_ref": "task-001",
"task_run_id": null,
"created_at": "2026-03-12T14:30:00Z"
},
{
"ledger_id": "01ARZ3NDEKTSV4RRFFQ69G5FAY",
"event_type": "revocation",
"wallet_address": "HN7cABqLq46Es1jh92dQQisAq662SmxELLLsHHe4YWrH",
"user_id": "01HQXK5V7YWQZ8NGQB2RJVT9MS",
"points": -50,
"reason": "Duplicate grant correction",
"client_ref": "revoke-task-001",
"task_run_id": null,
"created_at": "2026-03-12T15:00:00Z"
},
{
"ledger_id": "01ARZ3NDEKTSV4RRFFQ69G5FB0",
"event_type": "grant",
"wallet_address": "HN7cABqLq46Es1jh92dQQisAq662SmxELLLsHHe4YWrH",
"user_id": "01HQXK5V7YWQZ8NGQB2RJVT9MS",
"points": 120,
"reason": "VRW points for task run",
"client_ref": null,
"task_run_id": "01BXC4MDEKTSV4RRFFQ69G5FBW",
"created_at": "2026-03-12T16:00:00Z"
}
],
"pagination": {
"page": 1,
"limit": 50,
"total": 1547
}
}
}{
"error": "Invalid or missing API key"
}Subnets
List points history
View the full history of Subnet Points grants and revocations for your subnet. Filterable by user and date range.
GET
/
subnets
/
{subnet_id}
/
points
/
history
List points history
curl --request GET \
--url https://api-stage.bitrobot.ai/subnets/{subnet_id}/points/history \
--header 'Authorization: Bearer <token>'import requests
url = "https://api-stage.bitrobot.ai/subnets/{subnet_id}/points/history"
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}/points/history', 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}/points/history",
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}/points/history"
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}/points/history")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-stage.bitrobot.ai/subnets/{subnet_id}/points/history")
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": {
"events": [
{
"ledger_id": "01ARZ3NDEKTSV4RRFFQ69G5FAX",
"event_type": "grant",
"wallet_address": "HN7cABqLq46Es1jh92dQQisAq662SmxELLLsHHe4YWrH",
"user_id": "01HQXK5V7YWQZ8NGQB2RJVT9MS",
"points": 100,
"reason": "Task completion bonus",
"client_ref": "task-001",
"task_run_id": null,
"created_at": "2026-03-12T14:30:00Z"
},
{
"ledger_id": "01ARZ3NDEKTSV4RRFFQ69G5FAY",
"event_type": "revocation",
"wallet_address": "HN7cABqLq46Es1jh92dQQisAq662SmxELLLsHHe4YWrH",
"user_id": "01HQXK5V7YWQZ8NGQB2RJVT9MS",
"points": -50,
"reason": "Duplicate grant correction",
"client_ref": "revoke-task-001",
"task_run_id": null,
"created_at": "2026-03-12T15:00:00Z"
},
{
"ledger_id": "01ARZ3NDEKTSV4RRFFQ69G5FB0",
"event_type": "grant",
"wallet_address": "HN7cABqLq46Es1jh92dQQisAq662SmxELLLsHHe4YWrH",
"user_id": "01HQXK5V7YWQZ8NGQB2RJVT9MS",
"points": 120,
"reason": "VRW points for task run",
"client_ref": null,
"task_run_id": "01BXC4MDEKTSV4RRFFQ69G5FBW",
"created_at": "2026-03-12T16:00:00Z"
}
],
"pagination": {
"page": 1,
"limit": 50,
"total": 1547
}
}
}{
"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 by Solana wallet address
Filter by BitRobot user ID
Filter by task run ID. Returns the points a task_validate paid out for that run
Filter events from this date (ISO 8601)
Filter events until this date (ISO 8601)
Page number for pagination
Required range:
x >= 1Results per page
Required range:
1 <= x <= 200