Activity #677
User #133 attached image/jpeg (29225800 bytes)
5/19/2026, 5:05:58 PM
Overview
attachments / #677
User #133 attached image/jpeg (29225800 bytes)
5/19/2026, 5:05:58 PM
User #133 attached image/jpeg (29225800 bytes)
5/19/2026, 5:05:58 PM
View recordUser #133 attached image/jpeg (29225800 bytes) · 5/19/2026, 5:05:58 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/677" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/677" ); 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/677"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/677"
)
attachment = res.json() Response
{
"id": 677,
"userId": 133,
"targetType": "recipe",
"targetId": 15,
"url": "https://picsum.photos/seed/attachment-677/1200/400",
"mimeType": "image/jpeg",
"sizeBytes": 29225800,
"createdAt": "2026-05-19T17:05:58.354Z"
}