Activity #431
User #195 attached image/png (25659228 bytes)
6/17/2025, 2:45:19 AM
Overview
attachments / #431
User #195 attached image/png (25659228 bytes)
6/17/2025, 2:45:19 AM
User #195 attached image/png (25659228 bytes)
6/17/2025, 2:45:19 AM
View recordUser #195 attached image/png (25659228 bytes) · 6/17/2025, 2:45:19 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/431" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/431" ); 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/431"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/431"
)
attachment = res.json() Response
{
"id": 431,
"userId": 195,
"targetType": "recipe",
"targetId": 37,
"url": "https://picsum.photos/seed/attachment-431/400/400",
"mimeType": "image/png",
"sizeBytes": 25659228,
"createdAt": "2025-06-17T02:45:19.251Z"
}