Activity #28
User #177 attached video/mp4 (34311267 bytes)
7/14/2025, 6:58:24 AM
Overview
attachments / #28
User #177 attached video/mp4 (34311267 bytes)
7/14/2025, 6:58:24 AM
User #177 attached video/mp4 (34311267 bytes)
7/14/2025, 6:58:24 AM
View recordUser #177 attached video/mp4 (34311267 bytes) · 7/14/2025, 6:58:24 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/28" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/28" ); 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/28"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/28"
)
attachment = res.json() Response
{
"id": 28,
"userId": 177,
"targetType": "comment",
"targetId": 983,
"url": "https://example.com/files/attachment-28.mp4",
"mimeType": "video/mp4",
"sizeBytes": 34311267,
"createdAt": "2025-07-14T06:58:24.941Z"
}