example-data.com
Menu
Browse docs and collections

Overview

attachments / #339

Activity #339

User #95 attached image/jpeg (44841818 bytes)

10/1/2025, 3:51:46 AM

Component variants

Medium
Small

User #95 attached image/jpeg (44841818 bytes) · 10/1/2025, 3:51:46 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 339,
  "userId": 95,
  "targetType": "post",
  "targetId": 470,
  "url": "https://picsum.photos/seed/attachment-339/400/800",
  "mimeType": "image/jpeg",
  "sizeBytes": 44841818,
  "createdAt": "2025-10-01T03:51:46.047Z"
}