Use this to resolve companies, commodities, cryptoassets, and other underlyings by name, t
Use this to resolve companies, commodities, cryptoassets, and other underlyings by name, ticker, canonical key, UUID, platform identifier, or linked-market reference. Exact-reference results return every active directly linked market with quote provenance, Q's latest probability and paired thesis, and publication availability. Text results summarize those markets. Probabilities and theses remain tied to their exact questions.
10000 (raw units)
price
6
calls / 30d
2
unique payers
2026-09-11
updated
Provider
quotient-api-gateway.onrender.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xC3d01FD2F79d4c57aD106AB8ecc12a5dE24F97cB",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"discoverable": true,
"info": {
"input": {
"method": "GET",
"queryParams": {
"material_only": true,
"platform": "hyperliquid",
"q": "gold"
},
"type": "http"
},
"output": {
"example": {
"assets": [
{
"aliases": [
"XAU"
],
"assetKey": "commodity:gold",
"asset_type": "commodity",
"id": "13fe79af-6d3f-47fd-8e67-f0eb23cab4f9",
"identifiers": [
{
"kind": "coin",
"platform": "hyperliquid",
"value": "xyz:GOLD"
}
],
"linked_market_count": 1,
"linked_markets": [
{
"categories": [
"Commodities"
],
"clarifications": null,
"end_date": "2026-08-31T20:00:00Z",
"event": {
"id": "KXGOLD-26AUG",
"slug": null,
"title": "Gold price in August"
},
"forecast_at": "2026-08-08T14:30:00Z",
"forecast_count": 1,
"has_forecast": true,
"has_published_signal": false,
"inDispute": false,
"latest_forecast_at": "2026-08-08T14:30:00Z",
"latest_forecast_delta": 0.01,
"latest_forecast_refresh_reason": "price_move",
"latest_q_probability": 0.86,
"marketKey": "kalshi:KXGOLD-26AUG-T2500",
"marketUrl": null,
"market_odds": 0.87,
"market_odds_at_forecast": 0.84,
"market_updated_at": "2026-08-08T15:02:11Z",
"nativeEventId": "KXGOLD-26AUG",
"nativeMarketId": "KXGOLD-26AUG-T2500",
"polymarketUrl": null,
"published_signal_count": 0,
"question": "Will gold settle above $2,500 in August?",
"quotientMarketId": "kalshi:KXGOLD-26AUG-T2500",
"quotientUrl": "https://quotient.social/markets/kalshi%3AKXGOLD-26AUG-T2500",
"seriesTicker": "KXGOLD",
"signal_count": 0,
"slug": null,
"sourceUrl": null,
"tags": [
"gold"
],
"thesis": "Q expects gold to remain above the threshold through settlement.",
"venue": "kalshi",
"venue_quote": {
"freshness": "verified",
"market_id": "KXGOLD-26AUG-T2500",
"observed_at": "2026-08-31T12:00:00Z",
"quote_method": "midpoint",
"schema_version": "1",
"selected_probability": 0.87,
"venue": "kalshi",
"venue_timestamp": "2026-08-31T12:00:00Z",
"yes_ask": 0.87,
"yes_bid": 0.87,
"yes_last": null
},
"volume_24h": null
}
],
"market_summary": {
"active_market_count": 1,
"markets_with_forecast": 1,
"markets_with_published_signal": 0,
"mispriced_market_count": 0,
"mispricing_threshold_pp": 7.5
},
"name": "Gold",
"relevance": {
"matched_by": [
"graph"
],
"matched_fields": [
"asset_key"
],
"score": 0.018
},
"ticker": "GOLD"
}
],
"material_only": false,
"query": null,
"references": [
"commodity:gold"
],
"retrieval": {
"graph": "ok",
"typesense": "unconfigured"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"asset_type": {
"type": "string"
},
"material_only": {
"default": false,
"type": "boolean"
},
"platform": {
"type": "string"
},
"q": {
"type": "string"
},
"reference": {
"items": {
"maxLength": 200,
"minLength": 1,
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"queryParams"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"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://quotient-api-gateway.onrender.com/api/v1/assets/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://quotient-api-gateway.onrender.com/api/v1/assets/search");
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://quotient-api-gateway.onrender.com/api/v1/assets/search")
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/3289.json, and this resource appears in /discovery/resources and /discovery/search.