Activity #150
User #133 attached image/webp (10333169 bytes)
12/28/2025, 12:30:35 AM
Overview
attachments / #150
User #133 attached image/webp (10333169 bytes)
12/28/2025, 12:30:35 AM
User #133 attached image/webp (10333169 bytes)
12/28/2025, 12:30:35 AM
View recordUser #133 attached image/webp (10333169 bytes) · 12/28/2025, 12:30:35 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/150" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/150" ); 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/150"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/150"
)
attachment = res.json() Response
{
"id": 150,
"userId": 133,
"targetType": "restaurant",
"targetId": 35,
"url": "https://picsum.photos/seed/attachment-150/800/600",
"mimeType": "image/webp",
"sizeBytes": 10333169,
"createdAt": "2025-12-28T00:30:35.989Z"
}