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

res = requests.get(
    "https://example-data.com/api/v1/users/122"
)
user = res.json()
{
  "id": 122,
  "firstName": "Nikko",
  "lastName": "Kuhlman",
  "fullName": "Nikko Kuhlman",
  "username": "nikko_kuhlman",
  "email": "nikko_kuhlman@example.com",
  "phone": "(422) 696-4044",
  "bio": "fax enthusiast",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-122",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-122&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-122/1200/400",
  "emailVerified": true,
  "isActive": false,
  "twitterHandle": null,
  "createdAt": "2024-06-03T17:49:45.002Z",
  "updatedAt": "2025-11-01T22:54:59.126Z"
}
Draftbit