Query event logs by address, topics and block range
API · /eventlogs-api
Event Logs API
Query any EVM contract's emitted event logs live via the chain's public JSON-RPC, filtered by address, topics and block range, with every log decoded — block, transaction hash, indexed topics and data. A convenience endpoint decodes ERC-20 Transfer events straight into from / to / value. Unlike a single-transaction receipt lookup, this answers "what happened on this contract over this window" — the indexing primitive behind every block explorer, analytics dashboard and on-chain webhook. Pass raw topic hashes or a known event name like Transfer or Approval. Works on any contract, verified or not, across Ethereum, Base, Arbitrum, Optimism, BNB, Polygon and more. Reads straight from the chain; live, short cache only.
API health
degraded- Uptime
- 83.33%
- Server probes · 24h
- Avg latency
- 123 ms
- Server probes · 24h
- Subscribers
- 3,881
- active
- Total calls
- 16
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 5,400 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 5,400 calls/month
- 3 req/sec
- Logs + Transfer decode
- No credit card
Starter
€13.90 /month
- 118,000 calls / month
- 8 requests / second
- Hard cap (429 above quota, no overage)
- 118k calls/month
- 8 req/sec
- Topic filtering
- Email support
Pro
€45.50 /month
- 720,000 calls / month
- 20 requests / second
- Hard cap (429 above quota, no overage)
- 720k calls/month
- 20 req/sec
- Multi-chain (8+ chains)
- Priority support
Business
€134.00 /month
- 4,700,000 calls / month
- 50 requests / second
- Hard cap (429 above quota, no overage)
- 4.7M calls/month
- 50 req/sec
- Commercial use
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
NDJSON API
Work with NDJSON / JSON Lines — the one-JSON-value-per-line format used by application and audit logs, streaming and LLM responses, jq, BigQuery, Elasticsearch bulk and many data pipelines. The to-array endpoint parses an NDJSON stream into a regular JSON array; to-ndjson does the reverse, turning a JSON array into NDJSON (one compact value per line); and validate checks every line independently, reporting which lines are valid and the exact parse error for any that are not. Blank lines are ignored. Perfect for log processing, ETL, data import/export and stream debugging. Pure local computation — no key, no third-party service, instant; up to 4 MB via POST. Live, nothing stored. 4 endpoints. Distinct from JSON validation/formatting and from CSV tooling.
api.oanor.com/ndjson-api
Crypto Project Team & Events API
The "who built it and what is on its calendar" view of a cryptocurrency, served from the public CoinPaprika feed. The coin endpoint returns the project's identity and technical profile — market-cap rank, coin-or-token type, whether it is active, the genesis date, development status, consensus / proof type, hashing algorithm, organisation structure, the open-source flag and its industry tags. The team endpoint returns the people behind the project — names and roles such as founders, authors and leads. The events endpoint returns the project's event calendar — conferences, mainnet launches, exchange listings and milestones, each with a date and a link, newest first. This is the project-and-people view of a coin — its team, profile and calendar, not its price — distinct from the price-feed, market and CoinGecko-profile APIs in the catalogue. A coin is a CoinPaprika id (btc-bitcoin); a bare symbol (btc) or name (bitcoin) is resolved automatically to the best-ranked match. Live, no key on the upstream, nothing stored.
api.oanor.com/cryptoprojects-api
Polymarket API
Live prediction-market data from Polymarket, the largest real-money prediction market, via its public Gamma API. On Polymarket people trade shares in the outcome of real-world events, so each market's price is a live, money-backed probability. Get the most active markets, each with its outcomes and their implied probabilities, the best bid and ask, the traded volume and the liquidity. Read one market in full, including its description and resolution date. Pull the biggest events — an event groups related markets, like a championship with one market per team — with their total volume and market count. Get one event with every sub-market and its current probability, the whole field at a glance. Live, no key, nothing stored. Distinct from sports-betting-odds and price-feed APIs — this is Polymarket's money-backed event probabilities and its markets. Perfect for forecasting, trading-signal, news and analytics apps.
api.oanor.com/polymarket-api
Mobilizon API
Live data for Mobilizon, the federated events platform — the open-source ActivityPub alternative to Meetup, Eventbrite and Facebook Events — served straight from Mobilizon's public GraphQL API, no key, nothing cached. The events endpoint searches upcoming public events by keyword and returns each event's title, start and end time, the place (or whether it is online), the organiser, the number of people going, the tags and a link. The event endpoint returns one event in full, including its description. The groups endpoint searches the organising groups and returns each group's name, handle, instance domain, summary and member count. It reads the flagship mobilizon.fr instance, which federates events from across the Mobilizon network. This is the events-and-organisers layer for any community, calendar, social or local app — what is happening, where, and who is organising it. Live from Mobilizon, nothing stored. Distinct from corporate-events and centralised-platform APIs — this is federated grassroots events. 4 endpoints.
api.oanor.com/mobilizon-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Event Logs API?
What's the rate limit for Event Logs API?
How much does Event Logs API cost?
Can I cancel my subscription anytime?
Is Event Logs API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/eventlogs-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/eventlogs-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/eventlogs-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/eventlogs-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.