example-data.com

people

people

Browse 200 people records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

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": 1,
      "fullName": "Ricardo Conn",
      "firstName": "Ricardo",
      "lastName": "Conn",
      "email": "ricardo.conn-1@example.com",
      "phone": "(589) 958-7500",
      "occupation": "Dynamic Configuration Technician",
      "city": "North Crystelborough",
      "countryAlpha2": "IL",
      "bio": "coach, photographer, parent",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-1",
      "createdAt": "2025-12-07T03:26:56.541Z"
    },
    {
      "id": 2,
      "fullName": "Salma Daniel",
      "firstName": "Salma",
      "lastName": "Daniel",
      "email": "salma.daniel-2@example.com",
      "phone": "(394) 963-9421",
      "occupation": "Senior Paradigm Planner",
      "city": "Turcotteshire",
      "countryAlpha2": "PT",
      "bio": "geek, model, patriot 🏖️",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-2",
      "createdAt": "2024-07-05T21:26:14.845Z"
    },
    {
      "id": 3,
      "fullName": "Ardith Williamson",
      "firstName": "Ardith",
      "lastName": "Williamson",
      "email": "ardith.williamson-3@example.com",
      "phone": "(622) 850-4016",
      "occupation": "Senior Marketing Engineer",
      "city": "South Noel",
      "countryAlpha2": "TR",
      "bio": "tenement enthusiast  🤲🏿",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-3",
      "createdAt": "2024-02-24T21:16:17.295Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 200,
    "totalPages": 8
  },
  "links": {
    "self": "/api/v1/people?page=1",
    "first": "/api/v1/people?page=1",
    "last": "/api/v1/people?page=8",
    "next": "/api/v1/people?page=2",
    "prev": null
  }
}

View full response →

Draftbit