Historical data export
Historical data export: raw Ethereum gas price samples over a date range (?from=, ?to=, ISO 8601, max 24h; ?format=json|csv). Priced at $0.0005/sample (min $0.005) — the real row count for your range, not a flat fee.
Answers HTTP 500 without x402 payment termsour last check, 2026-09-24
0 of 1checks answered this week
n/amedian answer time
$0.005listed price per call
n/aprice 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://lab.paidapis.net/api/gas-history-export
| Category | Market data |
|---|---|
| Provider host | lab.paidapis.net |
| 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 | no x402 terms | 500 | 638 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"format": "json",
"from": "",
"to": ""
},
"type": "http"
}
Promised output schema (from the provider)
{
"properties": {
"input": {
"properties": {
"queryParams": {
"properties": {
"format": {
"description": "Either \"json\" (default) or \"csv\".",
"enum": [
"json",
"csv"
],
"type": "string"
},
"from": {
"description": "ISO 8601 range start.",
"type": "string"
},
"to": {
"description": "ISO 8601 range end.",
"type": "string"
}
},
"required": [
"from",
"to"
],
"type": "object"
}
}
},
"output": {
"properties": {
"example": {
"properties": {
"from": {
"type": "string"
},
"sampleCount": {
"type": "integer"
},
"samples": {
"items": {
"properties": {
"gasPriceGwei": {
"type": "number"
},
"timestamp": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"to": {
"type": "string"
}
},
"type": "object"
}
}
}
}
}