Activity #233
User #88 attached image/png (35517207 bytes)
2/28/2026, 2:39:53 AM
Overview
attachments / #233
User #88 attached image/png (35517207 bytes)
2/28/2026, 2:39:53 AM
User #88 attached image/png (35517207 bytes)
2/28/2026, 2:39:53 AM
View recordUser #88 attached image/png (35517207 bytes) · 2/28/2026, 2:39:53 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/233" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/233" ); 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/233"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/233"
)
attachment = res.json() Response
{
"id": 233,
"userId": 88,
"targetType": "restaurant",
"targetId": 55,
"url": "https://picsum.photos/seed/attachment-233/800/800",
"mimeType": "image/png",
"sizeBytes": 35517207,
"createdAt": "2026-02-28T02:39:53.834Z"
}