Activity #584
User #231 attached video/mp4 (19652851 bytes)
10/9/2025, 2:10:07 AM
Overview
attachments / #584
User #231 attached video/mp4 (19652851 bytes)
10/9/2025, 2:10:07 AM
User #231 attached video/mp4 (19652851 bytes)
10/9/2025, 2:10:07 AM
View recordUser #231 attached video/mp4 (19652851 bytes) · 10/9/2025, 2:10:07 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/584" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/584" ); 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/584"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/584"
)
attachment = res.json() Response
{
"id": 584,
"userId": 231,
"targetType": "recipe",
"targetId": 239,
"url": "https://example.com/files/attachment-584.mp4",
"mimeType": "video/mp4",
"sizeBytes": 19652851,
"createdAt": "2025-10-09T02:10:07.426Z"
}