example-data.com
Menu
Browse docs and collections

Overview

attachments / #662

Activity #662

User #212 attached image/jpeg (49338945 bytes)

1/19/2026, 5:18:26 AM

Component variants

Medium
Small

User #212 attached image/jpeg (49338945 bytes) · 1/19/2026, 5:18:26 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 662,
  "userId": 212,
  "targetType": "product",
  "targetId": 188,
  "url": "https://picsum.photos/seed/attachment-662/1200/300",
  "mimeType": "image/jpeg",
  "sizeBytes": 49338945,
  "createdAt": "2026-01-19T05:18:26.048Z"
}