example-data.com
Menu
Browse docs and collections

Overview

attachments / #201

Activity #201

User #183 attached application/pdf (7358386 bytes)

10/2/2025, 11:42:44 AM

Component variants

Medium
Small

User #183 attached application/pdf (7358386 bytes) · 10/2/2025, 11:42:44 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 201,
  "userId": 183,
  "targetType": "post",
  "targetId": 169,
  "url": "https://example.com/files/attachment-201.pdf",
  "mimeType": "application/pdf",
  "sizeBytes": 7358386,
  "createdAt": "2025-10-02T11:42:44.090Z"
}