Activity #374
User #63 attached image/png (8288249 bytes)
3/10/2026, 2:32:29 PM
Overview
attachments / #374
User #63 attached image/png (8288249 bytes)
3/10/2026, 2:32:29 PM
User #63 attached image/png (8288249 bytes)
3/10/2026, 2:32:29 PM
View recordUser #63 attached image/png (8288249 bytes) · 3/10/2026, 2:32:29 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/374" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/374" ); 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/374"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/374"
)
attachment = res.json() Response
{
"id": 374,
"userId": 63,
"targetType": "restaurant",
"targetId": 41,
"url": "https://picsum.photos/seed/attachment-374/400/800",
"mimeType": "image/png",
"sizeBytes": 8288249,
"createdAt": "2026-03-10T14:32:29.429Z"
}