example-data.com

agents

agents

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

Agent #1

RE/MAX · land · 15 yrs

Agent #2

RE/MAX · residential · 2 yrs

Agent #3

Keller Williams · residential · 24 yrs

Agent #4

eXp Realty · residential · 29 yrs

Agent #5

Century 21 · rental · 3 yrs

Agent #6

Century 21 · commercial · 0 yrs

Showing first 6 of 24 on this page.

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

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

res = requests.get(
    "https://example-data.com/api/v1/agents",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 1,
      "userId": 55,
      "brokerage": "RE/MAX",
      "licenseNumber": "HFQC39M9VT",
      "specialty": "land",
      "yearsExperience": 15,
      "rating": 4.8,
      "ratingCount": 77,
      "createdAt": "2024-06-01T00:18:28.217Z"
    },
    {
      "id": 2,
      "userId": 135,
      "brokerage": "RE/MAX",
      "licenseNumber": "5S488SFLBR",
      "specialty": "residential",
      "yearsExperience": 2,
      "rating": 3.9,
      "ratingCount": 211,
      "createdAt": "2022-02-05T06:11:12.579Z"
    },
    {
      "id": 3,
      "userId": 75,
      "brokerage": "Keller Williams",
      "licenseNumber": "GS9TOHGNBE",
      "specialty": "residential",
      "yearsExperience": 24,
      "rating": 3.4,
      "ratingCount": 279,
      "createdAt": "2025-07-26T06:10:32.208Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 50,
    "totalPages": 2
  },
  "links": {
    "self": "/api/v1/agents?page=1",
    "first": "/api/v1/agents?page=1",
    "last": "/api/v1/agents?page=2",
    "next": "/api/v1/agents?page=2",
    "prev": null
  }
}

View full response →

Draftbit