Activity #490
User #201 attached image/webp (44976310 bytes)
5/1/2026, 12:12:23 PM
Overview
attachments / #490
User #201 attached image/webp (44976310 bytes)
5/1/2026, 12:12:23 PM
User #201 attached image/webp (44976310 bytes)
5/1/2026, 12:12:23 PM
View recordUser #201 attached image/webp (44976310 bytes) · 5/1/2026, 12:12:23 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/490" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/490" ); 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/490"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/490"
)
attachment = res.json() Response
{
"id": 490,
"userId": 201,
"targetType": "comment",
"targetId": 665,
"url": "https://picsum.photos/seed/attachment-490/1200/400",
"mimeType": "image/webp",
"sizeBytes": 44976310,
"createdAt": "2026-05-01T12:12:23.168Z"
}