Activity #487
User #213 attached image/jpeg (42239699 bytes)
12/7/2025, 3:08:30 PM
Overview
attachments / #487
User #213 attached image/jpeg (42239699 bytes)
12/7/2025, 3:08:30 PM
User #213 attached image/jpeg (42239699 bytes)
12/7/2025, 3:08:30 PM
View recordUser #213 attached image/jpeg (42239699 bytes) · 12/7/2025, 3:08:30 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/487" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/487" ); 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/487"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/487"
)
attachment = res.json() Response
{
"id": 487,
"userId": 213,
"targetType": "restaurant",
"targetId": 4,
"url": "https://picsum.photos/seed/attachment-487/600/400",
"mimeType": "image/jpeg",
"sizeBytes": 42239699,
"createdAt": "2025-12-07T15:08:30.727Z"
}