Skip to content
GET /v1/addon

A single add-on in full

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/mozillaaddons-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/mozillaaddons-api/v1/addon" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mozillaaddons-api/v1/addon", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mozillaaddons-api/v1/addon");
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/addon",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "url": "https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/",
        "name": "uBlock Origin",
        "slug": "ublock-origin",
        "type": "extension",
        "rating": 4.8,
        "source": "Mozilla Add-ons",
        "authors": [
            "Raymond Hill"
        ],
        "summary": "Finally, an efficient wide-spectrum content blocker. Easy on CPU and memory.",
        "version": "1.71.0",
        "categories": [
            "privacy-security"
        ],
        "last_updated": "2026-06-11T15:01:16Z",
        "rating_count": 21816,
        "is_recommended": true,
        "weekly_downloads": 156163,
        "review_text_count": 5742,
        "star_distribution": null,
        "average_daily_users": 10691335
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:19.123Z",
        "request_id": "a1560afc-ea7c-419b-aaac-555b479f6172"
    },
    "status": "ok",
    "message": "Add-on retrieved successfully",
    "success": true
}