Activity #450
User #93 attached image/webp (22508998 bytes)
11/14/2025, 5:00:18 AM
Overview
attachments / #450
User #93 attached image/webp (22508998 bytes)
11/14/2025, 5:00:18 AM
User #93 attached image/webp (22508998 bytes)
11/14/2025, 5:00:18 AM
View recordUser #93 attached image/webp (22508998 bytes) · 11/14/2025, 5:00:18 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/450" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/450" ); 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/450"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/450"
)
attachment = res.json() Response
{
"id": 450,
"userId": 93,
"targetType": "restaurant",
"targetId": 20,
"url": "https://picsum.photos/seed/attachment-450/600/600",
"mimeType": "image/webp",
"sizeBytes": 22508998,
"createdAt": "2025-11-14T05:00:18.626Z"
}