Activity #653
User #188 attached image/jpeg (20965409 bytes)
4/17/2026, 11:59:50 PM
Overview
attachments / #653
User #188 attached image/jpeg (20965409 bytes)
4/17/2026, 11:59:50 PM
User #188 attached image/jpeg (20965409 bytes)
4/17/2026, 11:59:50 PM
View recordUser #188 attached image/jpeg (20965409 bytes) · 4/17/2026, 11:59:50 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/653" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/653" ); 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/653"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/653"
)
attachment = res.json() Response
{
"id": 653,
"userId": 188,
"targetType": "comment",
"targetId": 1155,
"url": "https://picsum.photos/seed/attachment-653/1200/300",
"mimeType": "image/jpeg",
"sizeBytes": 20965409,
"createdAt": "2026-04-17T23:59:50.567Z"
}