example-data.com
Menu
Browse docs and collections

Overview

attachments / #239

Activity #239

User #242 attached application/pdf (26602473 bytes)

7/2/2025, 11:07:45 PM

Component variants

Medium
Small

User #242 attached application/pdf (26602473 bytes) · 7/2/2025, 11:07:45 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 239,
  "userId": 242,
  "targetType": "recipe",
  "targetId": 7,
  "url": "https://example.com/files/attachment-239.pdf",
  "mimeType": "application/pdf",
  "sizeBytes": 26602473,
  "createdAt": "2025-07-02T23:07:45.557Z"
}