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