Activity #594
User #34 attached image/jpeg (19184708 bytes)
2/5/2026, 5:42:26 AM
Overview
attachments / #594
User #34 attached image/jpeg (19184708 bytes)
2/5/2026, 5:42:26 AM
User #34 attached image/jpeg (19184708 bytes)
2/5/2026, 5:42:26 AM
View recordUser #34 attached image/jpeg (19184708 bytes) · 2/5/2026, 5:42:26 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/594" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/594" ); 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/594"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/594"
)
attachment = res.json() Response
{
"id": 594,
"userId": 34,
"targetType": "comment",
"targetId": 644,
"url": "https://picsum.photos/seed/attachment-594/600/800",
"mimeType": "image/jpeg",
"sizeBytes": 19184708,
"createdAt": "2026-02-05T05:42:26.012Z"
}