/v1/project
Project profile
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}