Activity #35
User #47 attached video/mp4 (48755134 bytes)
3/15/2026, 8:16:24 PM
Overview
attachments / #35
User #47 attached video/mp4 (48755134 bytes)
3/15/2026, 8:16:24 PM
User #47 attached video/mp4 (48755134 bytes)
3/15/2026, 8:16:24 PM
View recordUser #47 attached video/mp4 (48755134 bytes) · 3/15/2026, 8:16:24 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/35" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/35" ); 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/35"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/35"
)
attachment = res.json() Response
{
"id": 35,
"userId": 47,
"targetType": "post",
"targetId": 62,
"url": "https://example.com/files/attachment-35.mp4",
"mimeType": "video/mp4",
"sizeBytes": 48755134,
"createdAt": "2026-03-15T20:16:24.826Z"
}