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

res = requests.get(
    "https://example-data.com/api/v1/users/40"
)
user = res.json()
{
  "id": 40,
  "firstName": "Gwendolyn",
  "lastName": "Wyman",
  "fullName": "Gwendolyn Wyman",
  "username": "gwendolyn.wyman87",
  "email": "gwendolyn.wyman87@example.com",
  "phone": "(590) 449-7671",
  "bio": "platter advocate, coach 🏕️",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-40",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-40&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-40/1200/400",
  "emailVerified": true,
  "isActive": true,
  "twitterHandle": "gwendolyn.wyman87",
  "createdAt": "2025-06-28T08:25:32.733Z",
  "updatedAt": "2026-05-05T06:58:43.973Z"
}
Draftbit