Quentin Gutkowski
model
- Phone
- (759) 812-7287
people / #123
model
Quentin Gutkowski
model
curl -sS \
"https://example-data.com/api/v1/people/123" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/123"
);
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/123"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/123"
)
people = res.json() {
"id": 123,
"fullName": "Quentin Gutkowski",
"firstName": "Quentin",
"lastName": "Gutkowski",
"email": "quentin.gutkowski-123@example.com",
"phone": "(759) 812-7287",
"occupation": "Central Configuration Associate",
"city": "Lake Bernice",
"countryAlpha2": "NZ",
"bio": "model",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-123",
"createdAt": "2025-01-06T01:53:39.473Z"
}