Rubye Franey
freckle supporter
- Phone
- (641) 882-5733
people / #79
freckle supporter
curl -sS \
"https://example-data.com/api/v1/people/79" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/79"
);
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/79"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/79"
)
people = res.json() {
"id": 79,
"fullName": "Rubye Franey",
"firstName": "Rubye",
"lastName": "Franey",
"email": "rubye.franey-79@example.com",
"phone": "(641) 882-5733",
"occupation": "Senior Implementation Administrator",
"city": "New Adelabury",
"countryAlpha2": "ZA",
"bio": "freckle supporter",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-79",
"createdAt": "2023-04-02T19:23:22.161Z"
}