Activity #349
User #125 attached image/webp (10687152 bytes)
8/18/2025, 2:43:04 PM
Overview
attachments / #349
User #125 attached image/webp (10687152 bytes)
8/18/2025, 2:43:04 PM
User #125 attached image/webp (10687152 bytes)
8/18/2025, 2:43:04 PM
View recordUser #125 attached image/webp (10687152 bytes) · 8/18/2025, 2:43:04 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/349" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/349" ); 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/349"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/349"
)
attachment = res.json() Response
{
"id": 349,
"userId": 125,
"targetType": "restaurant",
"targetId": 2,
"url": "https://picsum.photos/seed/attachment-349/1200/400",
"mimeType": "image/webp",
"sizeBytes": 10687152,
"createdAt": "2025-08-18T14:43:04.463Z"
}