Whitney O'Reilly
@whitney.oreilly
philosopher, singer, scientist
- Phone
- (602) 631-4272
- Joined
- 11/13/2024
users / #99
@whitney.oreilly
philosopher, singer, scientist
curl -sS \
"https://example-data.com/api/v1/users/99" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/99"
);
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/99"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/99"
)
user = res.json() {
"id": 99,
"firstName": "Whitney",
"lastName": "O'Reilly",
"fullName": "Whitney O'Reilly",
"username": "whitney.oreilly",
"email": "whitney.oreilly@example.com",
"phone": "(602) 631-4272",
"bio": "philosopher, singer, scientist",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-99",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-99&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-99/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": "whitney.oreilly",
"createdAt": "2024-11-13T16:33:45.026Z",
"updatedAt": "2025-12-25T06:48:00.040Z"
}