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

res = requests.get(
    "https://example-data.com/api/v1/users/29"
)
user = res.json()
{
  "id": 29,
  "firstName": "Jensen",
  "lastName": "Bashirian",
  "fullName": "Jensen Bashirian",
  "username": "jensen_bashirian",
  "email": "jensen_bashirian@example.com",
  "phone": "(974) 772-8441",
  "bio": "business owner, environmentalist, leader",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-29",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-29&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-29/1200/400",
  "emailVerified": true,
  "isActive": true,
  "twitterHandle": "jensen_bashirian",
  "createdAt": "2024-08-20T00:25:34.241Z",
  "updatedAt": "2025-09-04T04:41:53.199Z"
}
Draftbit