Kenya Abshire
@kenya.abshire
friend, traveler
- Phone
- +1 202-555-0117 ext 1
- Joined
- 4/3/2025
Overview
users / #18
@kenya.abshire
friend, traveler
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users/18" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/users/18" ); 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/18"
);
const user = (await res.json()) as User; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users/18"
)
user = res.json() Response
{
"id": 18,
"firstName": "Kenya",
"lastName": "Abshire",
"fullName": "Kenya Abshire",
"username": "kenya.abshire",
"email": "kenya.abshire@example.com",
"phone": "+1 202-555-0117 ext 1",
"bio": "friend, traveler",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-18",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-18&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-18/1200/400",
"emailVerified": false,
"isActive": true,
"twitterHandle": null,
"createdAt": "2025-04-03T03:00:37.598Z",
"updatedAt": "2025-11-17T14:26:33.053Z"
}