OUTCOME · Inspect
What changes
Read-only projection; it grants no mutation, settlement, traffic, or authority change.
v2Price feeds
/api/v2/price-feeds/{feed_uuid}PURPOSE + BUSINESS CONTEXT
WHEN THIS CALL IS USEFUL
Call this after selecting a feed identifier to inspect its exact instrument, provider composition, normalization, cadence, quality, and failover policy before consuming observations.
OUTCOME · Inspect
Read-only projection; it grants no mutation, settlement, traffic, or authority change.
WHY IT MATTERS
ISOLATION + AUTHORITY
Instrument, provider, observation, signature, hash-chain, aggregation, composite owner, subscription, delivery, billing, valuation, market, and trading boundaries remain distinct. A feed, snapshot, replay, plan, or subscription supplies data only and grants no oracle-finality, valuation approval, publisher, order, matching, settlement, or trading authority.
BEFORE YOU CALL
WHAT TO DO NEXT
AGENT GUIDANCE
The exact deployed parameters, schemas, responses, security requirements, and Hybrid-Chain agent metadata are authoritative at this operation's production OpenAPI JSON Pointer. The readable tables below add integration guidance; the deployed OpenAPI controls if guidance and the machine contract ever differ.
Open the authoritative production contract ↗EXTENDED INTEGRATION GUIDANCE
Examples illustrate integration intent; the referenced OpenAPI operation and component schemas define the executable shape.
PARAMETERS
AuthorizationheaderRequiredBearer tokenCredential containing the pricing:read scope.EXAMPLEBearer hc_live_…
feed_uuidpathRequiredidentifierStable feed identifier returned by the collection route.EXAMPLE8c1490adbe524bb79b8be0618e58fe55
RESPONSES
{
"feed_id": "8c1490adbe524bb79b8be0618e58fe55",
"name": "BTC / USD composite",
"mode": "AGGREGATED",
"cadence_ms": 1000,
"schema_version": "price-evidence-v1",
"is_public": true,
"status": "ACTIVE",
"instrument": {
"instrument_id": "56a00e46cfbd4a09a4b087d052fd64be",
"symbol": "BTC-USD",
"base_asset": "BTC",
"quote_asset": "USD",
"asset_class": "DIGITAL_ASSET"
},
"policy": {
"method": "WEIGHTED_MEDIAN",
"staleness_threshold_ms": 15000,
"min_sources": 2,
"max_deviation_bps": "250",
"failover_mode": "ALLOW_SINGLE"
},
"sources": [
{
"provider_id": "0aadf922185145e48e7c87cf3d2759ec",
"provider_code": "provider-a",
"provider_name": "Provider A",
"provider_symbol": "BTCUSD",
"weight": "1"
},
{
"provider_id": "a754639436a644cf8437da4cfab94242",
"provider_code": "provider-b",
"provider_name": "Provider B",
"provider_symbol": "XBT/USD",
"weight": "1"
}
]
}{
"code": "price_feed_not_found",
"message": "The feed is not visible to the authenticated workspace."
}price_feed_not_found{
"code": "invalid_credentials",
"message": "The bearer credential is missing, expired, or invalid."
}invalid_credentials{
"code": "insufficient_scope",
"message": "The credential lacks pricing:read or the subscription does not entitle this replay."
}insufficient_scope{
"code": "price_feeds_unavailable",
"message": "The authoritative Core pricing projection is unavailable."
}price_feeds_unavailableOPERATIONAL NOTES
This route is implemented in canonical gateway source and appears in the production OpenAPI snapshot observed 2026-09-11T06:35:11.572Z. Authentication, tenant, feature, venue, and market policy still apply.
Verify the exact production OpenAPI operation ↗Return to the V2 directory ↗