Aller au contenu
GET /v1/project

Project profile

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/launchpad-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}