Activity #527
User #167 attached image/jpeg (992602 bytes)
2/6/2026, 6:11:17 AM
Overview
attachments / #527
User #167 attached image/jpeg (992602 bytes)
2/6/2026, 6:11:17 AM
User #167 attached image/jpeg (992602 bytes)
2/6/2026, 6:11:17 AM
View recordUser #167 attached image/jpeg (992602 bytes) · 2/6/2026, 6:11:17 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/527" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/527" ); 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/527"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/527"
)
attachment = res.json() Response
{
"id": 527,
"userId": 167,
"targetType": "product",
"targetId": 68,
"url": "https://picsum.photos/seed/attachment-527/1200/600",
"mimeType": "image/jpeg",
"sizeBytes": 992602,
"createdAt": "2026-02-06T06:11:17.514Z"
}