Activity #116
User #152 attached image/webp (12904440 bytes)
4/16/2026, 5:53:26 AM
Overview
attachments / #116
User #152 attached image/webp (12904440 bytes)
4/16/2026, 5:53:26 AM
User #152 attached image/webp (12904440 bytes)
4/16/2026, 5:53:26 AM
View recordUser #152 attached image/webp (12904440 bytes) · 4/16/2026, 5:53:26 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/116" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/116" ); 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/116"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/116"
)
attachment = res.json() Response
{
"id": 116,
"userId": 152,
"targetType": "comment",
"targetId": 789,
"url": "https://picsum.photos/seed/attachment-116/600/600",
"mimeType": "image/webp",
"sizeBytes": 12904440,
"createdAt": "2026-04-16T05:53:26.540Z"
}