Activity #184
User #10 attached image/webp (18258601 bytes)
5/19/2026, 10:51:55 PM
Overview
attachments / #184
User #10 attached image/webp (18258601 bytes)
5/19/2026, 10:51:55 PM
User #10 attached image/webp (18258601 bytes)
5/19/2026, 10:51:55 PM
View recordUser #10 attached image/webp (18258601 bytes) · 5/19/2026, 10:51:55 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/184" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/184" ); 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/184"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/184"
)
attachment = res.json() Response
{
"id": 184,
"userId": 10,
"targetType": "comment",
"targetId": 364,
"url": "https://picsum.photos/seed/attachment-184/400/300",
"mimeType": "image/webp",
"sizeBytes": 18258601,
"createdAt": "2026-05-19T22:51:55.334Z"
}