Activity #250
User #61 attached video/mp4 (21917544 bytes)
3/20/2026, 6:53:16 AM
Overview
attachments / #250
User #61 attached video/mp4 (21917544 bytes)
3/20/2026, 6:53:16 AM
User #61 attached video/mp4 (21917544 bytes)
3/20/2026, 6:53:16 AM
View recordUser #61 attached video/mp4 (21917544 bytes) · 3/20/2026, 6:53:16 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/250" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/250" ); 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/250"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/250"
)
attachment = res.json() Response
{
"id": 250,
"userId": 61,
"targetType": "restaurant",
"targetId": 5,
"url": "https://example.com/files/attachment-250.mp4",
"mimeType": "video/mp4",
"sizeBytes": 21917544,
"createdAt": "2026-03-20T06:53:16.905Z"
}