Get allocations
curl --request GET \
--url https://api.blockworks.com/token-unlocks/v1/allocations \
--header 'X-Blockworks-API-Key: <api-key>'import requests
url = "https://api.blockworks.com/token-unlocks/v1/allocations"
headers = {"X-Blockworks-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Blockworks-API-Key': '<api-key>'}};
fetch('https://api.blockworks.com/token-unlocks/v1/allocations', 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.blockworks.com/token-unlocks/v1/allocations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Blockworks-API-Key: <api-key>"
],
]);
$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.blockworks.com/token-unlocks/v1/allocations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Blockworks-API-Key", "<api-key>")
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.blockworks.com/token-unlocks/v1/allocations")
.header("X-Blockworks-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blockworks.com/token-unlocks/v1/allocations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Blockworks-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"error": null,
"data": [
{
"asset": {
"id": "97775be0-2608-4720-b7af-f85b24c7eb2d",
"name": "XRP",
"slug": "xrp",
"symbol": "XRP"
},
"genesisDate": "2012-06-01T00:00:00Z",
"projectedEndDate": "2022-06-01T00:00:00Z",
"totalAllocationUSD": 238697977801.6666,
"totalAllocationNative": 100000000000,
"cumulativeUnlockedUSD": 238697977801.6666,
"cumulativeUnlockedNative": 100000000000,
"unlocksRemainingUSD": 0,
"unlocksRemainingNative": 0,
"percentOfUnlocksCompleted": 1,
"allocationRecipientCount": 3,
"lastUpdatedAt": "2025-03-08T13:19:53.477266Z",
"allocations": [
{
"allocationRecipient": "Founders",
"totalAllocationUSD": 47739595560.33332,
"totalAllocationNative": 20000000000,
"cumulativeUnlockedUSD": 47739595560.33332,
"cumulativeUnlockedNative": 20000000000,
"unlocksRemainingUSD": 0,
"unlocksRemainingNative": 0,
"percentOfUnlocksCompleted": 1,
"description": "20% allocated to founders. Chris Larsen and Jed McCaleb recieved 9.5 billion XRP each and Aurthur Britto recieved 1 billion XRP.",
"assumptions": "",
"sources": [
{
"sourceType": "Third-party Website",
"source": "https://tokeninsight.com/en/coins/ripple/tokenomics"
}
]
},
{
"allocationRecipient": "Ripple",
"totalAllocationUSD": 190480986285.72995,
"totalAllocationNative": 79800000000,
"cumulativeUnlockedUSD": 190480986285.72995,
"cumulativeUnlockedNative": 79800000000,
"unlocksRemainingUSD": 0,
"unlocksRemainingNative": 0,
"percentOfUnlocksCompleted": 1,
"description": "79.8% allocated to Ripple. In December 2017 55 billion XRP were escrowed, with 1 billion XRP released per month.",
"assumptions": "Monthly unlocks on the first. Ripple is a private company and not a foundation.",
"sources": [
{
"sourceType": "Third-party Website",
"source": "https://tokeninsight.com/en/coins/ripple/tokenomics"
}
]
},
{
"allocationRecipient": "Airdrop",
"totalAllocationUSD": 477395955.6033332,
"totalAllocationNative": 200000000,
"cumulativeUnlockedUSD": 477395955.6033332,
"cumulativeUnlockedNative": 200000000,
"unlocksRemainingUSD": 0,
"unlocksRemainingNative": 0,
"percentOfUnlocksCompleted": 1,
"description": "0.2% allocated to airdrop.",
"assumptions": "",
"sources": [
{
"sourceType": "Third-party Website",
"source": "https://tokeninsight.com/en/coins/ripple/tokenomics"
}
]
}
]
}
]
}{
"data": "<unknown>",
"error": "invalid auth mechanism"
}{
"data": "<unknown>",
"error": "invalid auth mechanism"
}{
"data": "<unknown>",
"error": "invalid auth mechanism"
}Allocations
Get Allocations
Allocation totals for an asset, broken down by recipient, with the analyst notes and citations behind each tranche.
GET
/
token-unlocks
/
v1
/
allocations
Get allocations
curl --request GET \
--url https://api.blockworks.com/token-unlocks/v1/allocations \
--header 'X-Blockworks-API-Key: <api-key>'import requests
url = "https://api.blockworks.com/token-unlocks/v1/allocations"
headers = {"X-Blockworks-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Blockworks-API-Key': '<api-key>'}};
fetch('https://api.blockworks.com/token-unlocks/v1/allocations', 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.blockworks.com/token-unlocks/v1/allocations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Blockworks-API-Key: <api-key>"
],
]);
$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.blockworks.com/token-unlocks/v1/allocations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Blockworks-API-Key", "<api-key>")
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.blockworks.com/token-unlocks/v1/allocations")
.header("X-Blockworks-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blockworks.com/token-unlocks/v1/allocations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Blockworks-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"error": null,
"data": [
{
"asset": {
"id": "97775be0-2608-4720-b7af-f85b24c7eb2d",
"name": "XRP",
"slug": "xrp",
"symbol": "XRP"
},
"genesisDate": "2012-06-01T00:00:00Z",
"projectedEndDate": "2022-06-01T00:00:00Z",
"totalAllocationUSD": 238697977801.6666,
"totalAllocationNative": 100000000000,
"cumulativeUnlockedUSD": 238697977801.6666,
"cumulativeUnlockedNative": 100000000000,
"unlocksRemainingUSD": 0,
"unlocksRemainingNative": 0,
"percentOfUnlocksCompleted": 1,
"allocationRecipientCount": 3,
"lastUpdatedAt": "2025-03-08T13:19:53.477266Z",
"allocations": [
{
"allocationRecipient": "Founders",
"totalAllocationUSD": 47739595560.33332,
"totalAllocationNative": 20000000000,
"cumulativeUnlockedUSD": 47739595560.33332,
"cumulativeUnlockedNative": 20000000000,
"unlocksRemainingUSD": 0,
"unlocksRemainingNative": 0,
"percentOfUnlocksCompleted": 1,
"description": "20% allocated to founders. Chris Larsen and Jed McCaleb recieved 9.5 billion XRP each and Aurthur Britto recieved 1 billion XRP.",
"assumptions": "",
"sources": [
{
"sourceType": "Third-party Website",
"source": "https://tokeninsight.com/en/coins/ripple/tokenomics"
}
]
},
{
"allocationRecipient": "Ripple",
"totalAllocationUSD": 190480986285.72995,
"totalAllocationNative": 79800000000,
"cumulativeUnlockedUSD": 190480986285.72995,
"cumulativeUnlockedNative": 79800000000,
"unlocksRemainingUSD": 0,
"unlocksRemainingNative": 0,
"percentOfUnlocksCompleted": 1,
"description": "79.8% allocated to Ripple. In December 2017 55 billion XRP were escrowed, with 1 billion XRP released per month.",
"assumptions": "Monthly unlocks on the first. Ripple is a private company and not a foundation.",
"sources": [
{
"sourceType": "Third-party Website",
"source": "https://tokeninsight.com/en/coins/ripple/tokenomics"
}
]
},
{
"allocationRecipient": "Airdrop",
"totalAllocationUSD": 477395955.6033332,
"totalAllocationNative": 200000000,
"cumulativeUnlockedUSD": 477395955.6033332,
"cumulativeUnlockedNative": 200000000,
"unlocksRemainingUSD": 0,
"unlocksRemainingNative": 0,
"percentOfUnlocksCompleted": 1,
"description": "0.2% allocated to airdrop.",
"assumptions": "",
"sources": [
{
"sourceType": "Third-party Website",
"source": "https://tokeninsight.com/en/coins/ripple/tokenomics"
}
]
}
]
}
]
}{
"data": "<unknown>",
"error": "invalid auth mechanism"
}{
"data": "<unknown>",
"error": "invalid auth mechanism"
}{
"data": "<unknown>",
"error": "invalid auth mechanism"
}Authorizations
Query Parameters
Asset to look up. Accepts a slug (solana) or the asset UUID.
Example:
"solana"