{"openapi":"3.1.0","info":{"title":"Berachain Network API","version":"1.0.0","description":"Live on-chain data for Berachain (chain-id 80094), an EVM-compatible Layer 1 built on a Proof-of-Liquidity consensus, with the BERA gas token. Read the chain status — chain id, latest block number, current gas price, node client version and sync state — fetch any block by number (or the latest) with its hash, parent hash, timestamp, transaction count, gas used and limit, base fee and proposer, read the current gas price and max priority fee in both wei and gwei, and look up any account address for its BERA balance (in wei and whole BERA) and transaction nonce. Addresses use the standard 0x EVM hex form. A short protective cache keeps responses fast while staying within a few seconds of the chain. Distinct from other Layer-1 and Cosmos-chain APIs on the marketplace: this surfaces the Berachain EVM network specifically.","contact":{"name":"PremiumApi","url":"https://www.oanor.com/by/premiumapi"}},"servers":[{"url":"https://api.oanor.com/berachain-api","description":"oanor gateway"}],"tags":[{"name":"Chain"},{"name":"Blocks"},{"name":"Gas"},{"name":"Accounts"},{"name":"Meta"}],"components":{"securitySchemes":{"oanorKey":{"type":"apiKey","in":"header","name":"x-oanor-key","description":"Get your key at https://www.oanor.com/developer/keys"}}},"security":[{"oanorKey":[]}],"paths":{"/v1/status":{"get":{"operationId":"get_v1_status","tags":["Chain"],"summary":"Chain status","description":"","parameters":[],"security":[{"oanorKey":[]}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"network":"Berachain Mainnet","syncing":false,"chain_id":80094,"block_number":22253695,"native_token":"BERA","gas_price_wei":"100047","client_version":"bera-reth/v1.3.3-26762fb/x86_64-unknown-linux-gnu","gas_price_gwei":0.0001},"meta":{"timestamp":"2026-06-15T11:15:08.857Z","request_id":"c416b543-295b-4fb6-9003-b7666a8ff948"},"status":"ok","message":"Status retrieved successfully","success":true}}}},"401":{"description":"Missing or invalid x-oanor-key header"},"402":{"description":"Active subscription required"},"429":{"description":"Rate-limit or monthly quota reached"},"502":{"description":"Upstream did not respond"}}}},"/v1/block":{"get":{"operationId":"get_v1_block","tags":["Blocks"],"summary":"Block by number (latest if omitted)","description":"","parameters":[{"name":"number","in":"query","required":false,"description":"Block number; omit for latest","schema":{"type":"string"}}],"security":[{"oanorKey":[]}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"hash":"0x14fdd5f6c05e94849fd8763ee5e85e1c858601265b476619d7430cb2ee8b4ae6","miner":"0xf6a4a6acecd5311327ae3866624486b6179fef97","number":22253695,"gas_used":10393701,"gas_limit":36000000,"timestamp":1781522106,"size_bytes":30569,"parent_hash":"0xe927664f51c362b1495857e9fe443053f97800cd2f667e6913832b1c85008d6b","transaction_count":12,"base_fee_per_gas_wei":"47"},"meta":{"timestamp":"2026-06-15T11:15:08.954Z","request_id":"29630e8f-8657-4ad2-8064-7118f7a2ab50"},"status":"ok","message":"Block retrieved successfully","success":true}}}},"401":{"description":"Missing or invalid x-oanor-key header"},"402":{"description":"Active subscription required"},"429":{"description":"Rate-limit or monthly quota reached"},"502":{"description":"Upstream did not respond"}}}},"/v1/gas":{"get":{"operationId":"get_v1_gas","tags":["Gas"],"summary":"Current gas price and max priority fee","description":"","parameters":[],"security":[{"oanorKey":[]}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"native_token":"BERA","gas_price_wei":"100047","gas_price_gwei":0.0001,"max_priority_fee_wei":"100000","max_priority_fee_gwei":0.0001},"meta":{"timestamp":"2026-06-15T11:15:09.059Z","request_id":"cafd35de-c2e9-47cf-b01f-303dd10c998d"},"status":"ok","message":"Gas retrieved successfully","success":true}}}},"401":{"description":"Missing or invalid x-oanor-key header"},"402":{"description":"Active subscription required"},"429":{"description":"Rate-limit or monthly quota reached"},"502":{"description":"Upstream did not respond"}}}},"/v1/balance":{"get":{"operationId":"get_v1_balance","tags":["Accounts"],"summary":"BERA balance and nonce for an address","description":"","parameters":[{"name":"address","in":"query","required":true,"description":"EVM address (0x + 40 hex)","schema":{"type":"string"},"example":"0x000000000000000000000000000000000000dEaD"}],"security":[{"oanorKey":[]}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"address":"0x000000000000000000000000000000000000dead","balance_wei":"3089055295894578029","balance_bera":3.0890553,"transaction_count":0},"meta":{"timestamp":"2026-06-15T11:15:09.143Z","request_id":"08e02057-f1cd-4b4f-b881-7a1b1767d2f3"},"status":"ok","message":"Balance retrieved successfully","success":true}}}},"401":{"description":"Missing or invalid x-oanor-key header"},"402":{"description":"Active subscription required"},"429":{"description":"Rate-limit or monthly quota reached"},"502":{"description":"Upstream did not respond"}}}},"/v1/meta":{"get":{"operationId":"get_v1_meta","tags":["Meta"],"summary":"Service metadata","description":"","parameters":[],"security":[{"oanorKey":[]}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"name":"Berachain Network API","source":"Berachain public JSON-RPC (rpc.berachain.com)","endpoints":[{"path":"/v1/status","description":"Chain id, latest block number, gas price, client version, sync state"},{"path":"/v1/block","description":"Block by number (?number=; omit for latest)"},{"path":"/v1/gas","description":"Current gas price and max priority fee (wei + gwei)"},{"path":"/v1/balance","description":"BERA balance and nonce for an address (?address=0x…)"},{"path":"/v1/meta","description":"This metadata document"}],"disclaimer":"Unofficial proxy of the public Berachain JSON-RPC. Not affiliated with Berachain. Data only; no guarantees of accuracy or availability.","description":"On-chain data for Berachain (chain-id 80094), an EVM-compatible Layer 1 built on a Proof-of-Liquidity consensus, with the BERA gas token. Exposes chain status, blocks, current gas prices and account balances via the public JSON-RPC.","native_token":{"symbol":"BERA","decimals":18}},"meta":{"timestamp":"2026-06-15T11:15:09.218Z","request_id":"a15ca40f-b802-4aaf-bf0f-02f7b40f8467"},"status":"ok","message":"Meta","success":true}}}},"401":{"description":"Missing or invalid x-oanor-key header"},"402":{"description":"Active subscription required"},"429":{"description":"Rate-limit or monthly quota reached"},"502":{"description":"Upstream did not respond"}}}}},"x-oanor-pricing":[{"slug":"free","name":"Free","price_cents_month":0,"monthly_call_quota":1940,"rps_limit":2,"hard_limit":true},{"slug":"basic","name":"Basic","price_cents_month":1260,"monthly_call_quota":51900,"rps_limit":6,"hard_limit":true},{"slug":"pro","name":"Pro","price_cents_month":3420,"monthly_call_quota":206000,"rps_limit":18,"hard_limit":true},{"slug":"scale","name":"Scale","price_cents_month":7760,"monthly_call_quota":884000,"rps_limit":45,"hard_limit":true}],"x-oanor-marketplace-url":"https://www.oanor.com/api/berachain-api"}