Activity #372
User #190 attached image/webp (12499477 bytes)
5/6/2026, 3:48:50 AM
Overview
attachments / #372
User #190 attached image/webp (12499477 bytes)
5/6/2026, 3:48:50 AM
User #190 attached image/webp (12499477 bytes)
5/6/2026, 3:48:50 AM
View recordUser #190 attached image/webp (12499477 bytes) · 5/6/2026, 3:48:50 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/372" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/372" ); 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/372"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/372"
)
attachment = res.json() Response
{
"id": 372,
"userId": 190,
"targetType": "recipe",
"targetId": 134,
"url": "https://picsum.photos/seed/attachment-372/800/400",
"mimeType": "image/webp",
"sizeBytes": 12499477,
"createdAt": "2026-05-06T03:48:50.906Z"
}