Torey Ebert
linseed devotee, philosopher 🖖🏿
- Phone
- +1 202-555-0132 ext 2
Overview
people / #133
linseed devotee, philosopher 🖖🏿
Request
curl example
curl -sS \ "https://example-data.com/api/v1/people/133" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/people/133" ); 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/133"
);
const person = (await res.json()) as Person; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/people/133"
)
people = res.json() Response
{
"id": 133,
"fullName": "Torey Ebert",
"firstName": "Torey",
"lastName": "Ebert",
"email": "torey.ebert-133@example.com",
"phone": "+1 202-555-0132 ext 2",
"occupation": "Internal Interactions Specialist",
"city": "South Travon",
"countryAlpha2": "PE",
"bio": "linseed devotee, philosopher 🖖🏿",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-133",
"createdAt": "2021-06-09T11:29:19.967Z"
}