Activity #589
User #88 attached image/webp (22023774 bytes)
4/6/2026, 4:49:53 AM
Overview
attachments / #589
User #88 attached image/webp (22023774 bytes)
4/6/2026, 4:49:53 AM
User #88 attached image/webp (22023774 bytes)
4/6/2026, 4:49:53 AM
View recordUser #88 attached image/webp (22023774 bytes) · 4/6/2026, 4:49:53 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/589" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/589" ); 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/589"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/589"
)
attachment = res.json() Response
{
"id": 589,
"userId": 88,
"targetType": "recipe",
"targetId": 140,
"url": "https://picsum.photos/seed/attachment-589/400/600",
"mimeType": "image/webp",
"sizeBytes": 22023774,
"createdAt": "2026-04-06T04:49:53.695Z"
}