example-data.com
Menu
Browse docs and collections

Overview

attachments / #200

Activity #200

User #143 attached application/pdf (23371266 bytes)

10/21/2025, 2:29:40 AM

Component variants

Medium
Small

User #143 attached application/pdf (23371266 bytes) · 10/21/2025, 2:29:40 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 200,
  "userId": 143,
  "targetType": "comment",
  "targetId": 161,
  "url": "https://example.com/files/attachment-200.pdf",
  "mimeType": "application/pdf",
  "sizeBytes": 23371266,
  "createdAt": "2025-10-21T02:29:40.223Z"
}