Nikko Kuhlman
@nikko_kuhlman
fax enthusiast
- Phone
- +1 202-555-0121 ext 2
- Joined
- 6/3/2024
Overview
users / #122
@nikko_kuhlman
fax enthusiast
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users/122" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/users/122" ); const user = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/users.d.ts https://example-data.com/types/users.d.ts
import type { User } from "./types/users";
const res = await fetch(
"https://example-data.com/api/v1/users/122"
);
const user = (await res.json()) as User; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users/122"
)
user = res.json() Response
{
"id": 122,
"firstName": "Nikko",
"lastName": "Kuhlman",
"fullName": "Nikko Kuhlman",
"username": "nikko_kuhlman",
"email": "nikko_kuhlman@example.com",
"phone": "+1 202-555-0121 ext 2",
"bio": "fax enthusiast",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-122",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-122&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-122/1200/400",
"emailVerified": true,
"isActive": false,
"twitterHandle": null,
"createdAt": "2024-06-03T17:49:45.002Z",
"updatedAt": "2025-11-01T22:54:59.126Z"
}