Use when an agent needs base tx status
Use when an agent needs base tx status. Returns Return Base transaction success or revert state, block number, confirmations, gas used, and effective gas price for a transaction hash. $0.003.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
25 msmedian answer time
$0.003listed price per call
$0.003price it asked us
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/base-tx-status
| Category | Market data |
|---|---|
| Provider host | api.oblique.markets |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 14 from 3 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.003 | 25 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"hash": "Transaction hash, 0x-prefixed 64 hex chars"
},
"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": {
"hash": {
"description": "Transaction hash, 0x-prefixed 64 hex chars",
"type": "string"
}
},
"required": [
"hash"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"as_of": {
"type": "string"
},
"block_number": {
"type": "integer"
},
"confirmations": {
"type": "integer"
},
"effective_gas_price_wei": {
"type": "string"
},
"found": {
"type": "boolean"
},
"gas_used": {
"type": "integer"
},
"status": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}