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

res = requests.get(
    "https://example-data.com/api/v1/users/18"
)
user = res.json()
{
  "id": 18,
  "firstName": "Kenya",
  "lastName": "Abshire",
  "fullName": "Kenya Abshire",
  "username": "kenya.abshire",
  "email": "kenya.abshire@example.com",
  "phone": "(846) 684-3322",
  "bio": "friend, traveler",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-18",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-18&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-18/1200/400",
  "emailVerified": false,
  "isActive": true,
  "twitterHandle": null,
  "createdAt": "2025-04-03T03:00:37.598Z",
  "updatedAt": "2025-11-17T14:26:33.053Z"
}
Draftbit