Activity #519
User #30 attached video/mp4 (13363670 bytes)
6/20/2025, 12:32:19 PM
Overview
attachments / #519
User #30 attached video/mp4 (13363670 bytes)
6/20/2025, 12:32:19 PM
User #30 attached video/mp4 (13363670 bytes)
6/20/2025, 12:32:19 PM
View recordUser #30 attached video/mp4 (13363670 bytes) · 6/20/2025, 12:32:19 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/519" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/519" ); 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/519"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/519"
)
attachment = res.json() Response
{
"id": 519,
"userId": 30,
"targetType": "post",
"targetId": 167,
"url": "https://example.com/files/attachment-519.mp4",
"mimeType": "video/mp4",
"sizeBytes": 13363670,
"createdAt": "2025-06-20T12:32:19.438Z"
}