Activity #11
User #9 attached image/webp (30371150 bytes)
3/28/2026, 2:26:09 AM
Overview
attachments / #11
User #9 attached image/webp (30371150 bytes)
3/28/2026, 2:26:09 AM
User #9 attached image/webp (30371150 bytes)
3/28/2026, 2:26:09 AM
View recordUser #9 attached image/webp (30371150 bytes) · 3/28/2026, 2:26:09 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/11" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/11" ); 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/11"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/11"
)
attachment = res.json() Response
{
"id": 11,
"userId": 9,
"targetType": "post",
"targetId": 186,
"url": "https://picsum.photos/seed/attachment-11/800/300",
"mimeType": "image/webp",
"sizeBytes": 30371150,
"createdAt": "2026-03-28T02:26:09.434Z"
}