Activity #599
User #169 attached image/png (9405450 bytes)
1/4/2026, 2:34:56 PM
Overview
attachments / #599
User #169 attached image/png (9405450 bytes)
1/4/2026, 2:34:56 PM
User #169 attached image/png (9405450 bytes)
1/4/2026, 2:34:56 PM
View recordUser #169 attached image/png (9405450 bytes) · 1/4/2026, 2:34:56 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/599" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/599" ); 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/599"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/599"
)
attachment = res.json() Response
{
"id": 599,
"userId": 169,
"targetType": "post",
"targetId": 253,
"url": "https://picsum.photos/seed/attachment-599/800/400",
"mimeType": "image/png",
"sizeBytes": 9405450,
"createdAt": "2026-01-04T14:34:56.519Z"
}