example-data.com

people / #166

Component variants

curl -sS \
  "https://example-data.com/api/v1/people/166" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/people/166"
);
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/166"
);
const people = (await res.json()) as People;
import requests

res = requests.get(
    "https://example-data.com/api/v1/people/166"
)
people = res.json()
{
  "id": 166,
  "fullName": "Nichole Parisian",
  "firstName": "Nichole",
  "lastName": "Parisian",
  "email": "nichole.parisian-166@example.com",
  "phone": "(201) 363-1752",
  "occupation": "Product Functionality Executive",
  "city": "North Josianneworth",
  "countryAlpha2": "NG",
  "bio": "captain supporter, traveler",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-166",
  "createdAt": "2022-03-29T03:20:48.943Z"
}
Draftbit