Aller au contenu
GET /v1/person

Person or team 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/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_..."}
)

Exemple de réponse

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

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