Activity #206
User #6 attached video/mp4 (26632114 bytes)
1/24/2026, 3:44:59 PM
Overview
attachments / #206
User #6 attached video/mp4 (26632114 bytes)
1/24/2026, 3:44:59 PM
User #6 attached video/mp4 (26632114 bytes)
1/24/2026, 3:44:59 PM
View recordUser #6 attached video/mp4 (26632114 bytes) · 1/24/2026, 3:44:59 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/206" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/206" ); 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/206"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/206"
)
attachment = res.json() Response
{
"id": 206,
"userId": 6,
"targetType": "comment",
"targetId": 1471,
"url": "https://example.com/files/attachment-206.mp4",
"mimeType": "video/mp4",
"sizeBytes": 26632114,
"createdAt": "2026-01-24T15:44:59.962Z"
}