Phyllis Grimes
musician, author, activist 🧱
- Phone
- +1 202-555-0181 ext 1
Overview
people / #82
musician, author, activist 🧱
Request
curl example
curl -sS \ "https://example-data.com/api/v1/people/82" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/people/82" ); 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/82"
);
const person = (await res.json()) as Person; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/people/82"
)
people = res.json() Response
{
"id": 82,
"fullName": "Phyllis Grimes",
"firstName": "Phyllis",
"lastName": "Grimes",
"email": "phyllis.grimes-82@example.com",
"phone": "+1 202-555-0181 ext 1",
"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"
}