Activity #432
User #15 attached image/webp (20424514 bytes)
3/9/2026, 10:26:11 PM
Overview
attachments / #432
User #15 attached image/webp (20424514 bytes)
3/9/2026, 10:26:11 PM
User #15 attached image/webp (20424514 bytes)
3/9/2026, 10:26:11 PM
View recordUser #15 attached image/webp (20424514 bytes) · 3/9/2026, 10:26:11 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/432" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/432" ); 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/432"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/432"
)
attachment = res.json() Response
{
"id": 432,
"userId": 15,
"targetType": "post",
"targetId": 71,
"url": "https://picsum.photos/seed/attachment-432/1200/300",
"mimeType": "image/webp",
"sizeBytes": 20424514,
"createdAt": "2026-03-09T22:26:11.846Z"
}