Activity #620
User #139 attached image/webp (42163339 bytes)
4/8/2026, 2:38:04 AM
Overview
attachments / #620
User #139 attached image/webp (42163339 bytes)
4/8/2026, 2:38:04 AM
User #139 attached image/webp (42163339 bytes)
4/8/2026, 2:38:04 AM
View recordUser #139 attached image/webp (42163339 bytes) · 4/8/2026, 2:38:04 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/620" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/620" ); 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/620"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/620"
)
attachment = res.json() Response
{
"id": 620,
"userId": 139,
"targetType": "restaurant",
"targetId": 43,
"url": "https://picsum.photos/seed/attachment-620/600/300",
"mimeType": "image/webp",
"sizeBytes": 42163339,
"createdAt": "2026-04-08T02:38:04.031Z"
}