Activity #399
User #134 attached video/mp4 (8361288 bytes)
9/16/2025, 4:30:12 AM
Overview
attachments / #399
User #134 attached video/mp4 (8361288 bytes)
9/16/2025, 4:30:12 AM
User #134 attached video/mp4 (8361288 bytes)
9/16/2025, 4:30:12 AM
View recordUser #134 attached video/mp4 (8361288 bytes) · 9/16/2025, 4:30:12 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/399" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/399" ); 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/399"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/399"
)
attachment = res.json() Response
{
"id": 399,
"userId": 134,
"targetType": "comment",
"targetId": 1414,
"url": "https://example.com/files/attachment-399.mp4",
"mimeType": "video/mp4",
"sizeBytes": 8361288,
"createdAt": "2025-09-16T04:30:12.751Z"
}