example-data.com

files / #179

ownerUserId
250
name
script-6KFXAW.txt
mimeType
text/plain
sizeBytes
3240608
url
https://files.example.com/objects/179/script-6KFXAW.txt
parentFolderId
94
isFolder
false
createdAt
updatedAt

Component variants

curl -sS \
  "https://example-data.com/api/v1/files/179" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/files/179"
);
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/179"
);
const file = (await res.json()) as File;
import requests

res = requests.get(
    "https://example-data.com/api/v1/files/179"
)
file = res.json()
{
  "id": 179,
  "ownerUserId": 250,
  "name": "script-6KFXAW.txt",
  "mimeType": "text/plain",
  "sizeBytes": 3240608,
  "url": "https://files.example.com/objects/179/script-6KFXAW.txt",
  "parentFolderId": 94,
  "isFolder": false,
  "createdAt": "2024-08-07T15:20:51.048Z",
  "updatedAt": "2025-10-30T01:11:49.122Z"
}
Draftbit