Adan Weber
@adan.weber61
inventor
- adan.weber61@example.com
- Phone
- (312) 506-5820
- Joined
- 3/8/2026
users / #155
@adan.weber61
inventor
curl -sS \
"https://example-data.com/api/v1/users/155" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/155"
);
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/155"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/155"
)
user = res.json() {
"id": 155,
"firstName": "Adan",
"lastName": "Weber",
"fullName": "Adan Weber",
"username": "adan.weber61",
"email": "adan.weber61@example.com",
"phone": "(312) 506-5820",
"bio": "inventor",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-155",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-155&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-155/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2026-03-08T05:00:49.283Z",
"updatedAt": "2026-04-13T10:24:58.289Z"
}