Activity #513
User #25 attached video/mp4 (16383313 bytes)
2/10/2026, 1:47:25 PM
Overview
attachments / #513
User #25 attached video/mp4 (16383313 bytes)
2/10/2026, 1:47:25 PM
User #25 attached video/mp4 (16383313 bytes)
2/10/2026, 1:47:25 PM
View recordUser #25 attached video/mp4 (16383313 bytes) · 2/10/2026, 1:47:25 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/513" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/513" ); 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/513"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/513"
)
attachment = res.json() Response
{
"id": 513,
"userId": 25,
"targetType": "restaurant",
"targetId": 27,
"url": "https://example.com/files/attachment-513.mp4",
"mimeType": "video/mp4",
"sizeBytes": 16383313,
"createdAt": "2026-02-10T13:47:25.463Z"
}