example-data.com

files / #155

ownerUserId
135
name
data-FUFLNV.csv
mimeType
text/csv
sizeBytes
22995632
url
https://files.example.com/objects/155/data-FUFLNV.csv
parentFolderId
101
isFolder
false
createdAt
updatedAt

Component variants

curl -sS \
  "https://example-data.com/api/v1/files/155" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/files/155"
);
const file = await res.json();
import type { File } from "https://example-data.com/types/files.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/files/155"
)
file = res.json()
{
  "id": 155,
  "ownerUserId": 135,
  "name": "data-FUFLNV.csv",
  "mimeType": "text/csv",
  "sizeBytes": 22995632,
  "url": "https://files.example.com/objects/155/data-FUFLNV.csv",
  "parentFolderId": 101,
  "isFolder": false,
  "createdAt": "2026-05-11T17:59:34.687Z",
  "updatedAt": "2026-05-15T12:25:20.053Z"
}
Draftbit