Monte Botsford
@monte_botsford
grouper enthusiast, designer
- Phone
- (415) 248-2727
- Joined
- 3/7/2025
users / #220
@monte_botsford
grouper enthusiast, designer
curl -sS \
"https://example-data.com/api/v1/users/220" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/220"
);
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/220"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/220"
)
user = res.json() {
"id": 220,
"firstName": "Monte",
"lastName": "Botsford",
"fullName": "Monte Botsford",
"username": "monte_botsford",
"email": "monte_botsford@example.com",
"phone": "(415) 248-2727",
"bio": "grouper enthusiast, designer",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-220",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-220&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-220/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": "monte_botsford",
"createdAt": "2025-03-07T10:59:09.811Z",
"updatedAt": "2025-09-15T15:49:24.392Z"
}