Lucinda Shanahan-Bruen
luck lover, film lover 👽
- Phone
- (693) 462-2854
people / #180
luck lover, film lover 👽
curl -sS \
"https://example-data.com/api/v1/people/180" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/180"
);
const people = await res.json();import type { People } from "https://example-data.com/types/people.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/people/180"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/180"
)
people = res.json() {
"id": 180,
"fullName": "Lucinda Shanahan-Bruen",
"firstName": "Lucinda",
"lastName": "Shanahan-Bruen",
"email": "lucinda.shanahanbruen-180@example.com",
"phone": "(693) 462-2854",
"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"
}