Activity #507
User #211 attached image/webp (43512728 bytes)
2/12/2026, 7:06:44 AM
Overview
attachments / #507
User #211 attached image/webp (43512728 bytes)
2/12/2026, 7:06:44 AM
User #211 attached image/webp (43512728 bytes)
2/12/2026, 7:06:44 AM
View recordUser #211 attached image/webp (43512728 bytes) · 2/12/2026, 7:06:44 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/507" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/507" ); 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/507"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/507"
)
attachment = res.json() Response
{
"id": 507,
"userId": 211,
"targetType": "comment",
"targetId": 1225,
"url": "https://picsum.photos/seed/attachment-507/800/400",
"mimeType": "image/webp",
"sizeBytes": 43512728,
"createdAt": "2026-02-12T07:06:44.029Z"
}