Tillman Breitenberg
@tillman_breitenberg54
chow junkie, coach 🏀
- Phone
- (444) 621-6962
- Joined
- 3/30/2026
users / #145
@tillman_breitenberg54
chow junkie, coach 🏀
curl -sS \
"https://example-data.com/api/v1/users/145" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/145"
);
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/145"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/145"
)
user = res.json() {
"id": 145,
"firstName": "Tillman",
"lastName": "Breitenberg",
"fullName": "Tillman Breitenberg",
"username": "tillman_breitenberg54",
"email": "tillman_breitenberg54@example.com",
"phone": "(444) 621-6962",
"bio": "chow junkie, coach 🏀",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-145",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-145&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-145/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2026-03-30T22:43:49.261Z",
"updatedAt": "2026-04-08T18:07:09.652Z"
}