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

res = requests.get(
    "https://example-data.com/api/v1/users/150"
)
user = res.json()
{
  "id": 150,
  "firstName": "Jonathan",
  "lastName": "Howe",
  "fullName": "Jonathan Howe",
  "username": "jonathan_howe77",
  "email": "jonathan_howe77@example.com",
  "phone": "(537) 289-0149",
  "bio": "film lover, filmmaker",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-150",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-150&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-150/1200/400",
  "emailVerified": false,
  "isActive": true,
  "twitterHandle": null,
  "createdAt": "2024-09-18T21:03:09.432Z",
  "updatedAt": "2026-01-03T05:31:40.098Z"
}
Draftbit