Monte Botsford
@monte_botsford
grouper enthusiast, designer
- Phone
- +1 202-555-0119 ext 3
- Joined
- 3/7/2025
Overview
users / #220
@monte_botsford
grouper enthusiast, designer
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users/220" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/users/220" ); const user = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/users.d.ts https://example-data.com/types/users.d.ts
import type { User } from "./types/users";
const res = await fetch(
"https://example-data.com/api/v1/users/220"
);
const user = (await res.json()) as User; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users/220"
)
user = res.json() Response
{
"id": 220,
"firstName": "Monte",
"lastName": "Botsford",
"fullName": "Monte Botsford",
"username": "monte_botsford",
"email": "monte_botsford@example.com",
"phone": "+1 202-555-0119 ext 3",
"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"
}