Activity #209
User #16 attached image/jpeg (49374321 bytes)
3/24/2026, 5:12:29 PM
Overview
attachments / #209
User #16 attached image/jpeg (49374321 bytes)
3/24/2026, 5:12:29 PM
User #16 attached image/jpeg (49374321 bytes)
3/24/2026, 5:12:29 PM
View recordUser #16 attached image/jpeg (49374321 bytes) · 3/24/2026, 5:12:29 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/209" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/209" ); 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/209"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/209"
)
attachment = res.json() Response
{
"id": 209,
"userId": 16,
"targetType": "post",
"targetId": 121,
"url": "https://picsum.photos/seed/attachment-209/1200/800",
"mimeType": "image/jpeg",
"sizeBytes": 49374321,
"createdAt": "2026-03-24T17:12:29.628Z"
}