Activity #686
User #249 attached image/jpeg (27618111 bytes)
12/31/2025, 5:39:25 AM
Overview
attachments / #686
User #249 attached image/jpeg (27618111 bytes)
12/31/2025, 5:39:25 AM
User #249 attached image/jpeg (27618111 bytes)
12/31/2025, 5:39:25 AM
View recordUser #249 attached image/jpeg (27618111 bytes) · 12/31/2025, 5:39:25 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/686" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/686" ); 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/686"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/686"
)
attachment = res.json() Response
{
"id": 686,
"userId": 249,
"targetType": "restaurant",
"targetId": 94,
"url": "https://picsum.photos/seed/attachment-686/600/800",
"mimeType": "image/jpeg",
"sizeBytes": 27618111,
"createdAt": "2025-12-31T05:39:25.870Z"
}