Claudia Rosenbaum-Wilderman
wasabi advocate
- Phone
- (350) 762-0069
people / #46
wasabi advocate
curl -sS \
"https://example-data.com/api/v1/people/46" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/46"
);
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/46"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/46"
)
people = res.json() {
"id": 46,
"fullName": "Claudia Rosenbaum-Wilderman",
"firstName": "Claudia",
"lastName": "Rosenbaum-Wilderman",
"email": "claudia.rosenbaumwilderman-46@example.com",
"phone": "(350) 762-0069",
"occupation": "Investor Accounts Director",
"city": "Catonsville",
"countryAlpha2": "ES",
"bio": "wasabi advocate",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-46",
"createdAt": "2022-04-22T13:52:19.896Z"
}