Mavis Balistreri
coach
- Phone
- (508) 526-8777
people / #53
coach
Mavis Balistreri
coach
curl -sS \
"https://example-data.com/api/v1/people/53" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/53"
);
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/53"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/53"
)
people = res.json() {
"id": 53,
"fullName": "Mavis Balistreri",
"firstName": "Mavis",
"lastName": "Balistreri",
"email": "mavis.balistreri-53@example.com",
"phone": "(508) 526-8777",
"occupation": "National Quality Assistant",
"city": "East Brainfield",
"countryAlpha2": "PK",
"bio": "coach",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-53",
"createdAt": "2021-08-12T00:42:35.763Z"
}