/v1/person
Person or team 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/person" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/launchpad-api/v1/person", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/launchpad-api/v1/person");
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/person",
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": "sabdfl",
"source": "Launchpad",
"is_team": false,
"homepage": null,
"time_zone": "Europe/London",
"description": "South African living in the Isle of Man, '73 edition. I'm the leader of the Ubuntu Project (http://www.ubuntu.com/) and one of the architects of Launchpad. More details on my home page at http://www.markshuttleworth.com/",
"date_created": "2005-06-15",
"display_name": "Mark Shuttleworth"
},
"meta": {
"timestamp": "2026-06-10T14:02:41.313Z",
"request_id": "2d3fb817-4f87-4c27-9580-170a0da7f198"
},
"status": "ok",
"message": "Person retrieved successfully",
"success": true
}