Cayla Farrell
@cayla_farrell
descendant enthusiast, foodie
- Phone
- +1 202-555-0103 ext 1
- Joined
- 2/9/2026
Overview
users / #4
@cayla_farrell
descendant enthusiast, foodie
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users/4" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/users/4" ); 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/4"
);
const user = (await res.json()) as User; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users/4"
)
user = res.json() Response
{
"id": 4,
"firstName": "Cayla",
"lastName": "Farrell",
"fullName": "Cayla Farrell",
"username": "cayla_farrell",
"email": "cayla_farrell@example.com",
"phone": "+1 202-555-0103 ext 1",
"bio": "descendant enthusiast, foodie",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-4",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-4&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-4/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": "cayla_farrell",
"createdAt": "2026-02-09T12:12:52.750Z",
"updatedAt": "2026-02-21T00:55:32.962Z"
}