Verlie Buckridge
blogger, filmmaker, coach
- Phone
- (286) 700-6581
people / #99
blogger, filmmaker, coach
curl -sS \
"https://example-data.com/api/v1/people/99" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/99"
);
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/99"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/99"
)
people = res.json() {
"id": 99,
"fullName": "Verlie Buckridge",
"firstName": "Verlie",
"lastName": "Buckridge",
"email": "verlie.buckridge-99@example.com",
"phone": "(286) 700-6581",
"occupation": "Customer Accounts Architect",
"city": "Findlay",
"countryAlpha2": "TR",
"bio": "blogger, filmmaker, coach",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-99",
"createdAt": "2024-08-09T09:35:08.473Z"
}