Activity #85
User #75 attached image/webp (37005388 bytes)
10/28/2025, 7:47:20 PM
Overview
attachments / #85
User #75 attached image/webp (37005388 bytes)
10/28/2025, 7:47:20 PM
User #75 attached image/webp (37005388 bytes)
10/28/2025, 7:47:20 PM
View recordUser #75 attached image/webp (37005388 bytes) · 10/28/2025, 7:47:20 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/85" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/85" ); 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/85"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/85"
)
attachment = res.json() Response
{
"id": 85,
"userId": 75,
"targetType": "recipe",
"targetId": 152,
"url": "https://picsum.photos/seed/attachment-85/600/400",
"mimeType": "image/webp",
"sizeBytes": 37005388,
"createdAt": "2025-10-28T19:47:20.598Z"
}