Activity #588
User #94 attached image/jpeg (12091161 bytes)
4/16/2026, 8:42:03 AM
Overview
attachments / #588
User #94 attached image/jpeg (12091161 bytes)
4/16/2026, 8:42:03 AM
User #94 attached image/jpeg (12091161 bytes)
4/16/2026, 8:42:03 AM
View recordUser #94 attached image/jpeg (12091161 bytes) · 4/16/2026, 8:42:03 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/588" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/588" ); 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/588"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/588"
)
attachment = res.json() Response
{
"id": 588,
"userId": 94,
"targetType": "recipe",
"targetId": 141,
"url": "https://picsum.photos/seed/attachment-588/400/600",
"mimeType": "image/jpeg",
"sizeBytes": 12091161,
"createdAt": "2026-04-16T08:42:03.330Z"
}