example-data.com

files / #205

ownerUserId
164
name
audio-m9KEgv.mp3
mimeType
audio/mpeg
sizeBytes
20836151
url
https://files.example.com/objects/205/audio-m9KEgv.mp3
parentFolderId
147
isFolder
false
createdAt
updatedAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/files/205"
)
file = res.json()
{
  "id": 205,
  "ownerUserId": 164,
  "name": "audio-m9KEgv.mp3",
  "mimeType": "audio/mpeg",
  "sizeBytes": 20836151,
  "url": "https://files.example.com/objects/205/audio-m9KEgv.mp3",
  "parentFolderId": 147,
  "isFolder": false,
  "createdAt": "2024-12-05T21:44:36.326Z",
  "updatedAt": "2026-01-17T11:27:38.798Z"
}
Draftbit