Activity #503
User #165 attached image/png (25106768 bytes)
3/12/2026, 4:20:44 PM
Overview
attachments / #503
User #165 attached image/png (25106768 bytes)
3/12/2026, 4:20:44 PM
User #165 attached image/png (25106768 bytes)
3/12/2026, 4:20:44 PM
View recordUser #165 attached image/png (25106768 bytes) · 3/12/2026, 4:20:44 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/503" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/503" ); 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/503"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/503"
)
attachment = res.json() Response
{
"id": 503,
"userId": 165,
"targetType": "recipe",
"targetId": 214,
"url": "https://picsum.photos/seed/attachment-503/600/600",
"mimeType": "image/png",
"sizeBytes": 25106768,
"createdAt": "2026-03-12T16:20:44.941Z"
}