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