Roosevelt Ullrich
@roosevelt.ullrich75
hoof lover, friend 🦕
- Phone
- (981) 436-0237
- Joined
- 2/4/2025
users / #237
@roosevelt.ullrich75
hoof lover, friend 🦕
curl -sS \
"https://example-data.com/api/v1/users/237" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/237"
);
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/237"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/237"
)
user = res.json() {
"id": 237,
"firstName": "Roosevelt",
"lastName": "Ullrich",
"fullName": "Roosevelt Ullrich",
"username": "roosevelt.ullrich75",
"email": "roosevelt.ullrich75@example.com",
"phone": "(981) 436-0237",
"bio": "hoof lover, friend 🦕",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-237",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-237&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-237/1200/400",
"emailVerified": false,
"isActive": true,
"twitterHandle": null,
"createdAt": "2025-02-04T14:42:39.010Z",
"updatedAt": "2026-02-23T06:46:00.012Z"
}