Jacynthe Murazik
blogger, philosopher
- Phone
- (632) 225-7996
people / #112
blogger, philosopher
curl -sS \
"https://example-data.com/api/v1/people/112" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/112"
);
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/112"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/112"
)
people = res.json() {
"id": 112,
"fullName": "Jacynthe Murazik",
"firstName": "Jacynthe",
"lastName": "Murazik",
"email": "jacynthe.murazik-112@example.com",
"phone": "(632) 225-7996",
"occupation": "Regional Web Supervisor",
"city": "Dachstad",
"countryAlpha2": "IL",
"bio": "blogger, philosopher",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-112",
"createdAt": "2024-08-27T22:55:57.282Z"
}