example-data.com
Menu
Browse docs and collections

Overview

attachments / #657

Activity #657

User #117 attached image/png (24292179 bytes)

1/5/2026, 11:59:50 PM

Component variants

Medium
Small

User #117 attached image/png (24292179 bytes) · 1/5/2026, 11:59:50 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 657,
  "userId": 117,
  "targetType": "comment",
  "targetId": 771,
  "url": "https://picsum.photos/seed/attachment-657/600/300",
  "mimeType": "image/png",
  "sizeBytes": 24292179,
  "createdAt": "2026-01-05T23:59:50.973Z"
}