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

res = requests.get(
    "https://example-data.com/api/v1/users/102"
)
user = res.json()
{
  "id": 102,
  "firstName": "Lazaro",
  "lastName": "Rath",
  "fullName": "Lazaro Rath",
  "username": "lazaro.rath42",
  "email": "lazaro.rath42@example.com",
  "phone": "(236) 770-6406",
  "bio": "ice-cream supporter, designer 🐚",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-102",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-102&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-102/1200/400",
  "emailVerified": true,
  "isActive": true,
  "twitterHandle": "lazaro.rath42",
  "createdAt": "2026-03-06T02:13:58.142Z",
  "updatedAt": "2026-04-22T23:26:26.078Z"
}
Draftbit