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

res = requests.get(
    "https://example-data.com/api/v1/users/217"
)
user = res.json()
{
  "id": 217,
  "firstName": "Sarah",
  "lastName": "West",
  "fullName": "Sarah West",
  "username": "sarah.west",
  "email": "sarah.west@example.com",
  "phone": "(357) 579-4111",
  "bio": "scientist, friend, dreamer 🇧🇮",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-217",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-217&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-217/1200/400",
  "emailVerified": true,
  "isActive": true,
  "twitterHandle": "sarah.west",
  "createdAt": "2026-03-27T07:34:22.165Z",
  "updatedAt": "2026-04-22T06:41:53.528Z"
}
Draftbit