Savanna Powlowski
doubter lover, engineer
- Phone
- (512) 687-8592
people / #72
doubter lover, engineer
curl -sS \
"https://example-data.com/api/v1/people/72" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/72"
);
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/72"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/72"
)
people = res.json() {
"id": 72,
"fullName": "Savanna Powlowski",
"firstName": "Savanna",
"lastName": "Powlowski",
"email": "savanna.powlowski-72@example.com",
"phone": "(512) 687-8592",
"occupation": "Direct Brand Assistant",
"city": "North Nathaniel",
"countryAlpha2": "ZA",
"bio": "doubter lover, engineer",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-72",
"createdAt": "2026-02-13T15:21:44.514Z"
}