Use when a Solana-side agent needs a cheap operational context check at the start of a run
Use when a Solana-side agent needs a cheap operational context check at the start of a run or task, as often as it likes. Returns the current UTC time (ISO and unix) plus the latest x402 Bazaar pulse (resource, seller and 30-day call totals, top services, networks) with source evidence and whether this paying wallet has called before. $0.005 per call via MPP on Tempo, x402 on Solana or x402 on Base; no accounts.
5000 (raw units)
price
5
calls / 30d
2
unique payers
2026-09-14
updated
Provider
api.oblique.markets · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "5000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"bazaar_pulse": {
"as_of": "2026-09-01",
"networks": [
"eip155:8453",
"solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp"
],
"top_services": [
{
"calls_30d": 250,
"listings": 3,
"name": "bazaar-pulse",
"payers_30d": 18
}
],
"totals": {
"calls_30d": 1850,
"resources": 42,
"sellers": 12
}
},
"evidence": {
"first_seen": "2026-09-02T12:00:00.000Z",
"generated_at": "2026-09-02T12:34:56.000Z",
"is_repeat_payer": true,
"measurement": "settlement_event rows for this endpoint and payer before this call",
"payer": "AisyQi7zL7cR3q6sftsv7aVAcLGKb5PR23u3nwwBtaJy",
"payment_network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"prior_calls": 1,
"snapshot_date": "2026-09-01",
"source": "oblique-market D1 completed Bazaar snapshot"
},
"unix_time": 1788352496,
"utc_time": "2026-09-02T12:34:56.000Z"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"bazaar_pulse": {
"properties": {
"as_of": {
"type": "string"
},
"networks": {
"items": {
"type": "string"
},
"type": "array"
},
"top_services": {
"items": {
"properties": {
"calls_30d": {
"type": "integer"
},
"listings": {
"type": "integer"
},
"name": {
"type": "string"
},
"payers_30d": {
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"totals": {
"properties": {
"calls_30d": {
"type": "integer"
},
"resources": {
"type": "integer"
},
"sellers": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"evidence": {
"properties": {
"first_seen": {
"type": "string"
},
"generated_at": {
"type": "string"
},
"is_repeat_payer": {
"type": "boolean"
},
"measurement": {
"type": "string"
},
"payer": {
"type": "string"
},
"payment_network": {
"type": "string"
},
"prior_calls": {
"type": "integer"
},
"snapshot_date": {
"type": "string"
},
"source": {
"type": "string"
}
},
"type": "object"
},
"unix_time": {
"type": "integer"
},
"utc_time": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.oblique.markets/api/v1/paid/solana-ops-context" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.oblique.markets/api/v1/paid/solana-ops-context");
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://api.oblique.markets/api/v1/paid/solana-ops-context")
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/537.json, and this resource appears in /discovery/resources and /discovery/search.