Activity #482
User #70 attached image/jpeg (4804364 bytes)
1/17/2026, 5:45:22 PM
Overview
attachments / #482
User #70 attached image/jpeg (4804364 bytes)
1/17/2026, 5:45:22 PM
User #70 attached image/jpeg (4804364 bytes)
1/17/2026, 5:45:22 PM
View recordUser #70 attached image/jpeg (4804364 bytes) · 1/17/2026, 5:45:22 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/482" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/482" ); 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/482"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/482"
)
attachment = res.json() Response
{
"id": 482,
"userId": 70,
"targetType": "restaurant",
"targetId": 21,
"url": "https://picsum.photos/seed/attachment-482/400/300",
"mimeType": "image/jpeg",
"sizeBytes": 4804364,
"createdAt": "2026-01-17T17:45:22.540Z"
}