Activity #327
User #20 attached video/mp4 (2808152 bytes)
12/14/2025, 5:37:02 PM
Overview
attachments / #327
User #20 attached video/mp4 (2808152 bytes)
12/14/2025, 5:37:02 PM
User #20 attached video/mp4 (2808152 bytes)
12/14/2025, 5:37:02 PM
View recordUser #20 attached video/mp4 (2808152 bytes) · 12/14/2025, 5:37:02 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/327" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/327" ); 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/327"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/327"
)
attachment = res.json() Response
{
"id": 327,
"userId": 20,
"targetType": "comment",
"targetId": 856,
"url": "https://example.com/files/attachment-327.mp4",
"mimeType": "video/mp4",
"sizeBytes": 2808152,
"createdAt": "2025-12-14T17:37:02.663Z"
}