Activity #779
User #211 attached image/jpeg (34933493 bytes)
12/27/2025, 10:26:15 PM
Overview
attachments / #779
User #211 attached image/jpeg (34933493 bytes)
12/27/2025, 10:26:15 PM
User #211 attached image/jpeg (34933493 bytes)
12/27/2025, 10:26:15 PM
View recordUser #211 attached image/jpeg (34933493 bytes) · 12/27/2025, 10:26:15 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/779" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/779" ); 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/779"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/779"
)
attachment = res.json() Response
{
"id": 779,
"userId": 211,
"targetType": "restaurant",
"targetId": 71,
"url": "https://picsum.photos/seed/attachment-779/800/800",
"mimeType": "image/jpeg",
"sizeBytes": 34933493,
"createdAt": "2025-12-27T22:26:15.198Z"
}