Activity #462
User #97 attached image/jpeg (7587074 bytes)
1/22/2026, 10:29:21 PM
Overview
attachments / #462
User #97 attached image/jpeg (7587074 bytes)
1/22/2026, 10:29:21 PM
User #97 attached image/jpeg (7587074 bytes)
1/22/2026, 10:29:21 PM
View recordUser #97 attached image/jpeg (7587074 bytes) · 1/22/2026, 10:29:21 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/462" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/462" ); 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/462"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/462"
)
attachment = res.json() Response
{
"id": 462,
"userId": 97,
"targetType": "post",
"targetId": 132,
"url": "https://picsum.photos/seed/attachment-462/1200/600",
"mimeType": "image/jpeg",
"sizeBytes": 7587074,
"createdAt": "2026-01-22T22:29:21.555Z"
}