Activity #695
User #97 attached image/jpeg (44476218 bytes)
2/21/2026, 8:47:40 AM
Overview
attachments / #695
User #97 attached image/jpeg (44476218 bytes)
2/21/2026, 8:47:40 AM
User #97 attached image/jpeg (44476218 bytes)
2/21/2026, 8:47:40 AM
View recordUser #97 attached image/jpeg (44476218 bytes) · 2/21/2026, 8:47:40 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/695" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/695" ); 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/695"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/695"
)
attachment = res.json() Response
{
"id": 695,
"userId": 97,
"targetType": "recipe",
"targetId": 19,
"url": "https://picsum.photos/seed/attachment-695/400/400",
"mimeType": "image/jpeg",
"sizeBytes": 44476218,
"createdAt": "2026-02-21T08:47:40.162Z"
}