Lucinda Shanahan-Bruen
luck lover, film lover 👽
- Phone
- +1 202-555-0179 ext 2
Overview
people / #180
luck lover, film lover 👽
Request
curl example
curl -sS \ "https://example-data.com/api/v1/people/180" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/people/180" ); const person = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/people.d.ts https://example-data.com/types/people.d.ts
import type { Person } from "./types/people";
const res = await fetch(
"https://example-data.com/api/v1/people/180"
);
const person = (await res.json()) as Person; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/people/180"
)
people = res.json() Response
{
"id": 180,
"fullName": "Lucinda Shanahan-Bruen",
"firstName": "Lucinda",
"lastName": "Shanahan-Bruen",
"email": "lucinda.shanahanbruen-180@example.com",
"phone": "+1 202-555-0179 ext 2",
"occupation": "International Tactics Orchestrator",
"city": "North Miami",
"countryAlpha2": "ZA",
"bio": "luck lover, film lover 👽",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-180",
"createdAt": "2023-11-19T20:50:54.176Z"
}