Skip to main content
GET
/
people
/
{id}
{
  "id": "<string>",
  "name": "<string>",
  "bio": "<string>",
  "image": "<string>"
}

Overview

Returns detailed information about a single person identified by their unique ID.

Path Parameters

id
string
required
The unique identifier of the person

Request

curl https://entertheatre.com/api/people/person-001

Response

id
string
required
Unique identifier for the person
name
string
required
Full name of the person
bio
string
Biography or description
image
string
URL to the person’s headshot

Example Response

{
  "id": "person-001",
  "name": "Elaine Paige",
  "bio": "Legendary West End star known for originating roles in Evita and Cats. She has received numerous awards including an Olivier Award and has been called the 'First Lady of British Musical Theatre'.",
  "image": "https://rluylvquemmzgljdklby.supabase.co/storage/v1/object/public/people/elaine-paige.jpg"
}

Error Response

{
  "error": "Person not found"
}

Status Codes

StatusDescription
200Success - returns person object
404Person not found
500Server error