Colby Kovacek
@colby_kovacek40
flight junkie
- Phone
- +1 202-555-0184 ext 1
- Joined
- 4/20/2025
Overview
users / #85
@colby_kovacek40
flight junkie
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users/85" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/users/85" ); 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/85"
);
const user = (await res.json()) as User; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users/85"
)
user = res.json() Response
{
"id": 85,
"firstName": "Colby",
"lastName": "Kovacek",
"fullName": "Colby Kovacek",
"username": "colby_kovacek40",
"email": "colby_kovacek40@example.com",
"phone": "+1 202-555-0184 ext 1",
"bio": "flight junkie",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-85",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-85&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-85/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2025-04-20T02:33:42.279Z",
"updatedAt": "2026-03-29T11:06:33.706Z"
}