Discover/PoeOS Hub API
live

PoeOS Hub APIPoeoshub.life

Get per-network transaction costs, block times, finality windows, and live RPC health for Base, Arbitrum, Ethereum, and Solana via the PoeOS Hub API.

Endpoint health
verified 4h ago
list_network_fees
1/1 passing latest checkself-healing
Endpoints
1
Updated
4h ago

What is the PoeOS Hub API?

The PoeOS Hub API exposes one endpoint, list_network_fees, that returns up to four blockchain network rows combining published cost models with a live RPC health check per network. Each row includes average transaction cost in USD, block time, finality window, native currency, chain ID, flash-loan availability, RPC status, and latency — giving developers a single call to compare fee economics and node health across Base, Arbitrum One, Ethereum, and Solana.

This call costs5 credits / call— charged only on success
Try it
Network id to return only that row. Confirmed ids: base, arbitrum, ethereum, solana (case-insensitive). Omitted = all networks.
api.parse.bot/scraper/4b0bc435-81ce-4ef9-b384-975e0060ea10/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/4b0bc435-81ce-4ef9-b384-975e0060ea10/list_network_fees?network=ethereum' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace poeoshub-life-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: PoeOS Network Fees — list supported chains with live health and cost data."""
from parse_apis.poeoshub_life_api import PoeosHub, ParseError

client = PoeosHub()

# List every supported network and print its cost model + live status.
for net in client.networks.list(limit=10):
    print(f"{net.name} ({net.family}): ~${net.avg_tx_cost_usd} per tx, "
          f"status={net.live_status}, latency={net.live_latency_ms}ms")

# Narrow to a single chain by id and inspect its RPC health details.
try:
    eth = client.networks.list(network="ethereum", limit=1).first()
except ParseError as e:
    # Upstream structure changed or extraction failed
    print(f"Parse error ({e.code}): {e}")
else:
    if eth is not None:
        print(f"\n{eth.name} detail:")
        print(f"  Chain ID:    {eth.chain_id}")
        print(f"  Finality:    {eth.finality}")
        print(f"  Flash loans: {eth.flash_loans}")
        print(f"  Provider:    {eth.provider}")
        print(f"  Latest block: {eth.live_block}")
        print(f"  Checked at:  {eth.checked_at}")

print("\nexercised: networks.list")
All endpoints · 1 totalmissing one? ·

Returns one row per supported blockchain network combining the site's published cost model (average transaction cost in USD, block time, finality window, chain id, native currency, flash-loan availability) with a live health check made by the site at call time (RPC status, latency in ms, latest block/slot, provider, timestamps). The result is the full registry of 4 networks in a single call; the optional network filter narrows it to one row and an unknown network id yields an empty list. avg_tx_cost_usd is the site's published estimate, not a live gas-price quote; the site does not publish a historical gas series. Fields chain_id and flash_loans are null for Solana (SVM).

Input
ParamTypeDescription
networkstringNetwork id to return only that row. Confirmed ids: base, arbitrum, ethereum, solana (case-insensitive). Omitted = all networks.
Response
{
  "type": "object",
  "fields": {
    "note": "provenance note on avg_tx_cost_usd",
    "count": "number of rows returned",
    "networks": "array of network rows, each with id, name, family (evm|svm), chain_id (null for svm), native_currency, block_time_sec, finality (text), avg_tx_cost_usd (site cost model), flash_loans (null when not applicable), rpc_url, explorer_url, configured_status, live_status, live_latency_ms, live_block (text), provider, checked_at, last_success_at"
  },
  "sample": {
    "data": {
      "note": "avg_tx_cost_usd is the site's published per-network cost model; historical gas series is not published by the site.",
      "count": 1,
      "networks": [
        {
          "id": "ethereum",
          "name": "Ethereum",
          "family": "evm",
          "rpc_url": "https://ethereum-rpc.publicnode.com",
          "chain_id": 1,
          "finality": "~13m",
          "provider": "Alchemy (dedicated)",
          "checked_at": "2026-09-22T04:39:51.199Z",
          "live_block": "Block #26,030,703",
          "flash_loans": "Aave v3 adapter",
          "live_status": "operational",
          "explorer_url": "https://etherscan.io",
          "block_time_sec": 12,
          "avg_tx_cost_usd": 3.1,
          "last_success_at": "2026-09-22T04:39:51.376Z",
          "live_latency_ms": 177,
          "native_currency": "ETH",
          "configured_status": "degraded"
        }
      ]
    },
    "status": "success"
  }
}

About the PoeOS Hub API

What the API Returns

The list_network_fees endpoint returns an array of network rows under the networks key, alongside a count of rows and a provenance note describing how avg_tx_cost_usd is sourced. Each network row contains: id, name, family (either evm or svm), chain_id (null for Solana), native_currency, block_time_sec, finality, flash-loan availability, RPC status, and latency measured at call time.

Filtering by Network

Pass the optional network query parameter to restrict results to a single chain. Accepted values are base, arbitrum, ethereum, and solana (case-insensitive). Omitting the parameter returns all four rows. This is useful when your application only needs to compare fee costs for a specific chain without parsing the full payload.

Live Health vs. Static Cost Data

The response blends two distinct data categories. The cost model fields — avg_tx_cost_usd, block_time_sec, finality, and flash-loan availability — reflect PoeOS Hub's published figures for each network and carry a provenance note. The RPC health fields — status and latency — are measured live at the time of each API call, so repeated requests may return different latency readings as network conditions change.

Reliability & maintenanceVerified

The PoeOS Hub API is a managed, monitored endpoint for Poeoshub.life — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when Poeoshub.life changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official Poeoshub.life API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Display current average transaction costs across EVM and SVM chains in a cross-chain DeFi dashboard.
  • Alert users when RPC latency for a specific network exceeds a threshold before they submit a transaction.
  • Filter for flash-loan-capable networks to dynamically route arbitrage strategies.
  • Compare block times and finality windows to select an optimal chain for a time-sensitive smart contract deployment.
  • Monitor RPC status for Base, Arbitrum, Ethereum, and Solana in a unified infrastructure health dashboard.
  • Surface native currency and chain ID metadata for wallet or explorer tooling that needs per-chain configuration.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does PoeOS Hub have an official developer API?+
PoeOS Hub does not publish an official public developer API. The data accessible through this Parse API reflects the cost model and network health information published on the PoeOS Hub site.
What does the `list_network_fees` endpoint return for each network?+
Each row includes the network id, name, family (evm or svm), chain_id (null for Solana), native_currency, block_time_sec, finality window, flash-loan availability, and live RPC status and latency captured at call time. A top-level note field describes the provenance of avg_tx_cost_usd.
How current is the transaction cost data?+
The avg_tx_cost_usd and related cost-model fields reflect figures published by PoeOS Hub and carry a provenance note in the response. They are not tick-by-tick gas price feeds. The RPC health fields — status and latency — are measured live on each request and will vary between calls.
Does the API return historical fee data or time-series RPC latency?+
Not currently. The API returns a single current snapshot per network per call. You can fork it on Parse and revise it to add a time-series logging layer or historical endpoint.
Are networks beyond Base, Arbitrum, Ethereum, and Solana covered?+
Not currently. The API covers exactly those four chains as confirmed network IDs. You can fork it on Parse and revise it to add support for additional networks if PoeOS Hub expands its coverage.
Page content last updated . Spec covers 1 endpoint from Poeoshub.life.
Related APIs in Crypto Web3See all →
solscan.io API
solscan.io API
poe.ninja API
Access real-time Path of Exile economy data from poe.ninja, including item prices, currency exchange rates, divination card values, market trends, and build statistics by class.
blockchair.com API
Query Bitcoin blockchain data in real-time to check address balances, review transaction details, explore block information, and monitor network statistics. Track cryptocurrency news and compare data across multiple blockchain networks all in one place.
poedb.tw API
Search and retrieve comprehensive Path of Exile game data including items, gems, leagues, and game mechanics like bleeding effects across both PoE 1 and PoE 2. Get detailed information about specific items and categories, or browse current league information to stay updated on the latest game content.
hyperstats.org API
Access data from hyperstats.org.
moondev.com API
Access live crypto market data from MoonDev's public endpoints: aggregated Hyperliquid positions near liquidation, fees leaderboard, PnL share stats by address, Polymarket sweep trades, and soon-to-expire Polymarket markets — plus a single aggregate endpoint that pulls all major datastreams at once.
studio.glassnode.com API
Access comprehensive on-chain and market analytics for cryptocurrencies, including asset fundamentals, supply dynamics, futures data, and profit/loss metrics. Search and analyze assets with historical chart data and market overview information to track crypto performance and trends.
nebius.com API
Access data from nebius.com.