Activity #262
User #50 attached image/jpeg (35111363 bytes)
1/9/2026, 10:46:21 PM
Overview
attachments / #262
User #50 attached image/jpeg (35111363 bytes)
1/9/2026, 10:46:21 PM
User #50 attached image/jpeg (35111363 bytes)
1/9/2026, 10:46:21 PM
View recordUser #50 attached image/jpeg (35111363 bytes) · 1/9/2026, 10:46:21 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/262" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/262" ); 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/262"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/262"
)
attachment = res.json() Response
{
"id": 262,
"userId": 50,
"targetType": "comment",
"targetId": 1463,
"url": "https://picsum.photos/seed/attachment-262/400/400",
"mimeType": "image/jpeg",
"sizeBytes": 35111363,
"createdAt": "2026-01-09T22:46:21.550Z"
}