example-data.com

agents / #10

Agent #10

Keller Williams · rental · 0 yrs

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/agents/10" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/agents/10"
);
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/10"
);
const agent = (await res.json()) as Agent;
import requests

res = requests.get(
    "https://example-data.com/api/v1/agents/10"
)
agent = res.json()
{
  "id": 10,
  "userId": 226,
  "brokerage": "Keller Williams",
  "licenseNumber": "WWJO03Z4QD",
  "specialty": "rental",
  "yearsExperience": 0,
  "rating": 4.7,
  "ratingCount": 2,
  "createdAt": "2016-09-13T21:43:06.356Z"
}
Draftbit