Use when a Solana-side agent needs the current network state before sending a tr
Use when a Solana-side agent needs the current network state before sending a transaction, as often as it likes. Returns the current slot, block height and block time (unix and ISO) plus a prioritization-fee summary (min, median, p75, max in microlamports per compute unit, slots sampled, suggested fee = p75) from the public RPC, optionally scoped to up to five writable accounts. $0.002 per call via x402 on Solana or Base, or MPP on Tempo; no accounts.
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://api.oblique.markets/api/v1/paid/solana-priority-fee
| Category | Market data |
|---|---|
| Provider host | api.oblique.markets |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 7 from 4 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"accounts": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
},
"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": {
"properties": {
"accounts": {
"description": "Optional: up to 5 comma-separated base58 pubkeys; the fee sample is then limited to transactions that lock these accounts writable.",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"block_height": {
"type": "integer"
},
"block_time": {
"type": "string"
},
"block_time_unix": {
"type": "integer"
},
"chain": {
"type": "string"
},
"commitment": {
"type": "string"
},
"freshness": {
"properties": {
"cache": {
"type": "string"
},
"cache_age_seconds": {
"type": "integer"
},
"served_at": {
"type": "string"
},
"ttl_seconds": {
"type": "integer"
}
},
"type": "object"
},
"priority_fee": {
"properties": {
"accounts": {
"type": "array"
},
"basis": {
"type": "string"
},
"max": {
"type": "integer"
},
"median": {
"type": "integer"
},
"min": {
"type": "integer"
},
"p75": {
"type": "integer"
},
"scope": {
"type": "string"
},
"slot_range": {
"properties": {
"from": {
"type": "integer"
},
"to": {
"type": "integer"
}
},
"type": "object"
},
"slots_sampled": {
"type": "integer"
},
"suggested_priority_fee": {
"type": "integer"
},
"unit": {
"type": "string"
},
"zero_fee_slots": {
"type": "integer"
}
},
"type": "object"
},
"receipt": {
"properties": {
"payer": {
"type": "string"
},
"payment_network": {
"type": "string"
},
"sku": {
"type": "string"
}
},
"type": "object"
},
"retrieved_at": {
"type": "string"
},
"rpc": {
"properties": {
"endpoint_class": {
"type": "string"
},
"hosts": {
"items": {
"type": "string"
},
"type": "array"
},
"methods": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"slot": {
"type": "integer"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}