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

res = requests.get(
    "https://example-data.com/api/v1/users/245"
)
user = res.json()
{
  "id": 245,
  "firstName": "Lawrence",
  "lastName": "Rogahn",
  "fullName": "Lawrence Rogahn",
  "username": "lawrence_rogahn33",
  "email": "lawrence_rogahn33@example.com",
  "phone": "(730) 841-9868",
  "bio": "educator, leader, student",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-245",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-245&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-245/1200/400",
  "emailVerified": true,
  "isActive": true,
  "twitterHandle": null,
  "createdAt": "2025-04-12T08:19:41.742Z",
  "updatedAt": "2025-07-26T00:51:06.966Z"
}
Draftbit