Oliver Mitchell
@oliver_mitchell50
scorn junkie
- Phone
- +1 202-555-0193 ext 2
- Joined
- 3/11/2025
Overview
users / #194
@oliver_mitchell50
scorn junkie
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users/194" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/users/194" ); 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/194"
);
const user = (await res.json()) as User; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users/194"
)
user = res.json() Response
{
"id": 194,
"firstName": "Oliver",
"lastName": "Mitchell",
"fullName": "Oliver Mitchell",
"username": "oliver_mitchell50",
"email": "oliver_mitchell50@example.com",
"phone": "+1 202-555-0193 ext 2",
"bio": "scorn junkie",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-194",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-194&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-194/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": "oliver_mitchell50",
"createdAt": "2025-03-11T17:00:16.498Z",
"updatedAt": "2025-12-13T19:03:19.010Z"
}