example-data.com

files / #204

ownerUserId
243
name
photo-X0Jvhg.jpg
mimeType
image/jpeg
sizeBytes
11221685
url
https://files.example.com/objects/204/photo-X0Jvhg.jpg
parentFolderId
103
isFolder
false
createdAt
updatedAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/files/204"
)
file = res.json()
{
  "id": 204,
  "ownerUserId": 243,
  "name": "photo-X0Jvhg.jpg",
  "mimeType": "image/jpeg",
  "sizeBytes": 11221685,
  "url": "https://files.example.com/objects/204/photo-X0Jvhg.jpg",
  "parentFolderId": 103,
  "isFolder": false,
  "createdAt": "2025-12-24T07:34:35.719Z",
  "updatedAt": "2026-04-04T06:36:47.512Z"
}
Draftbit