audio-CfEk08.mp3
- ownerUserId
-
Nikko Kuhlman @nikko_kuhlman
- name
- audio-CfEk08.mp3
- mimeType
- audio/mpeg
- sizeBytes
- 20187648
- url
- https://files.example.com/objects/423/audio-CfEk08.mp3
- parentFolderId
- files/50
- isFolder
- false
- createdAt
- updatedAt
Overview
files / #423
audio-CfEk08.mp3
#423
Request
curl example
curl -sS \ "https://example-data.com/api/v1/files/423" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/files/423" ); 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/423"
);
const file = (await res.json()) as File; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/files/423"
)
file = res.json() Response
{
"id": 423,
"ownerUserId": 122,
"name": "audio-CfEk08.mp3",
"mimeType": "audio/mpeg",
"sizeBytes": 20187648,
"url": "https://files.example.com/objects/423/audio-CfEk08.mp3",
"parentFolderId": 50,
"isFolder": false,
"createdAt": "2024-09-13T00:53:32.245Z",
"updatedAt": "2025-09-17T19:44:04.385Z"
}