Activity #550
User #94 attached image/png (24472091 bytes)
3/8/2026, 8:18:11 AM
Overview
attachments / #550
User #94 attached image/png (24472091 bytes)
3/8/2026, 8:18:11 AM
User #94 attached image/png (24472091 bytes)
3/8/2026, 8:18:11 AM
View recordUser #94 attached image/png (24472091 bytes) · 3/8/2026, 8:18:11 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/550" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/550" ); 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/550"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/550"
)
attachment = res.json() Response
{
"id": 550,
"userId": 94,
"targetType": "restaurant",
"targetId": 25,
"url": "https://picsum.photos/seed/attachment-550/800/300",
"mimeType": "image/png",
"sizeBytes": 24472091,
"createdAt": "2026-03-08T08:18:11.911Z"
}