Activity #451
User #77 attached image/webp (26649529 bytes)
2/13/2026, 12:58:38 PM
Overview
attachments / #451
User #77 attached image/webp (26649529 bytes)
2/13/2026, 12:58:38 PM
User #77 attached image/webp (26649529 bytes)
2/13/2026, 12:58:38 PM
View recordUser #77 attached image/webp (26649529 bytes) · 2/13/2026, 12:58:38 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/451" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/451" ); 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/451"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/451"
)
attachment = res.json() Response
{
"id": 451,
"userId": 77,
"targetType": "restaurant",
"targetId": 47,
"url": "https://picsum.photos/seed/attachment-451/400/800",
"mimeType": "image/webp",
"sizeBytes": 26649529,
"createdAt": "2026-02-13T12:58:38.528Z"
}