Bitrate / duration / size
API · /bitrate-api
Bitrate & Transfer API
Media, file-size and data-transfer maths as an API. The file-size endpoint relates bitrate, duration and file size: give any two and it computes the third — so you can find the size of a video at a given bitrate and length, the bitrate of a file of known size and length, or how long a file will play. The transfer-time endpoint computes how long a file takes to download or upload over a given bandwidth (with optional protocol overhead), or the bandwidth needed to move it within a target time. The storage endpoint works out how many hours of media at a bitrate, or how many items of a given size, fit in a storage capacity. Bitrates use decimal units (kbps, Mbps, Gbps) and sizes are reported in both decimal (KB/MB/GB/TB) and binary (KiB/MiB/GiB/TiB). Everything is computed locally and deterministically, so it is instant and private. Ideal for video and audio encoding, streaming and CDN planning, storage and backup sizing, and download-time estimates. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 4 endpoints. This is bitrate and transfer maths; for plain byte-unit conversion use a bytes API.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 90 ms
- Server probes · 24h
- Subscribers
- 3,136
- active
- Total calls
- 48
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 8,435 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 8,435 calls/month
- 2 req/sec
- File size + transfer + storage
- No credit card
Starter
€9.95 /month
- 17,950 calls / month
- 8 requests / second
- Hard cap (429 above quota, no overage)
- 17.95k calls/month
- 8 req/sec
- Decimal + binary units
- Email support
Pro
€29.85 /month
- 230,500 calls / month
- 20 requests / second
- Hard cap (429 above quota, no overage)
- 230.5k calls/month
- 20 req/sec
- Encoding / CDN pipelines
- Priority support
Mega
€67.85 /month
- 1,195,000 calls / month
- 50 requests / second
- Hard cap (429 above quota, no overage)
- 1.195M calls/month
- 50 req/sec
- Platform scale
- 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
SoundCloud API
Read SoundCloud in real time — no login or key needed. Full-text search across everything or specifically tracks, users and playlists; resolve any soundcloud.com URL to its object; and fetch a track's detail and comments, a user's profile, their tracks, playlists, likes, followers and following, a playlist's detail, and the trending charts by genre. Tracks, users and playlists are addressed by numeric id (from search/resolve). The public web client_id is resolved automatically and refreshed on expiry; every call is live (no cache) and returns the upstream SoundCloud shape, paginated with limit + offset. 16 endpoints. Built for music discovery, artist and audience analytics and audio content aggregation. A SoundCloud (creator audio) data API — distinct from the Music API (Deezer commercial catalog). No upstream key, no cache.
api.oanor.com/soundcloud-api
Vimeo API
Read Vimeo in real time — no login or key needed. Fetch any video's detail (title, description, duration, dimensions, owner, thumbnails, stats), resolve its playable stream URLs (progressive MP4 + HLS) from the public player config, and pull any user's profile, their uploaded videos and the videos they've liked. Browse the videos of any channel, album or group. Users are addressed by Vimeo username or numeric id; every call is live (no cache) and returns the upstream Vimeo shape. 8 endpoints. Built for video discovery, creator analytics and content aggregation on Vimeo. A Vimeo data API — distinct from YouTube, Dailymotion and PeerTube (different platform). No upstream key, no cache.
api.oanor.com/vimeo-api
PeerTube API
Read PeerTube — the federated, open-source video network — in real time, with no key. Federated search (powered by SepiaSearch) finds videos, channels and playlists across thousands of PeerTube instances at once. Per instance you can list and sort videos, fetch any video's detail, its comment threads and subtitle/caption tracks, look up any channel or account and their videos, and read the instance config, server statistics and the video-category list. Federated handles (name@instance) resolve transparently, and you can point any per-instance call at a specific server with ?instance=<host> (default framatube.org). Every call is live (no cache) and returns the upstream PeerTube REST shape, paginated with limit + start. 14 endpoints. Built for federated video discovery, creator and channel analytics, and content aggregation. A PeerTube (federated video) data API — distinct from single-platform video APIs like YouTube or Dailymotion. No upstream key, no cache.
api.oanor.com/peertube-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Bitrate & Transfer API?
What's the rate limit for Bitrate & Transfer API?
How much does Bitrate & Transfer API cost?
Can I cancel my subscription anytime?
Is Bitrate & Transfer 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/bitrate-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/bitrate-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/bitrate-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/bitrate-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.