Read contract event logs across a strictly bounded block range with an optional
Read contract event logs across a strictly bounded block range with an optional topic0 filter and capped response count.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
291 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://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/evm_logs
| Category | Everything else |
|---|---|
| Provider host | ai-data-marketplace-1042299154756.us-central1.run.app |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 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 | 291 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"chain": "base",
"from_block": "latest",
"limit": 25,
"to_block": "latest"
},
"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"
],
"type": "string"
},
"queryParams": {
"additionalProperties": true,
"properties": {
"address": {
"description": "Contract address whose logs should be read.",
"type": "string"
},
"chain": {
"description": "base, ethereum, or arbitrum; defaults to base.",
"type": "string"
},
"from_block": {
"description": "Explicit height or latest; defaults to latest.",
"type": "string"
},
"limit": {
"description": "Maximum logs returned from 1 to 500; defaults to 100. Block ranges cannot exceed 2,000 blocks.",
"type": "integer"
},
"to_block": {
"description": "Explicit height or latest; defaults to from_block.",
"type": "string"
},
"topic0": {
"description": "Optional 32-byte event-signature topic hash.",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": true,
"properties": {
"count": {
"type": "integer"
},
"logs": {
"items": {
"additionalProperties": true,
"properties": {
"data": {
"type": "string"
},
"topics": {
"items": {},
"type": "array"
},
"transaction_hash": {
"type": "string"
}
},
"required": [
"transaction_hash",
"topics",
"data"
],
"type": "object"
},
"type": "array"
},
"network": {
"type": "string"
},
"success": {
"type": "boolean"
},
"truncated": {
"type": "boolean"
}
},
"required": [
"success",
"network",
"count",
"truncated",
"logs"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}