Krystal Bradtke
typewriter lover, developer 🇪🇬
- Phone
- (641) 841-6045
people / #102
typewriter lover, developer 🇪🇬
curl -sS \
"https://example-data.com/api/v1/people/102" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/102"
);
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/102"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/102"
)
people = res.json() {
"id": 102,
"fullName": "Krystal Bradtke",
"firstName": "Krystal",
"lastName": "Bradtke",
"email": "krystal.bradtke-102@example.com",
"phone": "(641) 841-6045",
"occupation": "Lead Implementation Agent",
"city": "Champlinville",
"countryAlpha2": "CN",
"bio": "typewriter lover, developer 🇪🇬",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-102",
"createdAt": "2022-12-04T22:09:24.154Z"
}