A single add-on in full
API · /mozillaaddons-api
Mozilla Add-ons (Firefox Extensions) API
Live Firefox add-on stats from the official Mozilla Add-ons (AMO) API — no key, nothing stored. The adoption-and-reputation view of the Firefox ecosystem: how many users an extension or theme has, how it is rated and reviewed, and which add-ons are most popular, distinct from the other developer-ecosystem and package APIs in the catalogue. The addon endpoint returns a single add-on in full — its average daily users, weekly downloads, the star rating with review count, authors, version, type and categories. The search endpoint searches add-ons sortable by users, rating or relevance, each with its user count and rating. The top endpoint returns the most-used add-ons, optionally filtered to extensions or themes. Build extension-popularity dashboards, "is this add-on still maintained and trusted" widgets, competitor trackers and developer-portfolio tools on top of real Mozilla Add-ons data. Look up an add-on by its slug (ublock-origin, darkreader); average daily users is the headline popularity metric and the rating is the community reputation.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 401 ms
- Server probes · 24h
- Subscribers
- 4,546
- active
- Total calls
- 76
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 24,000 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 24k calls/month
- 3 req/sec
- All endpoints
- No credit card
Starter
€4.80 /month
- 320,000 calls / month
- 10 requests / second
- Hard cap (429 above quota, no overage)
- 320k calls/month
- 10 req/sec
- Email support
Pro
€14.40 /month
- 1,350,000 calls / month
- 25 requests / second
- Hard cap (429 above quota, no overage)
- 1.35M calls/month
- 25 req/sec
- Priority support
Scale
€33.20 /month
- 4,800,000 calls / month
- 55 requests / second
- Hard cap (429 above quota, no overage)
- 4.8M calls/month
- 55 req/sec
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
OpenProcessing Creative Coding API
Live creator and sketch data from OpenProcessing, the community for Processing and p5.js creative-coding sketches, served from its public API. The user endpoint returns a creator's profile — username, name, bio, location, website, join date and total sketch count. The sketches endpoint lists a creator's published sketches with title, license, engine mode and dates. The sketch endpoint returns a single sketch's detail — title, description, tags, license, libraries used, the fork parent it was remixed from, and the author. The social endpoint returns a creator's followers or the accounts they follow. This is a creative-coding community stats API — creator profiles, sketch catalogues and the follow graph — distinct from the code-hosting, package-registry and other social-platform APIs in the catalogue. A user is a numeric OpenProcessing userID and a sketch is a numeric visualID, both visible in OpenProcessing URLs. Live, no key on the upstream, nothing stored.
api.oanor.com/openprocessing-api
Modrinth Minecraft Mods API
Live mod-platform stats from Modrinth, the open Minecraft content platform — no key, nothing stored. The adoption-and-community view of the Minecraft modding ecosystem: how much each mod, modpack, shader or resource pack is downloaded and followed, and which projects are most popular, distinct from the other developer-ecosystem and gaming APIs in the catalogue. The project endpoint returns a single project in full — total downloads, followers, type, categories, supported game versions and loaders, client/server sides and license. The search endpoint searches projects, filterable by type (mod, modpack, shader, resource pack, data pack) and sortable by downloads or follows, each with its download and follower count. The versions endpoint returns a project's recent releases with per-version downloads, supported game versions and loaders. Build mod dashboards, popularity trackers, "is this mod maintained" widgets and modpack browsers on top of real Modrinth data. Look up a project by its slug (sodium, iris, fabric-api); downloads are the headline popularity metric.
api.oanor.com/modrinth-api
Homebrew Install Analytics API
Live install analytics for Homebrew, the macOS and Linux package manager, from the public formulae.brew.sh feed — no key, nothing stored. The adoption view of the Homebrew ecosystem: how much each command-line formula and each desktop-app cask is installed, and the most-installed packages overall, distinct from the Homebrew formula-catalog API in the catalogue (which describes a package — this measures how much it is actually used). The formula endpoint returns a command-line tool's install counts over 30, 90 and 365 days plus install-on-request, with its version and description. The cask endpoint returns a desktop app's install counts. The top endpoint returns the most-installed formulae or casks over a chosen window, ranked. Build developer-tool popularity dashboards, "is this tool still maintained and used" widgets, package-trend trackers and ecosystem-health tools on top of real Homebrew analytics. Look up a formula by its name (wget, node, ffmpeg) or a cask by its token (google-chrome, visual-studio-code); counts come from Homebrew's opted-in user analytics.
api.oanor.com/brewanalytics-api
PyPI Download Stats API
Live PyPI (Python Package Index) download analytics from pypistats.org — no key, nothing stored. The adoption view of a Python package: how much it is downloaded, the daily trend, and the breakdown by Python version and operating system, distinct from the PyPI registry-metadata API in the catalogue (which describes a package — this measures how much the community actually uses it). The recent endpoint returns the headline download counts: last day, last week and last month. The overall endpoint returns the daily download timeline so you can chart growth. The python endpoint breaks downloads down by Python version, showing which versions the package's users are actually on. The system endpoint breaks downloads down by operating system — Linux, Windows and macOS. Build package-popularity dashboards, dependency-adoption trackers, "which Python version should we still support" tools and ecosystem-trend widgets on top of real PyPI download data. Look up any package by its PyPI name (requests, numpy, flask); names are normalised to lowercase and the version and system splits include each category's share of total downloads.
api.oanor.com/pypistats-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Mozilla Add-ons (Firefox Extensions) API?
What's the rate limit for Mozilla Add-ons (Firefox Extensions) API?
How much does Mozilla Add-ons (Firefox Extensions) API cost?
Can I cancel my subscription anytime?
Is Mozilla Add-ons (Firefox Extensions) 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/mozillaaddons-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/mozillaaddons-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/mozillaaddons-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/mozillaaddons-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.