Carmel Cassin
grad, educator, public speaker 🐛
- Phone
- (207) 496-2308
people / #189
grad, educator, public speaker 🐛
curl -sS \
"https://example-data.com/api/v1/people/189" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/189"
);
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/189"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/189"
)
people = res.json() {
"id": 189,
"fullName": "Carmel Cassin",
"firstName": "Carmel",
"lastName": "Cassin",
"email": "carmel.cassin-189@example.com",
"phone": "(207) 496-2308",
"occupation": "Investor Factors Coordinator",
"city": "Port Raefield",
"countryAlpha2": "CN",
"bio": "grad, educator, public speaker 🐛",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-189",
"createdAt": "2022-05-13T14:53:24.195Z"
}