Activity #644
User #201 attached image/png (18721349 bytes)
4/20/2026, 10:00:23 PM
Overview
attachments / #644
User #201 attached image/png (18721349 bytes)
4/20/2026, 10:00:23 PM
User #201 attached image/png (18721349 bytes)
4/20/2026, 10:00:23 PM
View recordUser #201 attached image/png (18721349 bytes) · 4/20/2026, 10:00:23 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/644" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/644" ); 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/644"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/644"
)
attachment = res.json() Response
{
"id": 644,
"userId": 201,
"targetType": "post",
"targetId": 187,
"url": "https://picsum.photos/seed/attachment-644/1200/800",
"mimeType": "image/png",
"sizeBytes": 18721349,
"createdAt": "2026-04-20T22:00:23.249Z"
}