Jacynthe Murazik
blogger, philosopher
- Phone
- +1 202-555-0111 ext 2
Overview
people / #112
blogger, philosopher
Request
curl example
curl -sS \ "https://example-data.com/api/v1/people/112" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/people/112" ); const person = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/people.d.ts https://example-data.com/types/people.d.ts
import type { Person } from "./types/people";
const res = await fetch(
"https://example-data.com/api/v1/people/112"
);
const person = (await res.json()) as Person; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/people/112"
)
people = res.json() Response
{
"id": 112,
"fullName": "Jacynthe Murazik",
"firstName": "Jacynthe",
"lastName": "Murazik",
"email": "jacynthe.murazik-112@example.com",
"phone": "+1 202-555-0111 ext 2",
"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"
}