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

res = requests.get(
    "https://example-data.com/api/v1/users/231"
)
user = res.json()
{
  "id": 231,
  "firstName": "Adelia",
  "lastName": "Roberts",
  "fullName": "Adelia Roberts",
  "username": "adelia_roberts0",
  "email": "adelia_roberts0@example.com",
  "phone": "(731) 792-9312",
  "bio": "haversack supporter",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-231",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-231&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-231/1200/400",
  "emailVerified": true,
  "isActive": true,
  "twitterHandle": "adelia_roberts0",
  "createdAt": "2026-01-18T04:37:02.952Z",
  "updatedAt": "2026-04-19T17:07:23.955Z"
}
Draftbit