example-data.com
Menu
Browse docs and collections

people

people

Browse 200 people records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

Overview

Cards

Compact

Detailed

Showing first 6 of 24 on this page.

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/people?limit=25"

JavaScript example

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

TypeScript example

// Download once: mkdir -p types && curl -o types/people.d.ts https://example-data.com/types/people.d.ts
import type { Person, ListEnvelope } from "./types/people";

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/people",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 1,
      "fullName": "Ricardo Conn",
      "firstName": "Ricardo",
      "lastName": "Conn",
      "email": "ricardo.conn-1@example.com",
      "phone": "+1 202-555-0100 ext 1",
      "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": "+1 202-555-0101 ext 1",
      "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": "+1 202-555-0102 ext 1",
      "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 →