example-data.com
Menu
Browse docs and collections

Overview

attachments / #457

Activity #457

User #69 attached image/webp (44561178 bytes)

2/8/2026, 8:38:39 PM

Component variants

Medium
Small

User #69 attached image/webp (44561178 bytes) · 2/8/2026, 8:38:39 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 457,
  "userId": 69,
  "targetType": "recipe",
  "targetId": 27,
  "url": "https://picsum.photos/seed/attachment-457/1200/600",
  "mimeType": "image/webp",
  "sizeBytes": 44561178,
  "createdAt": "2026-02-08T20:38:39.269Z"
}