Activity #435
User #163 attached image/png (39143362 bytes)
4/1/2026, 7:52:06 AM
Overview
attachments / #435
User #163 attached image/png (39143362 bytes)
4/1/2026, 7:52:06 AM
User #163 attached image/png (39143362 bytes)
4/1/2026, 7:52:06 AM
View recordUser #163 attached image/png (39143362 bytes) · 4/1/2026, 7:52:06 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/435" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/435" ); 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/435"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/435"
)
attachment = res.json() Response
{
"id": 435,
"userId": 163,
"targetType": "recipe",
"targetId": 231,
"url": "https://picsum.photos/seed/attachment-435/800/400",
"mimeType": "image/png",
"sizeBytes": 39143362,
"createdAt": "2026-04-01T07:52:06.591Z"
}