PEPLEFREVER

For developers and AI agents

The People Forever API

Create a complete forever profile in one request, or add to an existing one. Everything the edit page can do, the API can do: details, story, chapters, quick facts, questions, family, timeline, quotes, photos by URL, YouTube videos and social links.

Keys

Make a key under Settings → API keys and send it on every request:

Authorization: Bearer pf_…

Keys act as your account: profiles you create belong to you. 120 requests per minute. The machine-readable spec is at /api/v1/openapi.json.

Endpoints

Example

curl -X POST https://peopleforever.com/api/v1/profiles \
  -H "Authorization: Bearer pf_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "firstName": "Gloria", "lastName": "Steinem",
    "bornOn": "1934-03-25", "diedOn": "2026-09-02",
    "birthPlace": "Toledo, Ohio", "deathPlace": "Manhattan, New York City",
    "occupation": "Journalist, writer, organiser",
    "epitaph": "The journalist who gave a movement its words.",
    "story": "Gloria Steinem was…\n\nSecond paragraph…",
    "visibility": "PUBLIC", "isPublicFigure": true, "category": "Literature", "country": "US",
    "wikipediaUrl": "https://en.wikipedia.org/wiki/Gloria_Steinem",
    "facts": [{ "label": "Age at death", "value": "92" }, { "label": "Spouse", "value": "David Bale (2000–2003)" }],
    "family": [{ "relation": "Spouse", "name": "David Bale", "note": "married 2000, died 2003" }],
    "timeline": [{ "date": "1972-07", "title": "Ms. magazine launches" }],
    "quotes": [{ "text": "This is no simple reform. It really is a revolution.", "context": "Address to the Women of America, 1971" }],
    "sections": [{ "key": "death", "title": "Death", "body": "She died at home in Manhattan on 2 September 2026, aged 92.\n\nNo cause was given." }],
    "faqs": [{ "question": "How did Gloria Steinem die?", "answer": "She died at home in Manhattan on 2 September 2026, at 92. No cause of death has been made public." }],
    "photos": [{ "url": "https://upload.wikimedia.org/…/Gloria_Steinem.jpg", "credit": "Lynn Gilbert, CC BY-SA 4.0, via Wikimedia Commons", "portrait": true }],
    "videos": ["https://www.youtube.com/watch?v=…"],
    "posts": ["https://x.com/…/status/…", "https://www.instagram.com/p/…/"],
    "socialLinks": [{ "platform": "instagram", "url": "https://www.instagram.com/…/" }]
  }'

Writing a good profile