Zum Inhalt springen
GET /v1/project

Project profile

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/launchpad-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}