Sandrine Osinski
@sandrine.osinski
photographer, patriot
- Phone
- +1 202-555-0156 ext 2
- Joined
- 3/8/2025
Overview
users / #157
@sandrine.osinski
photographer, patriot
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users/157" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/users/157" ); 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/157"
);
const user = (await res.json()) as User; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users/157"
)
user = res.json() Response
{
"id": 157,
"firstName": "Sandrine",
"lastName": "Osinski",
"fullName": "Sandrine Osinski",
"username": "sandrine.osinski",
"email": "sandrine.osinski@example.com",
"phone": "+1 202-555-0156 ext 2",
"bio": "photographer, patriot",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-157",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-157&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-157/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2025-03-08T20:14:21.167Z",
"updatedAt": "2025-06-29T18:38:33.721Z"
}