Activity #730
User #199 attached image/webp (37113063 bytes)
4/27/2026, 11:34:22 AM
Overview
attachments / #730
User #199 attached image/webp (37113063 bytes)
4/27/2026, 11:34:22 AM
User #199 attached image/webp (37113063 bytes)
4/27/2026, 11:34:22 AM
View recordUser #199 attached image/webp (37113063 bytes) · 4/27/2026, 11:34:22 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/730" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/730" ); 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/730"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/730"
)
attachment = res.json() Response
{
"id": 730,
"userId": 199,
"targetType": "post",
"targetId": 139,
"url": "https://picsum.photos/seed/attachment-730/400/300",
"mimeType": "image/webp",
"sizeBytes": 37113063,
"createdAt": "2026-04-27T11:34:22.411Z"
}