Griffin Williamson-Armstrong
pine junkie
- Phone
- (599) 220-4196
people / #42
pine junkie
curl -sS \
"https://example-data.com/api/v1/people/42" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/42"
);
const people = await res.json();import type { People } from "https://example-data.com/types/people.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/people/42"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/42"
)
people = res.json() {
"id": 42,
"fullName": "Griffin Williamson-Armstrong",
"firstName": "Griffin",
"lastName": "Williamson-Armstrong",
"email": "griffin.williamsonarmstrong-42@example.com",
"phone": "(599) 220-4196",
"occupation": "Internal Markets Strategist",
"city": "West Carrie",
"countryAlpha2": "PL",
"bio": "pine junkie",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-42",
"createdAt": "2022-08-13T11:24:36.157Z"
}