example-data.com
Menu
Browse docs and collections

Overview

attachments / #101

Activity #101

User #162 attached video/mp4 (34621150 bytes)

4/14/2026, 12:52:39 AM

Component variants

Medium
Small

User #162 attached video/mp4 (34621150 bytes) · 4/14/2026, 12:52:39 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 101,
  "userId": 162,
  "targetType": "post",
  "targetId": 115,
  "url": "https://example.com/files/attachment-101.mp4",
  "mimeType": "video/mp4",
  "sizeBytes": 34621150,
  "createdAt": "2026-04-14T00:52:39.029Z"
}