Phyllis Grimes
musician, author, activist 🧱
- Phone
- (298) 890-2366
people / #82
musician, author, activist 🧱
curl -sS \
"https://example-data.com/api/v1/people/82" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/82"
);
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/82"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/82"
)
people = res.json() {
"id": 82,
"fullName": "Phyllis Grimes",
"firstName": "Phyllis",
"lastName": "Grimes",
"email": "phyllis.grimes-82@example.com",
"phone": "(298) 890-2366",
"occupation": "Future Quality Engineer",
"city": "West Antoniobury",
"countryAlpha2": "TH",
"bio": "musician, author, activist 🧱",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-82",
"createdAt": "2024-02-28T01:24:27.752Z"
}