Karlie Weber
thigh junkie 📓
- Phone
- (504) 628-6126
people / #67
thigh junkie 📓
Karlie Weber
thigh junkie 📓
curl -sS \
"https://example-data.com/api/v1/people/67" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/67"
);
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/67"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/67"
)
people = res.json() {
"id": 67,
"fullName": "Karlie Weber",
"firstName": "Karlie",
"lastName": "Weber",
"email": "karlie.weber-67@example.com",
"phone": "(504) 628-6126",
"occupation": "Regional Paradigm Liaison",
"city": "Alessiaside",
"countryAlpha2": "FR",
"bio": "thigh junkie 📓",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-67",
"createdAt": "2024-02-03T21:38:12.142Z"
}