Anne Hamill
@anne_hamill75
gamer, founder, public speaker
- Phone
- (624) 372-8684
- Joined
- 1/30/2026
users / #9
@anne_hamill75
gamer, founder, public speaker
curl -sS \
"https://example-data.com/api/v1/users/9" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/9"
);
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/9"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/9"
)
user = res.json() {
"id": 9,
"firstName": "Anne",
"lastName": "Hamill",
"fullName": "Anne Hamill",
"username": "anne_hamill75",
"email": "anne_hamill75@example.com",
"phone": "(624) 372-8684",
"bio": "gamer, founder, public speaker",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-9",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-9&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-9/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2026-01-30T01:27:46.017Z",
"updatedAt": "2026-03-20T03:38:57.440Z"
}