audio-dC82kc.mp3
- ownerUserId
-
Charlene Kuhic @charlene_kuhic
- name
- audio-dC82kc.mp3
- mimeType
- audio/mpeg
- sizeBytes
- 51507877
- url
- https://files.example.com/objects/559/audio-dC82kc.mp3
- parentFolderId
- files/92
- isFolder
- false
- createdAt
- updatedAt
Overview
files / #559
audio-dC82kc.mp3
#559
Request
curl example
curl -sS \ "https://example-data.com/api/v1/files/559" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/files/559" ); 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/559"
);
const file = (await res.json()) as File; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/files/559"
)
file = res.json() Response
{
"id": 559,
"ownerUserId": 244,
"name": "audio-dC82kc.mp3",
"mimeType": "audio/mpeg",
"sizeBytes": 51507877,
"url": "https://files.example.com/objects/559/audio-dC82kc.mp3",
"parentFolderId": 92,
"isFolder": false,
"createdAt": "2025-06-14T02:45:54.582Z",
"updatedAt": "2025-12-18T05:23:36.067Z"
}