Cyril Ryan
filmmaker, singer, scientist
- Phone
- (630) 857-7777
people / #70
filmmaker, singer, scientist
curl -sS \
"https://example-data.com/api/v1/people/70" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/70"
);
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/70"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/70"
)
people = res.json() {
"id": 70,
"fullName": "Cyril Ryan",
"firstName": "Cyril",
"lastName": "Ryan",
"email": "cyril.ryan-70@example.com",
"phone": "(630) 857-7777",
"occupation": "Corporate Operations Producer",
"city": "North Clemens",
"countryAlpha2": "IE",
"bio": "filmmaker, singer, scientist",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-70",
"createdAt": "2021-06-06T08:59:26.704Z"
}