example-data.com
Menu
Browse docs and collections

Overview

attachments / #531

Activity #531

User #170 attached application/pdf (31744070 bytes)

7/2/2025, 4:47:32 PM

Component variants

Medium
Small

User #170 attached application/pdf (31744070 bytes) · 7/2/2025, 4:47:32 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 531,
  "userId": 170,
  "targetType": "post",
  "targetId": 439,
  "url": "https://example.com/files/attachment-531.pdf",
  "mimeType": "application/pdf",
  "sizeBytes": 31744070,
  "createdAt": "2025-07-02T16:47:32.264Z"
}