Activity #235
User #220 attached image/jpeg (22068 bytes)
2/11/2026, 1:28:59 PM
Overview
attachments / #235
User #220 attached image/jpeg (22068 bytes)
2/11/2026, 1:28:59 PM
User #220 attached image/jpeg (22068 bytes)
2/11/2026, 1:28:59 PM
View recordUser #220 attached image/jpeg (22068 bytes) · 2/11/2026, 1:28:59 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/235" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/235" ); 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/235"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/235"
)
attachment = res.json() Response
{
"id": 235,
"userId": 220,
"targetType": "comment",
"targetId": 136,
"url": "https://picsum.photos/seed/attachment-235/600/600",
"mimeType": "image/jpeg",
"sizeBytes": 22068,
"createdAt": "2026-02-11T13:28:59.917Z"
}