Skip to content
GET /v1/person

Person or team profile

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/launchpad-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest 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
}