Activity #365
User #173 attached video/mp4 (44192740 bytes)
10/27/2025, 8:34:45 PM
Overview
attachments / #365
User #173 attached video/mp4 (44192740 bytes)
10/27/2025, 8:34:45 PM
User #173 attached video/mp4 (44192740 bytes)
10/27/2025, 8:34:45 PM
View recordUser #173 attached video/mp4 (44192740 bytes) · 10/27/2025, 8:34:45 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/365" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/365" ); 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/365"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/365"
)
attachment = res.json() Response
{
"id": 365,
"userId": 173,
"targetType": "post",
"targetId": 54,
"url": "https://example.com/files/attachment-365.mp4",
"mimeType": "video/mp4",
"sizeBytes": 44192740,
"createdAt": "2025-10-27T20:34:45.226Z"
}