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

const res = await fetch(
  "https://example-data.com/api/v1/users/98"
);
const user = (await res.json()) as User;
import requests

res = requests.get(
    "https://example-data.com/api/v1/users/98"
)
user = res.json()
{
  "id": 98,
  "firstName": "Tabitha",
  "lastName": "McKenzie",
  "fullName": "Tabitha McKenzie",
  "username": "tabitha_mckenzie",
  "email": "tabitha_mckenzie@example.com",
  "phone": "(707) 741-5069",
  "bio": "harp junkie, founder 🇵🇰",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-98",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-98&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-98/1200/400",
  "emailVerified": false,
  "isActive": true,
  "twitterHandle": null,
  "createdAt": "2025-01-06T01:01:40.791Z",
  "updatedAt": "2025-03-31T17:12:36.580Z"
}
Draftbit