Activity #724
User #79 attached image/jpeg (48711993 bytes)
2/15/2026, 11:38:17 AM
Overview
attachments / #724
User #79 attached image/jpeg (48711993 bytes)
2/15/2026, 11:38:17 AM
User #79 attached image/jpeg (48711993 bytes)
2/15/2026, 11:38:17 AM
View recordUser #79 attached image/jpeg (48711993 bytes) · 2/15/2026, 11:38:17 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/724" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/724" ); 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/724"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/724"
)
attachment = res.json() Response
{
"id": 724,
"userId": 79,
"targetType": "recipe",
"targetId": 186,
"url": "https://picsum.photos/seed/attachment-724/600/600",
"mimeType": "image/jpeg",
"sizeBytes": 48711993,
"createdAt": "2026-02-15T11:38:17.630Z"
}