Hershel Smitham
@hershel.smitham
film lover, coach, environmentalist
- Phone
- (359) 521-0483
- Joined
- 12/24/2025
users / #147
@hershel.smitham
film lover, coach, environmentalist
curl -sS \
"https://example-data.com/api/v1/users/147" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/147"
);
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/147"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/147"
)
user = res.json() {
"id": 147,
"firstName": "Hershel",
"lastName": "Smitham",
"fullName": "Hershel Smitham",
"username": "hershel.smitham",
"email": "hershel.smitham@example.com",
"phone": "(359) 521-0483",
"bio": "film lover, coach, environmentalist",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-147",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-147&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-147/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": "hershel.smitham",
"createdAt": "2025-12-24T14:06:40.518Z",
"updatedAt": "2026-01-09T03:04:56.472Z"
}