Cyril Frami
@cyril_frami88
parent
- Phone
- (588) 984-9778
- Joined
- 12/26/2025
users / #182
@cyril_frami88
parent
curl -sS \
"https://example-data.com/api/v1/users/182" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/182"
);
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/182"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/182"
)
user = res.json() {
"id": 182,
"firstName": "Cyril",
"lastName": "Frami",
"fullName": "Cyril Frami",
"username": "cyril_frami88",
"email": "cyril_frami88@example.com",
"phone": "(588) 984-9778",
"bio": "parent",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-182",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-182&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-182/1200/400",
"emailVerified": false,
"isActive": false,
"twitterHandle": null,
"createdAt": "2025-12-26T03:23:44.542Z",
"updatedAt": "2026-05-10T07:33:35.160Z"
}