Activity #242
User #241 attached video/mp4 (38130077 bytes)
10/16/2025, 9:17:42 PM
Overview
attachments / #242
User #241 attached video/mp4 (38130077 bytes)
10/16/2025, 9:17:42 PM
User #241 attached video/mp4 (38130077 bytes)
10/16/2025, 9:17:42 PM
View recordUser #241 attached video/mp4 (38130077 bytes) · 10/16/2025, 9:17:42 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/242" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/242" ); 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/242"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/242"
)
attachment = res.json() Response
{
"id": 242,
"userId": 241,
"targetType": "comment",
"targetId": 1231,
"url": "https://example.com/files/attachment-242.mp4",
"mimeType": "video/mp4",
"sizeBytes": 38130077,
"createdAt": "2025-10-16T21:17:42.894Z"
}