Naar de inhoud
GET /v1/person

Person or team profile

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/launchpad-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

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