config-xMExdh.json
- ownerUserId
-
Alex Lang @alex_lang85
- name
- config-xMExdh.json
- mimeType
- application/json
- sizeBytes
- 39724694
- url
- https://files.example.com/objects/533/config-xMExdh.json
- parentFolderId
- —
- isFolder
- false
- createdAt
- updatedAt
Overview
files / #533
config-xMExdh.json
#533
Request
curl example
curl -sS \ "https://example-data.com/api/v1/files/533" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/files/533" ); 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/533"
);
const file = (await res.json()) as File; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/files/533"
)
file = res.json() Response
{
"id": 533,
"ownerUserId": 163,
"name": "config-xMExdh.json",
"mimeType": "application/json",
"sizeBytes": 39724694,
"url": "https://files.example.com/objects/533/config-xMExdh.json",
"parentFolderId": null,
"isFolder": false,
"createdAt": "2025-09-13T12:16:07.608Z",
"updatedAt": "2025-09-22T00:20:20.433Z"
}