example-data.com

agents

agents

Page 2 of 3.

Agent #25

Coldwell Banker · land · 35 yrs

Agent #26

RE/MAX · rental · 24 yrs

Agent #27

Berkshire Hathaway HomeServices · commercial · 13 yrs

Agent #28

Compass · luxury · 22 yrs

Agent #29

Century 21 · residential · 11 yrs

Agent #30

Keller Williams · land · 31 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": 25,
      "userId": 36,
      "brokerage": "Coldwell Banker",
      "licenseNumber": "KWS5RPBD94",
      "specialty": "land",
      "yearsExperience": 35,
      "rating": 4.3,
      "ratingCount": 81,
      "createdAt": "2021-07-18T14:23:21.197Z"
    },
    {
      "id": 26,
      "userId": 227,
      "brokerage": "RE/MAX",
      "licenseNumber": "8RFLYG6HO5",
      "specialty": "rental",
      "yearsExperience": 24,
      "rating": 3.5,
      "ratingCount": 263,
      "createdAt": "2022-05-31T06:34:57.046Z"
    },
    {
      "id": 27,
      "userId": 187,
      "brokerage": "Berkshire Hathaway HomeServices",
      "licenseNumber": "64VL77ELFM",
      "specialty": "commercial",
      "yearsExperience": 13,
      "rating": 5,
      "ratingCount": 115,
      "createdAt": "2023-03-13T21:24:50.005Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 50,
    "totalPages": 3
  },
  "links": {
    "self": "/api/v1/agents?page=2",
    "next": "/api/v1/agents?page=3",
    "prev": "/api/v1/agents?page=1"
  }
}
Draftbit