Activity #180
User #4 attached video/mp4 (14763465 bytes)
8/22/2025, 1:03:14 AM
Overview
attachments / #180
User #4 attached video/mp4 (14763465 bytes)
8/22/2025, 1:03:14 AM
User #4 attached video/mp4 (14763465 bytes)
8/22/2025, 1:03:14 AM
View recordUser #4 attached video/mp4 (14763465 bytes) · 8/22/2025, 1:03:14 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/180" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/180" ); 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/180"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/180"
)
attachment = res.json() Response
{
"id": 180,
"userId": 4,
"targetType": "comment",
"targetId": 92,
"url": "https://example.com/files/attachment-180.mp4",
"mimeType": "video/mp4",
"sizeBytes": 14763465,
"createdAt": "2025-08-22T01:03:14.710Z"
}