Activity #626
User #15 attached image/webp (39788738 bytes)
2/21/2026, 11:20:36 AM
Overview
attachments / #626
User #15 attached image/webp (39788738 bytes)
2/21/2026, 11:20:36 AM
User #15 attached image/webp (39788738 bytes)
2/21/2026, 11:20:36 AM
View recordUser #15 attached image/webp (39788738 bytes) · 2/21/2026, 11:20:36 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/626" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/626" ); 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/626"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/626"
)
attachment = res.json() Response
{
"id": 626,
"userId": 15,
"targetType": "product",
"targetId": 22,
"url": "https://picsum.photos/seed/attachment-626/400/600",
"mimeType": "image/webp",
"sizeBytes": 39788738,
"createdAt": "2026-02-21T11:20:36.739Z"
}