Sienna Dicki
photographer, leader
- Phone
- (253) 424-8355
people / #22
photographer, leader
curl -sS \
"https://example-data.com/api/v1/people/22" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/22"
);
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/22"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/22"
)
people = res.json() {
"id": 22,
"fullName": "Sienna Dicki",
"firstName": "Sienna",
"lastName": "Dicki",
"email": "sienna.dicki-22@example.com",
"phone": "(253) 424-8355",
"occupation": "Dynamic Directives Technician",
"city": "West Hartford",
"countryAlpha2": "JP",
"bio": "photographer, leader",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-22",
"createdAt": "2023-07-08T14:40:25.032Z"
}