Activity #712
User #42 attached image/webp (33915020 bytes)
4/29/2026, 1:06:52 AM
Overview
attachments / #712
User #42 attached image/webp (33915020 bytes)
4/29/2026, 1:06:52 AM
User #42 attached image/webp (33915020 bytes)
4/29/2026, 1:06:52 AM
View recordUser #42 attached image/webp (33915020 bytes) · 4/29/2026, 1:06:52 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/712" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/712" ); 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/712"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/712"
)
attachment = res.json() Response
{
"id": 712,
"userId": 42,
"targetType": "restaurant",
"targetId": 62,
"url": "https://picsum.photos/seed/attachment-712/800/600",
"mimeType": "image/webp",
"sizeBytes": 33915020,
"createdAt": "2026-04-29T01:06:52.532Z"
}