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