Fundamentals profile of a cryptocurrency allocation from True Value Rankings: the allocati
Fundamentals profile of a cryptocurrency allocation from True Value Rankings: the allocation-weighted scores for the 8 fundamental metrics, each holding's TVR Score and valuation category, and the portfolio TVR Score computed by TVR's scoring engine (the same calculation as the site's what-if simulator). Scores only; no prices. $0.08 USDC per call. Educational model output, not a recommendation.
80000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
truevaluerankings.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xcB1AAE940c1Adfd1560962Ddda27d2ae4d951620",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "80000",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"portfolio": [
{
"allocation": 60,
"coin": "BTC"
},
{
"allocation": 25,
"coin": "ETH"
},
{
"allocation": 15,
"coin": "XMR"
}
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"blended_metrics": {
"adoption": 86.3,
"economic_model": 71.4,
"legal_clarity": 75.4,
"liquidity": 87.6,
"longevity": 86.2,
"network_security": 74.9,
"privacy": 30.5,
"technical_dev": 82.6
},
"holdings": [
{
"allocation_pct": 60,
"name": "Bitcoin",
"symbol": "BTC",
"tvr_score": 80,
"valuation": "undervalued"
}
],
"portfolio_tvr_score": 74.6,
"product": "portfolio_analysis",
"success": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"portfolio": {
"description": "Holdings: each a covered coin (ticker or name) and an allocation above 0. Allocations are normalised to 100%.",
"items": {
"properties": {
"allocation": {
"exclusiveMinimum": 0,
"type": "number"
},
"coin": {
"type": "string"
}
},
"required": [
"coin",
"allocation"
],
"type": "object"
},
"maxItems": 50,
"minItems": 1,
"type": "array"
}
},
"required": [
"portfolio"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}
}Use it
curl
curl "https://truevaluerankings.com/premium/portfolio-analysis" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://truevaluerankings.com/premium/portfolio-analysis");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://truevaluerankings.com/premium/portfolio-analysis")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6737.json, and this resource appears in /discovery/resources and /discovery/search.