Vito Glover
person
- Phone
- +1 202-555-0155 ext 1
Overview
people / #56
person
Vito Glover
person
Request
curl example
curl -sS \ "https://example-data.com/api/v1/people/56" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/people/56" ); 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/56"
);
const person = (await res.json()) as Person; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/people/56"
)
people = res.json() Response
{
"id": 56,
"fullName": "Vito Glover",
"firstName": "Vito",
"lastName": "Glover",
"email": "vito.glover-56@example.com",
"phone": "+1 202-555-0155 ext 1",
"occupation": "Dynamic Data Associate",
"city": "Port Freeman",
"countryAlpha2": "NG",
"bio": "person",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-56",
"createdAt": "2022-07-10T16:16:22.189Z"
}