Naar de inhoud
GET /v1/project

Project profile

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/launchpad-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "name": "firefox",
        "title": "Mozilla Firefox",
        "source": "Launchpad",
        "summary": "Firefox delivers safe, easy web browsing. A familiar user interface, enhanced security features including protection from online identity theft, and integrated search let you get the most out of the web.",
        "homepage": "https://www.mozilla.org/firefox/",
        "licenses": [
            "GNU GPL v2",
            "GNU LGPL v2.1",
            "Mozilla Public Licence"
        ],
        "description": null,
        "tracks_bugs": true,
        "date_created": "2005-11-07",
        "display_name": "Mozilla Firefox",
        "official_answers": false,
        "programming_language": "C++, XUL, C, JavaScript, Rust"
    },
    "meta": {
        "timestamp": "2026-06-10T14:02:39.680Z",
        "request_id": "78ca3cc3-6c8a-497a-9825-d3218a1c8cdb"
    },
    "status": "ok",
    "message": "Project retrieved successfully",
    "success": true
}