Activity #133
User #112 attached image/png (9333851 bytes)
1/9/2026, 6:14:52 PM
Overview
attachments / #133
User #112 attached image/png (9333851 bytes)
1/9/2026, 6:14:52 PM
User #112 attached image/png (9333851 bytes)
1/9/2026, 6:14:52 PM
View recordUser #112 attached image/png (9333851 bytes) · 1/9/2026, 6:14:52 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/133" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/133" ); 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/133"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/133"
)
attachment = res.json() Response
{
"id": 133,
"userId": 112,
"targetType": "post",
"targetId": 339,
"url": "https://picsum.photos/seed/attachment-133/400/400",
"mimeType": "image/png",
"sizeBytes": 9333851,
"createdAt": "2026-01-09T18:14:52.348Z"
}