Krystal Bradtke
typewriter lover, developer 🇪🇬
- Phone
- +1 202-555-0101 ext 2
Overview
people / #102
typewriter lover, developer 🇪🇬
Request
curl example
curl -sS \ "https://example-data.com/api/v1/people/102" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/people/102" ); 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/102"
);
const person = (await res.json()) as Person; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/people/102"
)
people = res.json() Response
{
"id": 102,
"fullName": "Krystal Bradtke",
"firstName": "Krystal",
"lastName": "Bradtke",
"email": "krystal.bradtke-102@example.com",
"phone": "+1 202-555-0101 ext 2",
"occupation": "Lead Implementation Agent",
"city": "Champlinville",
"countryAlpha2": "CN",
"bio": "typewriter lover, developer 🇪🇬",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-102",
"createdAt": "2022-12-04T22:09:24.154Z"
}