Vai al contenuto
GET /v1/person

Person or team profile

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/launchpad-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}