Lyda Reichert
friend
- Phone
- (454) 992-7453
people / #134
friend
Lyda Reichert
friend
curl -sS \
"https://example-data.com/api/v1/people/134" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/134"
);
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/134"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/134"
)
people = res.json() {
"id": 134,
"fullName": "Lyda Reichert",
"firstName": "Lyda",
"lastName": "Reichert",
"email": "lyda.reichert-134@example.com",
"phone": "(454) 992-7453",
"occupation": "Principal Applications Designer",
"city": "Hirthecester",
"countryAlpha2": "VN",
"bio": "friend",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-134",
"createdAt": "2024-03-11T12:45:52.469Z"
}