Activity #537
User #206 attached image/webp (42435382 bytes)
2/14/2026, 1:17:20 AM
Overview
attachments / #537
User #206 attached image/webp (42435382 bytes)
2/14/2026, 1:17:20 AM
User #206 attached image/webp (42435382 bytes)
2/14/2026, 1:17:20 AM
View recordUser #206 attached image/webp (42435382 bytes) · 2/14/2026, 1:17:20 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/537" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/537" ); 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/537"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/537"
)
attachment = res.json() Response
{
"id": 537,
"userId": 206,
"targetType": "restaurant",
"targetId": 17,
"url": "https://picsum.photos/seed/attachment-537/600/600",
"mimeType": "image/webp",
"sizeBytes": 42435382,
"createdAt": "2026-02-14T01:17:20.958Z"
}