example-data.com

people

people

Page 5 of 9.

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/people?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/people?limit=25"
);
const { data, meta } = await res.json();
import type { People, ListEnvelope } from "https://example-data.com/types/people.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/people?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<People>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/people",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 97,
      "fullName": "Orpha Prohaska-Padberg",
      "firstName": "Orpha",
      "lastName": "Prohaska-Padberg",
      "email": "orpha.prohaskapadberg-97@example.com",
      "phone": "(393) 381-1603",
      "occupation": "Direct Metrics Officer",
      "city": "North Destin",
      "countryAlpha2": "NZ",
      "bio": "ostrich advocate, author 🤜🏼",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-97",
      "createdAt": "2024-01-05T01:59:36.970Z"
    },
    {
      "id": 98,
      "fullName": "Merle Cassin",
      "firstName": "Merle",
      "lastName": "Cassin",
      "email": "merle.cassin-98@example.com",
      "phone": "(586) 752-8808",
      "occupation": "Human Branding Manager",
      "city": "North Wilburncester",
      "countryAlpha2": "NO",
      "bio": "model",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-98",
      "createdAt": "2022-10-23T19:44:28.964Z"
    },
    {
      "id": 99,
      "fullName": "Verlie Buckridge",
      "firstName": "Verlie",
      "lastName": "Buckridge",
      "email": "verlie.buckridge-99@example.com",
      "phone": "(286) 700-6581",
      "occupation": "Customer Accounts Architect",
      "city": "Findlay",
      "countryAlpha2": "TR",
      "bio": "blogger, filmmaker, coach",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-99",
      "createdAt": "2024-08-09T09:35:08.473Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/people?page=5",
    "next": "/api/v1/people?page=6",
    "prev": "/api/v1/people?page=4"
  }
}
Draftbit