Activity #494
User #97 attached video/mp4 (36362845 bytes)
8/19/2025, 9:48:34 PM
Overview
attachments / #494
User #97 attached video/mp4 (36362845 bytes)
8/19/2025, 9:48:34 PM
User #97 attached video/mp4 (36362845 bytes)
8/19/2025, 9:48:34 PM
View recordUser #97 attached video/mp4 (36362845 bytes) · 8/19/2025, 9:48:34 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/494" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/494" ); 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/494"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/494"
)
attachment = res.json() Response
{
"id": 494,
"userId": 97,
"targetType": "recipe",
"targetId": 105,
"url": "https://example.com/files/attachment-494.mp4",
"mimeType": "video/mp4",
"sizeBytes": 36362845,
"createdAt": "2025-08-19T21:48:34.883Z"
}