Manuel Turner
bug lover
- Phone
- (940) 445-5182
people / #106
bug lover
Manuel Turner
bug lover
curl -sS \
"https://example-data.com/api/v1/people/106" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/106"
);
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/106"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/106"
)
people = res.json() {
"id": 106,
"fullName": "Manuel Turner",
"firstName": "Manuel",
"lastName": "Turner",
"email": "manuel.turner-106@example.com",
"phone": "(940) 445-5182",
"occupation": "Legacy Response Producer",
"city": "Paterson",
"countryAlpha2": "CN",
"bio": "bug lover",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-106",
"createdAt": "2022-06-02T12:02:17.350Z"
}