API request: /api/v1/explorer/queries/run-async
API request: /api/v1/explorer/queries/run-async
10000 (raw units)
price
27
calls / 30d
3
unique payers
2026-09-14
updated
Provider
agents.allium.so · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x699124df96b0638e19e7ff0cb1b45635abfc2626",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 1789415408
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GN3F7v5GBma1MNPbwwHnfaDnUUjFC3neeRuGKhKLcjyg",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 1789415408
},
{
"scheme": "exact",
"network": "eip155:196",
"payTo": "0x61Fdbe66c1AEaF491b8e121C83070aa750DDCada",
"asset": "0x74b7f16337b8972027f6196a17a631ac6de26d22",
"amount": "10000",
"maxTimeoutSeconds": 1789415408
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0xF5B59aA4D23621B382Ac56465e2a78432CE768CA",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cc03d5c3359",
"amount": "10000",
"maxTimeoutSeconds": 1789415408
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"parameters": {
"sql": "SELECT * FROM crosschain.metrics.overview LIMIT 10;"
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"run_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"parameters": {
"additionalProperties": {
"type": "string"
},
"description": "Key-value map of query parameter substitutions",
"type": "object"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"bodyType",
"body",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://agents.allium.so/api/v1/explorer/queries/run-async" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agents.allium.so/api/v1/explorer/queries/run-async");
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://agents.allium.so/api/v1/explorer/queries/run-async")
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/4887.json, and this resource appears in /discovery/resources and /discovery/search.