Calculators
Airdrop allocation value calculator API
Estimate an airdrop allocation and its USD value from a points share: allocation = (yourPoints/totalPoints)·totalSupply·airdropPct, value = allocation·price. Deterministic pro-rata math. Answers 'how much is my airdrop worth','allocation from points','value of a 10% airdrop share'.
Price$0.01per request
MethodPOST
Route/v1/calc/cryptocalc-airdrop-value
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calccryptoairdropallocationtokenomicspointsvaluationdefi
API URL
Integration docshttps://x402.hexl.dev/v1/calc/cryptocalc-airdrop-valueExample request
{
"yourPoints": 5000,
"totalPoints": 10000000,
"totalSupply": 1000000000,
"airdropPct": 0.1,
"tokenPrice": 0.25
}Example response
{
"formula": "allocation = (yourPoints/totalPoints)·totalSupply·airdropPct; value = allocation·price",
"pointsShare": 0.0005,
"airdropPoolTokens": 100000000,
"allocationTokens": 50000,
"tokenPrice": 0.25,
"valueUsd": 12500
}Input schema
{
"type": "object",
"required": [
"yourPoints",
"totalPoints",
"totalSupply",
"airdropPct",
"tokenPrice"
],
"properties": {
"yourPoints": {
"type": "number",
"examples": [
5000
]
},
"totalPoints": {
"type": "number",
"examples": [
10000000
]
},
"totalSupply": {
"type": "number",
"examples": [
1000000000
]
},
"airdropPct": {
"type": "number",
"description": "fraction of supply airdropped (0-1)",
"examples": [
0.1
]
},
"tokenPrice": {
"type": "number",
"examples": [
0.25
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}