Winfield Doyle
geek, foodie
- Phone
- (652) 362-7339
people / #114
geek, foodie
Winfield Doyle
geek, foodie
curl -sS \
"https://example-data.com/api/v1/people/114" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/114"
);
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/114"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/114"
)
people = res.json() {
"id": 114,
"fullName": "Winfield Doyle",
"firstName": "Winfield",
"lastName": "Doyle",
"email": "winfield.doyle-114@example.com",
"phone": "(652) 362-7339",
"occupation": "Global Metrics Executive",
"city": "Katlynnshire",
"countryAlpha2": "TH",
"bio": "geek, foodie",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-114",
"createdAt": "2026-05-13T18:12:57.667Z"
}