Freida Schulist
business owner, filmmaker, person 🇮🇶
- Phone
- (780) 761-5854
people / #144
business owner, filmmaker, person 🇮🇶
curl -sS \
"https://example-data.com/api/v1/people/144" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/144"
);
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/144"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/144"
)
people = res.json() {
"id": 144,
"fullName": "Freida Schulist",
"firstName": "Freida",
"lastName": "Schulist",
"email": "freida.schulist-144@example.com",
"phone": "(780) 761-5854",
"occupation": "Future Integration Agent",
"city": "East Murphy",
"countryAlpha2": "FI",
"bio": "business owner, filmmaker, person 🇮🇶",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-144",
"createdAt": "2025-09-04T05:52:53.648Z"
}