Activity #212
User #103 attached image/jpeg (34885183 bytes)
2/23/2026, 8:27:24 AM
Overview
attachments / #212
User #103 attached image/jpeg (34885183 bytes)
2/23/2026, 8:27:24 AM
User #103 attached image/jpeg (34885183 bytes)
2/23/2026, 8:27:24 AM
View recordUser #103 attached image/jpeg (34885183 bytes) · 2/23/2026, 8:27:24 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/212" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/212" ); 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/212"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/212"
)
attachment = res.json() Response
{
"id": 212,
"userId": 103,
"targetType": "comment",
"targetId": 723,
"url": "https://picsum.photos/seed/attachment-212/1200/400",
"mimeType": "image/jpeg",
"sizeBytes": 34885183,
"createdAt": "2026-02-23T08:27:24.736Z"
}