Activity #751
User #188 attached video/mp4 (1301003 bytes)
9/26/2025, 3:33:10 AM
Overview
attachments / #751
User #188 attached video/mp4 (1301003 bytes)
9/26/2025, 3:33:10 AM
User #188 attached video/mp4 (1301003 bytes)
9/26/2025, 3:33:10 AM
View recordUser #188 attached video/mp4 (1301003 bytes) · 9/26/2025, 3:33:10 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/751" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/751" ); 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/751"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/751"
)
attachment = res.json() Response
{
"id": 751,
"userId": 188,
"targetType": "comment",
"targetId": 56,
"url": "https://example.com/files/attachment-751.mp4",
"mimeType": "video/mp4",
"sizeBytes": 1301003,
"createdAt": "2025-09-26T03:33:10.650Z"
}