example-data.com
Menu
Browse docs and collections

Overview

attachments / #593

Activity #593

User #45 attached image/jpeg (47987063 bytes)

1/13/2026, 11:04:03 AM

Component variants

Medium
Small

User #45 attached image/jpeg (47987063 bytes) · 1/13/2026, 11:04:03 AM

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/attachments/593" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/attachments/593"
);
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/593"
);
const attachment = (await res.json()) as Attachment;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/attachments/593"
)
attachment = res.json()

Response

{
  "id": 593,
  "userId": 45,
  "targetType": "comment",
  "targetId": 452,
  "url": "https://picsum.photos/seed/attachment-593/400/400",
  "mimeType": "image/jpeg",
  "sizeBytes": 47987063,
  "createdAt": "2026-01-13T11:04:03.481Z"
}