Aimee Little
tomb supporter 🔠
- Phone
- (271) 802-4331
people / #132
tomb supporter 🔠
curl -sS \
"https://example-data.com/api/v1/people/132" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/132"
);
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/132"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/132"
)
people = res.json() {
"id": 132,
"fullName": "Aimee Little",
"firstName": "Aimee",
"lastName": "Little",
"email": "aimee.little-132@example.com",
"phone": "(271) 802-4331",
"occupation": "Principal Quality Designer",
"city": "Russelburgh",
"countryAlpha2": "IT",
"bio": "tomb supporter 🔠",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-132",
"createdAt": "2022-05-13T16:09:27.603Z"
}