Activity #685
User #248 attached image/png (41828628 bytes)
11/13/2025, 5:43:12 AM
Overview
attachments / #685
User #248 attached image/png (41828628 bytes)
11/13/2025, 5:43:12 AM
User #248 attached image/png (41828628 bytes)
11/13/2025, 5:43:12 AM
View recordUser #248 attached image/png (41828628 bytes) · 11/13/2025, 5:43:12 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/685" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/685" ); 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/685"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/685"
)
attachment = res.json() Response
{
"id": 685,
"userId": 248,
"targetType": "recipe",
"targetId": 158,
"url": "https://picsum.photos/seed/attachment-685/400/300",
"mimeType": "image/png",
"sizeBytes": 41828628,
"createdAt": "2025-11-13T05:43:12.129Z"
}