Search streamers by name
API · /dlive-api
DLive Streaming API
Live data from DLive, the blockchain-based livestreaming platform, with no key. Look up any streamer's public profile (followers, following, partner status, whether they are live and what they are streaming); read DLive's front-page recommended channels; pull the live-stream directory ordered by trending/new; browse the game and category directory with live viewer counts; read a single category's detail; and search streamers by name. The creator / livestreaming / audience-stats layer for stream dashboards, creator tools, analytics and discovery — distinct from the Kick and other streaming readers. Live from DLive; short cache only.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 243 ms
- Server probes · 24h
- Subscribers
- 4,969
- active
- Total calls
- 14
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 21,000 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 21k calls/month
- 3 req/sec
- Profiles & categories
- No credit card
Starter
€13.50 /month
- 420,000 calls / month
- 8 requests / second
- Hard cap (429 above quota, no overage)
- 420k calls/month
- 8 req/sec
- Search & recommended
- Email support
Pro
€39.00 /month
- 2,100,000 calls / month
- 20 requests / second
- Hard cap (429 above quota, no overage)
- 2.1M calls/month
- 20 req/sec
- Live-stream directory
- Priority support
Enterprise
€99.00 /month
- 10,500,000 calls / month
- 60 requests / second
- Hard cap (429 above quota, no overage)
- 10.5M calls/month
- 60 req/sec
- Full creator graph
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Apple Charts API
Live Apple App Store, Music and Podcast charts by country, with no key. This reads Apple's own public Marketing Tools RSS feeds and returns clean JSON: the top apps (free and paid), the most-played songs and the top podcasts, ranked, for any of Apple's storefronts. The apps endpoint ranks the top free or paid iOS apps; the music endpoint ranks the most-played songs on Apple Music; the podcasts endpoint ranks the top podcasts on Apple Podcasts — each entry with its rank, title, artist or developer, artwork, genres and store link. The app-store / charts / trending-media layer for app-store optimisation (ASO), market research, media-monitoring and content tools. Distinct from the iTunes catalogue-lookup reader and the App-Store-search reader — this is the live top-charts data per country. Live from Apple; short cache only.
api.oanor.com/applecharts-api
Steam Charts API
Live Steam concurrent-player counts and the most-played-games charts, with no key. This reads Valve's own public Steam charts and player-count endpoints and returns clean JSON: how many people are playing any game on Steam right now (by app id, with the game name resolved from the Steam store), the live leaderboard of the most-played games ranked by current concurrent players with today's peaks, and the most-played chart with week-over-week movement (current rank, last week's rank and the change). The live-engagement / player-activity layer for gaming dashboards, analytics, esports and games-market tools. Distinct from the Steam store reader, the SteamSpy ownership reader, the review-sentiment reader and the Steam Market price reader — this is the live "who is playing what right now" data. Live from Steam; short cache only.
api.oanor.com/steamcharts-api
Habr Tech Community API
Articles, ratings and topic hubs from Habr (habr.com), the largest Russian-speaking technology community, read keyless from its public web API. Habr is where Russian-speaking engineers, scientists and companies publish deep technical articles, and where the community judges them with a signed rating (up-votes minus down-votes) — a score that can go negative, quite unlike a likes-only model. Alongside the rating, every article carries its read count, bookmarks (saves) and comments, and lives in one or more "hubs" (topic communities). The articles endpoint lists the top articles, ranked either by rating over a period (day/week/month/year/all-time) or by date, each with its signed score, vote count, reads, bookmarks, comments, author, hubs and reading time. The article endpoint returns one article in full by its numeric id. The hubs endpoint lists Habr's topic hubs with their subscriber counts and hub rating — the map of Russian tech's interests (AI, information security, programming and the rest). This is the Habr platform cut — a distinct social and developer platform, separate from the Western (dev.to) and Japanese (Qiita) developer communities in the catalogue, with its own signed-rating model and Russian-language community. Scores, reads and subscriber counts are the real, live numbers; a negative score is real, not an error. Titles and hubs are in Russian as Habr publishes them. A short cache fronts the upstream. Keyless.
api.oanor.com/habr-api
Hatena Bookmark API
Japan's biggest social-bookmarking trends from Hatena Bookmark (b.hatena.ne.jp), read keyless. "Hatebu" is the Japanese internet's collective save button: when something is worth reading, Japanese users bookmark it, and the most-bookmarked links become the country's de-facto trending list across technology, society, business, life, learning, fun and games. The hot endpoint returns the established popular entries for a category — the links that have gathered the most bookmarks. The new endpoint returns the newly-rising entries gaining bookmarks fast right now, the leading edge before they hit the hot list. Each entry carries its title, URL, bookmark count, category and date. The count endpoint looks up the exact bookmark count for any one or more URLs — useful to gauge how much attention a page (yours or a competitor's) has drawn on the Japanese web. This is the Hatena Bookmark cut — a distinct social-bookmarking platform, separate from the developer, blogging and streaming feeds in the catalogue, and the cleanest read on Japanese-web attention. Bookmark counts are the real, live numbers Hatena shows; titles are Japanese as Hatena publishes them (HTML entities decoded). A short cache fronts the upstream. Keyless.
api.oanor.com/hatenabookmark-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for DLive Streaming API?
What's the rate limit for DLive Streaming API?
How much does DLive Streaming API cost?
Can I cancel my subscription anytime?
Is DLive Streaming 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/dlive-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/dlive-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/dlive-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/dlive-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.