Activity #207
User #206 attached image/jpeg (9872793 bytes)
1/30/2026, 8:11:56 PM
Overview
attachments / #207
User #206 attached image/jpeg (9872793 bytes)
1/30/2026, 8:11:56 PM
User #206 attached image/jpeg (9872793 bytes)
1/30/2026, 8:11:56 PM
View recordUser #206 attached image/jpeg (9872793 bytes) · 1/30/2026, 8:11:56 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/207" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/207" ); 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/207"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/207"
)
attachment = res.json() Response
{
"id": 207,
"userId": 206,
"targetType": "recipe",
"targetId": 116,
"url": "https://picsum.photos/seed/attachment-207/600/300",
"mimeType": "image/jpeg",
"sizeBytes": 9872793,
"createdAt": "2026-01-30T20:11:56.156Z"
}