slamai.dev
https://slamai.dev/chain/transfersShares a payout wallet with 6 other endpoints — its adoption is attributed from that shared wallet's traffic, not earned exclusively.
Returns token transfers across the entire blockchain, with optional filtering by block range or timestamp range.
Reliability & health
Uptime and response time from our own unpaid probes, plus the reliability score built from them.
Uptime
0.0% avgResponse time
Data table
| Bucket | Uptime | Probes | Response time |
|---|---|---|---|
| 8/15/2026, 12:00:00 AM | 0% | 1 | — |
| 8/16/2026, 12:00:00 AM | 0% | 1 | — |
| 8/17/2026, 1:00:00 AM | 0% | 1 | — |
| 8/18/2026, 1:00:00 AM | 0% | 1 | — |
| 8/19/2026, 1:00:00 AM | 0% | 1 | — |
| 8/20/2026, 1:00:00 AM | 0% | 1 | — |
| 8/21/2026, 1:00:00 AM | 0% | 1 | — |
- Availability
- 0
- Latency
- not yet measured
- Security
- 100
- Transparency
- 55
- Activity
- 6
How often it was reachable when we probed it (weight 35%).
How quickly it answers when it is up — fast scores high (weight 20%).
Whether it serves over working TLS / https (weight 15%).
Whether the operator disclosed what it does — description, schema, identity (weight 15%).
Observed on-chain payments to this endpoint's wallet — transactions, volume, and distinct paying wallets over the last month (weight 15%; not yet measured when we have not seen its wallet settle).
Confidence 58% — how much probe evidence backs this score. A thin history is flagged, not hidden.
See the scoring methodology for exactly how each number is computed.
Payment
- Currencies
- USDC
- Networks
- base
- Facilitator
- unknown
- SDK
- unknown
Operator
- Company
- inferred — unknown
- Jurisdiction
- —
- Registrar
- —
- Domain registered
- —
- Hosting network
- —
- Hosting country
- —
Operator context is derived from public RDAP/TLS records and unverified. Company and country are only available for endpoints that publish them (an OV/EV TLS certificate or a non-redacted domain record); most endpoints are CDN-fronted and disclose neither.
On-chain activity (base)
Payments per day
last payment 8/20/2026Data table
| Day | Payments | Volume (USD) | Paying wallets |
|---|---|---|---|
| 7/29/2026 | 2 | 0 | 1 |
| 7/30/2026 | 1 | 0 | 1 |
| 7/31/2026 | 5 | 0.01 | 1 |
| 8/1/2026 | 2 | 0 | 1 |
| 8/7/2026 | 1 | 0 | 1 |
| 8/8/2026 | 4 | 0 | 3 |
| 8/9/2026 | 2 | 0 | 1 |
| 8/11/2026 | 1 | 0 | 1 |
| 8/14/2026 | 1 | 0 | 1 |
| 8/18/2026 | 1 | 0 | 1 |
| 8/20/2026 | 2 | 0 | 2 |
This payout wallet is shared: figures cover all 7 endpoints paid at it, since payments cannot be attributed to one of them. Only payments settled on chains and facilitators we index.
Linked by wallet — likely same operator
On-chain agent identity and the x402 endpoint that shares its settlement wallet.
Response schema
{
"input": {
"description": "Returns token transfers across the entire blockchain, with optional filtering by block range or timestamp range.",
"discoverable": true,
"method": "GET",
"parameters": {
"blockchain": {
"description": "The blockchain to query",
"in": "query",
"required": true,
"schema": {
"enum": [
"ethereum",
"base"
],
"type": "string"
}
},
"estimate_cost": {
"description": "When true, returns the SLAM token cost only, without actual data.",
"in": "query",
"required": false,
"schema": {
"type": "boolean"
}
},
"num": {
"description": "The maximum number of transfer records to return. Maximum: 1000.",
"in": "query",
"required": false,
"schema": {
"format": "int32",
"type": "integer"
}
},
"order": {
"description": "Sort order for results: asc (oldest first) or desc (newest first).",
"in": "query",
"required": false,
"schema": {
"enum": [
"asc",
"desc"
],
"type": "string"
}
},
"start_block": {
"description": "Block number to start the search from (inclusive). Defaults to the latest block in desc order, or the genesis block in asc order.",
"in": "query",
"required": false,
"schema": {
"format": "int32",
"type": "integer"
}
},
"start_log_index": {
"description": "Log index within the starting block to resume pagination or refine the starting point.",
"in": "query",
"required": false,
"schema": {
"format": "int32",
"type": "integer"
}
},
"start_timestamp": {
"description": "Start searching from this UTC timestamp (inclusive). Overrides start_block when provided.",
"in": "query",
"required": false,
"schema": {
"format": "date-time",
"type": "string"
}
}
},
"requestBody": null,
"type": "http"
},
"output": {
"content": {
"application/json": {
"schema": {
"oneOf": [
{
"properties": {
"chain": {
"description": "The blockchain network name (e.g., 'base').",
"type": "string"
},
"cursor": {
"properties": {
"start_block": {
"description": "The block number at which to continue fetching results.",
"format": "int32",
"type": "integer"
},
"start_log_index": {
"description": "The log index within the block at which to continue.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"slam": {
"description": "The SLAM token cost for this API call.",
"format": "double",
"type": "number"
},
"transfers": {
"description": "List of token transfer records matching the query.",
"items": {
"properties": {
"amount": {
"properties": {
"decimals": {
"description": "Normalized amount using token’s decimals.",
"format": "double",
"type": "number"
},
"raw": {
"description": "Raw transfer amount (unadjusted).",
"format": "double",
"type": "number"
}
},
"type": "object"
},
"from": {
"properties": {
"address": {
"description": "Wallet address.",
"type": "string"
},
"labels": {
"description": "Optional tags or labels describing the wallet.",
"nullable": true,
"type": "string"
},
"name": {
"description": "Optional human-readable label for the wallet.",
"nullable": true,
"type": "string"
}
},
"type": "object"
},
"to": {
"properties": {
"address": {
"description": "Wallet address.",
"type": "string"
},
"labels": {
"description": "Optional tags or labels describing the wallet.",
"nullable": true,
"type": "string"
},
"name": {
"description": "Optional human-readable label for the wallet.",
"nullable": true,
"type": "string"
}
},
"type": "object"
},
"token": {
"properties": {
"address": {
"description": "Token contract address.",
"type": "string"
},
"name": {
"description": "Full token name.",
"type": "string"
},
"symbol": {
"description": "Token symbol.",
"type": "string"
}
},
"type": "object"
},
"transaction": {
"properties": {
"block": {
"description": "Block number containing the transaction.",
"format": "int32",
"type": "integer"
},
"hash": {
"description": "Transaction hash.",
"type": "string"
},
"log_index": {
"description": "Log index for this transfer within the block.",
"format": "int32",
"type": "integer"
},
"method": {
"description": "Decoded contract method name (if available).",
"nullable": true,
"type": "string"
},
"utc": {
"description": "UTC timestamp of the transaction (ISO 8601 format).",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
{
"properties": {
"slam": {
"format": "double",
"type": "number"
}
},
"type": "object"
}
]
}
}
},
"description": "OK",
"status": 200
}
}