Risk x-ray for a whole watchlist or portfolio in one call
Risk x-ray for a whole watchlist or portfolio in one call. Pass `?tickers=AAPL,MSFT,NVDA` (up to 25; optional `?weights=`). Returns per-holding price, sector and cap, plus portfolio concentration (top-weight, Herfindahl, diversification score), sector concentration, market-cap distribution, weighted day performance and risk flags. Replaces dozens of per-holding calls. From x402stock
Answeringour last check, 2026-09-24
1 of 1checks answered this week
445 msmedian answer time
$0.25listed price per call
$0.25price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://x402stock.xyz/api/v1/portfolio/xray
| Category | Market data |
|---|---|
| Provider host | x402stock.xyz |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.25 | 445 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"tickers": "AAPL,MSFT,NVDA"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"tickers": {
"minLength": 1,
"type": "string"
},
"weights": {
"type": "string"
}
},
"required": [
"tickers"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"as_of": {
"type": "string"
},
"disclaimer": {
"type": "string"
},
"holding_count": {
"type": "number"
},
"holdings": {
"items": {
"additionalProperties": false,
"properties": {
"cap_bucket": {
"type": "string"
},
"change_percent": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"market_cap": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"price": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"sector": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"ticker": {
"type": "string"
},
"weight": {
"type": "number"
}
},
"required": [
"ticker",
"name",
"price",
"change_percent",
"market_cap",
"sector",
"cap_bucket",
"weight"
],
"type": "object"
},
"type": "array"
},
"sections": {
"additionalProperties": {
"type": "string"
},
"propertyNames": {
"type": "string"
},
"type": "object"
},
"source": {
"const": "x402stock",
"type": "string"
},
"summary": {
"additionalProperties": false,
"properties": {
"concentration": {
"additionalProperties": false,
"properties": {
"diversification_score": {
"type": "number"
},
"hhi": {
"type": "number"
},
"label": {
"type": "string"
},
"top3_weight": {
"type": "number"
},
"top_weight": {
"type": "number"
}
},
"required": [
"top_weight",
"top3_weight",
"hhi",
"diversification_score",
"label"
],
"type": "object"
},
"day_change_percent": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"market_cap_distribution": {
"additionalProperties": {
"type": "number"
},
"propertyNames": {
"type": "string"
},
"type": "object"
},
"performance": {
"additionalProperties": false,
"properties": {
"best": {
"anyOf": [
{
"additionalProperties": false,
"properties": {
"change_percent": {
"anyOf": [
{
"type": "number"
},