example-data.com

agents / #24

Agent #24

RE/MAX · land · 31 yrs

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/agents/24" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/agents/24"
);
const agent = await res.json();
import type { Agent } from "https://example-data.com/types/agents.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/agents/24"
);
const agent = (await res.json()) as Agent;
import requests

res = requests.get(
    "https://example-data.com/api/v1/agents/24"
)
agent = res.json()
{
  "id": 24,
  "userId": 198,
  "brokerage": "RE/MAX",
  "licenseNumber": "EJDLF8NIN3",
  "specialty": "land",
  "yearsExperience": 31,
  "rating": 4.6,
  "ratingCount": 73,
  "createdAt": "2019-06-26T22:16:04.867Z"
}
Draftbit