GET/v1/markets/healthPUBLIC · NO KEY
市场健康状态
所有已接入市场的公开(无需密钥)健康状态:状态(live | warn | stale)、最后事件时间、挂单数,以及 48 桶健康条序列(48 × 30 分钟桶,约 24 小时;2 = 正常,1 = 降级,0 = 宕机)。id 是市场的关联键。
唯一完全公开、无需密钥的价格数据接口。返回每个已接入市场的 status(live / warn / stale)、listingsCount,以及用于绘制近期摄取健康走势的 healthBars 序列:48 个 30 分钟分桶(约 24 小时),最新在末尾,2 = 正常、1 = 降级、0 = 宕机。
id 是关联键:在其他接口的 markets CSV 中传入它即可把响应限定到特定平台。
Parameters
No query parameters.
Response fields
MarketHealth[]数组,每个已接入市场一条。无需密钥。
idstring
市场 id。其他接口的关联键。statusstring
live | warn | stale。lastEventAtstring (date-time)nullable
最后摄取事件;尚无事件时为 null。listingsCountinteger
该市场当前追踪的挂单数。healthBarsinteger[]
48 个 30 分钟分桶(约 24 小时),最新在末尾。图例:2 = 正常、1 = 降级、0 = 宕机。Response 200
[
{
"id": "skinport",
"status": "live",
"lastEventAt": "2026-06-23T22:01:03.281Z",
"listingsCount": 3522487,
"healthBars": [
2,
2,
2,
2,
2,
2,
2,
2
]
}
]Errors
429超出公开接口速率限制(按浏览器账号或 IP 身份计)。
5xx健康快照暂时不可用,请退避后重试。
See also各市场新鲜度
curl "https://pricing.skinpricer.com/v1/markets/health" \
-H "Authorization: ApiKey sk_live_•••••••••••"Response headers
X-RateLimit-Limit: <per-minute, set by your plan>
X-RateLimit-Remaining: <remaining this minute>
X-RateLimit-Reset: <seconds to reset>
X-Request-ID: req_xxxxxxxxxxxxxxxx