Activity #292
User #236 attached image/jpeg (35965203 bytes)
2/17/2026, 10:39:48 PM
Overview
attachments / #292
User #236 attached image/jpeg (35965203 bytes)
2/17/2026, 10:39:48 PM
User #236 attached image/jpeg (35965203 bytes)
2/17/2026, 10:39:48 PM
View recordUser #236 attached image/jpeg (35965203 bytes) · 2/17/2026, 10:39:48 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/292" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/292" ); 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/292"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/292"
)
attachment = res.json() Response
{
"id": 292,
"userId": 236,
"targetType": "comment",
"targetId": 966,
"url": "https://picsum.photos/seed/attachment-292/1200/400",
"mimeType": "image/jpeg",
"sizeBytes": 35965203,
"createdAt": "2026-02-17T22:39:48.494Z"
}