Activity #426
User #150 attached video/mp4 (41639396 bytes)
9/18/2025, 10:36:08 PM
Overview
attachments / #426
User #150 attached video/mp4 (41639396 bytes)
9/18/2025, 10:36:08 PM
User #150 attached video/mp4 (41639396 bytes)
9/18/2025, 10:36:08 PM
View recordUser #150 attached video/mp4 (41639396 bytes) · 9/18/2025, 10:36:08 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/426" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/426" ); 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/426"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/426"
)
attachment = res.json() Response
{
"id": 426,
"userId": 150,
"targetType": "post",
"targetId": 308,
"url": "https://example.com/files/attachment-426.mp4",
"mimeType": "video/mp4",
"sizeBytes": 41639396,
"createdAt": "2025-09-18T22:36:08.992Z"
}