example-data.com
Menu
Browse docs and collections

Overview

attachments / #360

Activity #360

User #69 attached image/png (4262926 bytes)

3/19/2026, 8:13:50 AM

Component variants

Medium
Small

User #69 attached image/png (4262926 bytes) · 3/19/2026, 8:13:50 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 360,
  "userId": 69,
  "targetType": "post",
  "targetId": 310,
  "url": "https://picsum.photos/seed/attachment-360/600/300",
  "mimeType": "image/png",
  "sizeBytes": 4262926,
  "createdAt": "2026-03-19T08:13:50.209Z"
}