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

res = requests.get(
    "https://example-data.com/api/v1/users/250"
)
user = res.json()
{
  "id": 250,
  "firstName": "Michale",
  "lastName": "Hilpert",
  "fullName": "Michale Hilpert",
  "username": "michale_hilpert62",
  "email": "michale_hilpert62@example.com",
  "phone": "(266) 554-0505",
  "bio": "parent, public speaker, geek",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-250",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-250&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-250/1200/400",
  "emailVerified": false,
  "isActive": true,
  "twitterHandle": "michale_hilpert62",
  "createdAt": "2025-04-13T21:42:38.329Z",
  "updatedAt": "2025-05-28T17:59:47.237Z"
}
Draftbit