Lenny Howe
@lenny.howe
person
- lenny.howe@example.com
- Phone
- (966) 619-1740
- Joined
- 1/8/2026
users / #37
@lenny.howe
person
curl -sS \
"https://example-data.com/api/v1/users/37" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/37"
);
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/37"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/37"
)
user = res.json() {
"id": 37,
"firstName": "Lenny",
"lastName": "Howe",
"fullName": "Lenny Howe",
"username": "lenny.howe",
"email": "lenny.howe@example.com",
"phone": "(966) 619-1740",
"bio": "person",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-37",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-37&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-37/1200/400",
"emailVerified": false,
"isActive": true,
"twitterHandle": null,
"createdAt": "2026-01-08T21:40:55.389Z",
"updatedAt": "2026-03-04T17:59:51.481Z"
}