Gerda Olson
dreamer, engineer
- Phone
- +1 202-555-0121 ext 2
Overview
people / #122
dreamer, engineer
Request
curl example
curl -sS \ "https://example-data.com/api/v1/people/122" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/people/122" ); 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/122"
);
const person = (await res.json()) as Person; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/people/122"
)
people = res.json() Response
{
"id": 122,
"fullName": "Gerda Olson",
"firstName": "Gerda",
"lastName": "Olson",
"email": "gerda.olson-122@example.com",
"phone": "+1 202-555-0121 ext 2",
"occupation": "Chief Data Orchestrator",
"city": "Lake Micahburgh",
"countryAlpha2": "FR",
"bio": "dreamer, engineer",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-122",
"createdAt": "2023-10-04T09:02:36.661Z"
}