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