example-data.com
Menu
Browse docs and collections

Overview

attachments / #756

Activity #756

User #8 attached image/jpeg (40119538 bytes)

3/3/2026, 6:33:28 PM

Component variants

Medium
Small

User #8 attached image/jpeg (40119538 bytes) · 3/3/2026, 6:33:28 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 756,
  "userId": 8,
  "targetType": "product",
  "targetId": 28,
  "url": "https://picsum.photos/seed/attachment-756/800/400",
  "mimeType": "image/jpeg",
  "sizeBytes": 40119538,
  "createdAt": "2026-03-03T18:33:28.942Z"
}