Torey Leuschke
hunger junkie, gamer 👧🏻
- Phone
- +1 202-555-0186 ext 1
Overview
people / #87
hunger junkie, gamer 👧🏻
Request
curl example
curl -sS \ "https://example-data.com/api/v1/people/87" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/people/87" ); 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/87"
);
const person = (await res.json()) as Person; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/people/87"
)
people = res.json() Response
{
"id": 87,
"fullName": "Torey Leuschke",
"firstName": "Torey",
"lastName": "Leuschke",
"email": "torey.leuschke-87@example.com",
"phone": "+1 202-555-0186 ext 1",
"occupation": "Direct Division Designer",
"city": "Adamsport",
"countryAlpha2": "FJ",
"bio": "hunger junkie, gamer 👧🏻",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-87",
"createdAt": "2023-01-31T22:36:29.344Z"
}