example-data.com
Menu
Browse docs and collections

Overview

attachments / #34

Activity #34

User #242 attached application/pdf (34078355 bytes)

12/15/2025, 9:21:29 PM

Component variants

Medium
Small

User #242 attached application/pdf (34078355 bytes) · 12/15/2025, 9:21:29 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 34,
  "userId": 242,
  "targetType": "recipe",
  "targetId": 277,
  "url": "https://example.com/files/attachment-34.pdf",
  "mimeType": "application/pdf",
  "sizeBytes": 34078355,
  "createdAt": "2025-12-15T21:21:29.238Z"
}