example-data.com
Menu
Browse docs and collections

Overview

attachments / #196

Activity #196

User #8 attached image/webp (28265530 bytes)

4/8/2026, 11:44:08 AM

Component variants

Medium
Small

User #8 attached image/webp (28265530 bytes) · 4/8/2026, 11:44:08 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 196,
  "userId": 8,
  "targetType": "post",
  "targetId": 346,
  "url": "https://picsum.photos/seed/attachment-196/400/600",
  "mimeType": "image/webp",
  "sizeBytes": 28265530,
  "createdAt": "2026-04-08T11:44:08.974Z"
}