audio-gD6DlV.mp3
- ownerUserId
-
Myrl Pollich @myrl.pollich
- name
- audio-gD6DlV.mp3
- mimeType
- audio/mpeg
- sizeBytes
- 24573108
- url
- https://files.example.com/objects/500/audio-gD6DlV.mp3
- parentFolderId
- —
- isFolder
- false
- createdAt
- updatedAt
Overview
files / #500
audio-gD6DlV.mp3
#500
Request
curl example
curl -sS \ "https://example-data.com/api/v1/files/500" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/files/500" ); const file = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/files.d.ts https://example-data.com/types/files.d.ts
import type { File } from "./types/files";
const res = await fetch(
"https://example-data.com/api/v1/files/500"
);
const file = (await res.json()) as File; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/files/500"
)
file = res.json() Response
{
"id": 500,
"ownerUserId": 90,
"name": "audio-gD6DlV.mp3",
"mimeType": "audio/mpeg",
"sizeBytes": 24573108,
"url": "https://files.example.com/objects/500/audio-gD6DlV.mp3",
"parentFolderId": null,
"isFolder": false,
"createdAt": "2025-05-30T04:30:16.153Z",
"updatedAt": "2026-05-07T11:32:42.255Z"
}