Wallace Batz
@wallace_batz
collectivization supporter, photographer 🤛🏼
- wallace_batz@example.com
- Phone
- (945) 213-7458
- Joined
- 10/28/2025
users / #229
@wallace_batz
collectivization supporter, photographer 🤛🏼
curl -sS \
"https://example-data.com/api/v1/users/229" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/229"
);
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/229"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/229"
)
user = res.json() {
"id": 229,
"firstName": "Wallace",
"lastName": "Batz",
"fullName": "Wallace Batz",
"username": "wallace_batz",
"email": "wallace_batz@example.com",
"phone": "(945) 213-7458",
"bio": "collectivization supporter, photographer 🤛🏼",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-229",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-229&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-229/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2025-10-28T17:49:23.510Z",
"updatedAt": "2025-12-08T14:59:44.809Z"
}