Activity #759
User #184 attached image/webp (23044712 bytes)
12/25/2025, 8:03:27 PM
Overview
attachments / #759
User #184 attached image/webp (23044712 bytes)
12/25/2025, 8:03:27 PM
User #184 attached image/webp (23044712 bytes)
12/25/2025, 8:03:27 PM
View recordUser #184 attached image/webp (23044712 bytes) · 12/25/2025, 8:03:27 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/759" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/759" ); 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/759"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/759"
)
attachment = res.json() Response
{
"id": 759,
"userId": 184,
"targetType": "comment",
"targetId": 503,
"url": "https://picsum.photos/seed/attachment-759/1200/600",
"mimeType": "image/webp",
"sizeBytes": 23044712,
"createdAt": "2025-12-25T20:03:27.671Z"
}