Activity #715
User #153 attached video/mp4 (12973495 bytes)
2/27/2026, 4:53:17 AM
Overview
attachments / #715
User #153 attached video/mp4 (12973495 bytes)
2/27/2026, 4:53:17 AM
User #153 attached video/mp4 (12973495 bytes)
2/27/2026, 4:53:17 AM
View recordUser #153 attached video/mp4 (12973495 bytes) · 2/27/2026, 4:53:17 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/715" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/715" ); 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/715"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/715"
)
attachment = res.json() Response
{
"id": 715,
"userId": 153,
"targetType": "post",
"targetId": 370,
"url": "https://example.com/files/attachment-715.mp4",
"mimeType": "video/mp4",
"sizeBytes": 12973495,
"createdAt": "2026-02-27T04:53:17.045Z"
}