Activity #649
User #2 attached image/webp (44988055 bytes)
9/18/2025, 11:34:25 AM
Overview
attachments / #649
User #2 attached image/webp (44988055 bytes)
9/18/2025, 11:34:25 AM
User #2 attached image/webp (44988055 bytes)
9/18/2025, 11:34:25 AM
View recordUser #2 attached image/webp (44988055 bytes) · 9/18/2025, 11:34:25 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/649" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/649" ); 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/649"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/649"
)
attachment = res.json() Response
{
"id": 649,
"userId": 2,
"targetType": "recipe",
"targetId": 72,
"url": "https://picsum.photos/seed/attachment-649/1200/800",
"mimeType": "image/webp",
"sizeBytes": 44988055,
"createdAt": "2025-09-18T11:34:25.630Z"
}