example-data.com

files / #165

ownerUserId
113
name
archive-0z1aHY.zip
mimeType
application/zip
sizeBytes
47088581
url
https://files.example.com/objects/165/archive-0z1aHY.zip
parentFolderId
148
isFolder
false
createdAt
updatedAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/files/165"
)
file = res.json()
{
  "id": 165,
  "ownerUserId": 113,
  "name": "archive-0z1aHY.zip",
  "mimeType": "application/zip",
  "sizeBytes": 47088581,
  "url": "https://files.example.com/objects/165/archive-0z1aHY.zip",
  "parentFolderId": 148,
  "isFolder": false,
  "createdAt": "2024-06-24T09:14:19.307Z",
  "updatedAt": "2026-05-10T08:43:26.395Z"
}
Draftbit