audio-43hXET.mp3
- ownerUserId
-
Matt Kuhic @matt_kuhic57
- name
- audio-43hXET.mp3
- mimeType
- audio/mpeg
- sizeBytes
- 26301066
- url
- https://files.example.com/objects/577/audio-43hXET.mp3
- parentFolderId
- files/115
- isFolder
- false
- createdAt
- updatedAt
Overview
files / #577
audio-43hXET.mp3
#577
Request
curl example
curl -sS \ "https://example-data.com/api/v1/files/577" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/files/577" ); 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/577"
);
const file = (await res.json()) as File; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/files/577"
)
file = res.json() Response
{
"id": 577,
"ownerUserId": 226,
"name": "audio-43hXET.mp3",
"mimeType": "audio/mpeg",
"sizeBytes": 26301066,
"url": "https://files.example.com/objects/577/audio-43hXET.mp3",
"parentFolderId": 115,
"isFolder": false,
"createdAt": "2025-10-31T01:16:38.065Z",
"updatedAt": "2026-05-12T18:39:38.648Z"
}