Aimee Watsica
pantyhose junkie, coach 🇵🇾
- Phone
- (989) 310-2828
people / #195
pantyhose junkie, coach 🇵🇾
curl -sS \
"https://example-data.com/api/v1/people/195" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/195"
);
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/195"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/195"
)
people = res.json() {
"id": 195,
"fullName": "Aimee Watsica",
"firstName": "Aimee",
"lastName": "Watsica",
"email": "aimee.watsica-195@example.com",
"phone": "(989) 310-2828",
"occupation": "Global Division Designer",
"city": "Port Pedroberg",
"countryAlpha2": "AR",
"bio": "pantyhose junkie, coach 🇵🇾",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-195",
"createdAt": "2023-11-25T12:46:39.989Z"
}