Activity #483
User #125 attached image/webp (47693716 bytes)
1/15/2026, 5:12:40 AM
Overview
attachments / #483
User #125 attached image/webp (47693716 bytes)
1/15/2026, 5:12:40 AM
User #125 attached image/webp (47693716 bytes)
1/15/2026, 5:12:40 AM
View recordUser #125 attached image/webp (47693716 bytes) · 1/15/2026, 5:12:40 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/483" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/483" ); 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/483"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/483"
)
attachment = res.json() Response
{
"id": 483,
"userId": 125,
"targetType": "restaurant",
"targetId": 55,
"url": "https://picsum.photos/seed/attachment-483/600/400",
"mimeType": "image/webp",
"sizeBytes": 47693716,
"createdAt": "2026-01-15T05:12:40.024Z"
}