/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/mozillaaddons-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mozillaaddons-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mozillaaddons-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/mozillaaddons-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "Look up an add-on by its slug (slug=ublock-origin, dark-reader). search accepts sort=users|rating|relevance and type=extension|theme. top defaults to extensions. Average daily users is the headline popularity metric.",
"source": "Mozilla Add-ons public API (addons.mozilla.org/api/v5, live)",
"service": "mozillaaddons-api",
"endpoints": {
"GET /v1/top": "Most-used add-ons (type=extension|theme, limit=25).",
"GET /v1/meta": "This document.",
"GET /v1/addon": "A single add-on in full — users, downloads, rating, star distribution (slug=ublock-origin).",
"GET /v1/search": "Search add-ons (q=adblock, sort=users|rating|relevance, type=extension|theme)."
},
"description": "Live Firefox add-on (extension & theme) stats from the official Mozilla Add-ons (AMO) API. The adoption-and-reputation view of the Firefox ecosystem. addon = a single add-on in full (average daily users, weekly downloads, star rating with review count and the 1-5 star distribution, authors, version, type, categories); search = search add-ons sortable by users, rating or relevance; top = the most-used add-ons, optionally filtered to extensions or themes. Live, no key, nothing stored. Distinct from the other developer-ecosystem and package APIs.",
"upstream_status": "ok",
"ublock_origin_daily_users": 10691335
},
"meta": {
"timestamp": "2026-06-12T01:42:20.523Z",
"request_id": "4ed690a5-004a-4976-97fb-b870f6a41992"
},
"status": "ok",
"message": "Meta",
"success": true
}