Activity #763
User #62 attached image/webp (24568720 bytes)
6/30/2025, 4:37:59 PM
Overview
attachments / #763
User #62 attached image/webp (24568720 bytes)
6/30/2025, 4:37:59 PM
User #62 attached image/webp (24568720 bytes)
6/30/2025, 4:37:59 PM
View recordUser #62 attached image/webp (24568720 bytes) · 6/30/2025, 4:37:59 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/763" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/763" ); 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/763"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/763"
)
attachment = res.json() Response
{
"id": 763,
"userId": 62,
"targetType": "post",
"targetId": 180,
"url": "https://picsum.photos/seed/attachment-763/400/600",
"mimeType": "image/webp",
"sizeBytes": 24568720,
"createdAt": "2025-06-30T16:37:59.914Z"
}