Activity #736
User #214 attached image/jpeg (39865547 bytes)
10/1/2025, 10:22:33 AM
Overview
attachments / #736
User #214 attached image/jpeg (39865547 bytes)
10/1/2025, 10:22:33 AM
User #214 attached image/jpeg (39865547 bytes)
10/1/2025, 10:22:33 AM
View recordUser #214 attached image/jpeg (39865547 bytes) · 10/1/2025, 10:22:33 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/736" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/736" ); 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/736"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/736"
)
attachment = res.json() Response
{
"id": 736,
"userId": 214,
"targetType": "restaurant",
"targetId": 22,
"url": "https://picsum.photos/seed/attachment-736/800/300",
"mimeType": "image/jpeg",
"sizeBytes": 39865547,
"createdAt": "2025-10-01T10:22:33.117Z"
}