Sadye Langosh
dreamer, musician, engineer
- Phone
- (519) 402-4041
people / #147
dreamer, musician, engineer
curl -sS \
"https://example-data.com/api/v1/people/147" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/147"
);
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/147"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/147"
)
people = res.json() {
"id": 147,
"fullName": "Sadye Langosh",
"firstName": "Sadye",
"lastName": "Langosh",
"email": "sadye.langosh-147@example.com",
"phone": "(519) 402-4041",
"occupation": "Human Interactions Engineer",
"city": "Brownsville",
"countryAlpha2": "FR",
"bio": "dreamer, musician, engineer",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-147",
"createdAt": "2026-01-24T07:35:46.602Z"
}