Activity #392
User #115 attached image/webp (30978105 bytes)
3/29/2026, 9:53:13 PM
Overview
attachments / #392
User #115 attached image/webp (30978105 bytes)
3/29/2026, 9:53:13 PM
User #115 attached image/webp (30978105 bytes)
3/29/2026, 9:53:13 PM
View recordUser #115 attached image/webp (30978105 bytes) · 3/29/2026, 9:53:13 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/392" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/392" ); 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/392"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/392"
)
attachment = res.json() Response
{
"id": 392,
"userId": 115,
"targetType": "comment",
"targetId": 1326,
"url": "https://picsum.photos/seed/attachment-392/1200/300",
"mimeType": "image/webp",
"sizeBytes": 30978105,
"createdAt": "2026-03-29T21:53:13.181Z"
}