Activity #289
User #1 attached video/mp4 (46955374 bytes)
7/25/2025, 5:22:00 AM
Overview
attachments / #289
User #1 attached video/mp4 (46955374 bytes)
7/25/2025, 5:22:00 AM
User #1 attached video/mp4 (46955374 bytes)
7/25/2025, 5:22:00 AM
View recordUser #1 attached video/mp4 (46955374 bytes) · 7/25/2025, 5:22:00 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/289" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/289" ); 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/289"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/289"
)
attachment = res.json() Response
{
"id": 289,
"userId": 1,
"targetType": "comment",
"targetId": 1406,
"url": "https://example.com/files/attachment-289.mp4",
"mimeType": "video/mp4",
"sizeBytes": 46955374,
"createdAt": "2025-07-25T05:22:00.288Z"
}