audio-Bd2H2S.mp3
- ownerUserId
-
Marilou Douglas @marilou.douglas
- name
- audio-Bd2H2S.mp3
- mimeType
- audio/mpeg
- sizeBytes
- 42400288
- url
- https://files.example.com/objects/377/audio-Bd2H2S.mp3
- parentFolderId
- —
- isFolder
- false
- createdAt
- updatedAt
Overview
files / #377
audio-Bd2H2S.mp3
#377
Request
curl example
curl -sS \ "https://example-data.com/api/v1/files/377" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/files/377" ); 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/377"
);
const file = (await res.json()) as File; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/files/377"
)
file = res.json() Response
{
"id": 377,
"ownerUserId": 78,
"name": "audio-Bd2H2S.mp3",
"mimeType": "audio/mpeg",
"sizeBytes": 42400288,
"url": "https://files.example.com/objects/377/audio-Bd2H2S.mp3",
"parentFolderId": null,
"isFolder": false,
"createdAt": "2026-02-23T14:16:16.755Z",
"updatedAt": "2026-03-17T20:14:00.906Z"
}