Activity #71
User #202 attached image/webp (32101030 bytes)
5/14/2026, 10:24:49 PM
Overview
attachments / #71
User #202 attached image/webp (32101030 bytes)
5/14/2026, 10:24:49 PM
User #202 attached image/webp (32101030 bytes)
5/14/2026, 10:24:49 PM
View recordUser #202 attached image/webp (32101030 bytes) · 5/14/2026, 10:24:49 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/71" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/71" ); 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/71"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/71"
)
attachment = res.json() Response
{
"id": 71,
"userId": 202,
"targetType": "recipe",
"targetId": 58,
"url": "https://picsum.photos/seed/attachment-71/600/800",
"mimeType": "image/webp",
"sizeBytes": 32101030,
"createdAt": "2026-05-14T22:24:49.548Z"
}