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