Clarabelle Kunze
model
- Phone
- (820) 457-4830
people / #40
model
Clarabelle Kunze
model
curl -sS \
"https://example-data.com/api/v1/people/40" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/40"
);
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/40"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/40"
)
people = res.json() {
"id": 40,
"fullName": "Clarabelle Kunze",
"firstName": "Clarabelle",
"lastName": "Kunze",
"email": "clarabelle.kunze-40@example.com",
"phone": "(820) 457-4830",
"occupation": "Lead Implementation Representative",
"city": "New Margiefort",
"countryAlpha2": "IT",
"bio": "model",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-40",
"createdAt": "2023-07-03T09:07:47.164Z"
}