Use when an agent needs recent Solana token-flow activity for one wallet or toke
Use when an agent needs recent Solana token-flow activity for one wallet or token mint without an indexer account: which tokens moved, in which direction, with whom, and whether a public DEX program was involved. Returns normalized per-transaction flows (mint, owner, signed delta, decimals), counterparties, an activity read (transfer, swap, mint_burn), program labels, block time and slot, RPC provenance, freshness and a receipt with repeat-payer evidence. $0.02 per call via x402 on Solana or Bas
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
POST https://api.oblique.markets/api/v1/paid/token-flow-activity
| Category | Market data |
|---|---|
| Provider host | api.oblique.markets |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 5 from 2 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)
{
"body": {
"address": "Solana wallet owner or \u2026"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"activity": {
"enum": [
"any",
"transfer",
"swap",
"mint_burn"
],
"type": "string"
},
"address": {
"type": "string"
},
"before": {
"type": "string"
},
"direction": {
"enum": [
"any",
"in",
"out"
],
"type": "string"
},
"limit": {
"type": "integer"
},
"mint": {
"type": "string"
},
"window_hours": {
"type": "integer"
}
},
"required": [
"address"
],
"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": {
"activity": {
"items": {
"type": "object"
},
"type": "array"
},
"chain": {
"type": "string"
},
"cursor": {
"type": "object"
},
"filters": {
"type": "object"
},
"freshness": {
"type": "object"
},
"partial": {
"type": "boolean"
},
"receipt": {
"type": "object"
},
"returned": {
"type": "integer"
},
"scanned": {
"type": "integer"
},
"subject": {
"type": "object"
},
"window": {
"type": "object"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}