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

res = requests.get(
    "https://example-data.com/api/v1/users/227"
)
user = res.json()
{
  "id": 227,
  "firstName": "Cassidy",
  "lastName": "Price-Schimmel",
  "fullName": "Cassidy Price-Schimmel",
  "username": "cassidy.price-schimmel",
  "email": "cassidy.price-schimmel@example.com",
  "phone": "(543) 446-6178",
  "bio": "derby fan, activist ➖",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-227",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-227&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-227/1200/400",
  "emailVerified": true,
  "isActive": true,
  "twitterHandle": "cassidy.price-schimmel",
  "createdAt": "2024-07-24T20:30:02.756Z",
  "updatedAt": "2025-06-30T16:09:44.874Z"
}
Draftbit