Matilde Beahan
@matilde_beahan
partridge supporter
- Phone
- (544) 902-7018
- Joined
- 11/26/2025
users / #96
@matilde_beahan
partridge supporter
curl -sS \
"https://example-data.com/api/v1/users/96" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/96"
);
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/96"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/96"
)
user = res.json() {
"id": 96,
"firstName": "Matilde",
"lastName": "Beahan",
"fullName": "Matilde Beahan",
"username": "matilde_beahan",
"email": "matilde_beahan@example.com",
"phone": "(544) 902-7018",
"bio": "partridge supporter",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-96",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-96&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-96/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2025-11-26T09:26:26.232Z",
"updatedAt": "2026-01-04T10:20:55.661Z"
}