Activity #679
User #147 attached image/webp (2187727 bytes)
2/2/2026, 10:46:38 AM
Overview
attachments / #679
User #147 attached image/webp (2187727 bytes)
2/2/2026, 10:46:38 AM
User #147 attached image/webp (2187727 bytes)
2/2/2026, 10:46:38 AM
View recordUser #147 attached image/webp (2187727 bytes) · 2/2/2026, 10:46:38 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/679" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/679" ); 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/679"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/679"
)
attachment = res.json() Response
{
"id": 679,
"userId": 147,
"targetType": "restaurant",
"targetId": 48,
"url": "https://picsum.photos/seed/attachment-679/400/400",
"mimeType": "image/webp",
"sizeBytes": 2187727,
"createdAt": "2026-02-02T10:46:38.269Z"
}