Activity #17
User #230 attached image/jpeg (9826483 bytes)
1/28/2026, 6:25:19 AM
Overview
attachments / #17
User #230 attached image/jpeg (9826483 bytes)
1/28/2026, 6:25:19 AM
User #230 attached image/jpeg (9826483 bytes)
1/28/2026, 6:25:19 AM
View recordUser #230 attached image/jpeg (9826483 bytes) · 1/28/2026, 6:25:19 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/17" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/17" ); const attachment = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/attachments.d.ts https://example-data.com/types/attachments.d.ts
import type { Attachment } from "./types/attachments";
const res = await fetch(
"https://example-data.com/api/v1/attachments/17"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/17"
)
attachment = res.json() Response
{
"id": 17,
"userId": 230,
"targetType": "restaurant",
"targetId": 64,
"url": "https://picsum.photos/seed/attachment-17/600/300",
"mimeType": "image/jpeg",
"sizeBytes": 9826483,
"createdAt": "2026-01-28T06:25:19.664Z"
}