example-data.com
Menu
Browse docs and collections

Overview

files / #345

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/files/345"
);
const file = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/files.d.ts https://example-data.com/types/files.d.ts
import type { File } from "./types/files";

const res = await fetch(
  "https://example-data.com/api/v1/files/345"
);
const file = (await res.json()) as File;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/files/345"
)
file = res.json()

Response

{
  "id": 345,
  "ownerUserId": 89,
  "name": "spreadsheet-2oCCPv.xlsx",
  "mimeType": "application/vnd.ms-excel",
  "sizeBytes": 5593458,
  "url": "https://files.example.com/objects/345/spreadsheet-2oCCPv.xlsx",
  "parentFolderId": 87,
  "isFolder": false,
  "createdAt": "2025-01-20T13:53:31.765Z",
  "updatedAt": "2025-10-19T10:54:41.820Z"
}