example-data.com
Menu
Browse docs and collections

Overview

attachments / #463

Activity #463

User #102 attached video/mp4 (26941435 bytes)

4/2/2026, 2:31:37 PM

Component variants

Medium
Small

User #102 attached video/mp4 (26941435 bytes) · 4/2/2026, 2:31:37 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 463,
  "userId": 102,
  "targetType": "restaurant",
  "targetId": 28,
  "url": "https://example.com/files/attachment-463.mp4",
  "mimeType": "video/mp4",
  "sizeBytes": 26941435,
  "createdAt": "2026-04-02T14:31:37.655Z"
}