report-CjQUmY.pdf
- ownerUserId
-
Amely Daniel @amely_daniel
- name
- report-CjQUmY.pdf
- mimeType
- application/pdf
- sizeBytes
- 16642138
- url
- https://files.example.com/objects/441/report-CjQUmY.pdf
- parentFolderId
- —
- isFolder
- false
- createdAt
- updatedAt
Overview
files / #441
report-CjQUmY.pdf
#441
Request
curl example
curl -sS \ "https://example-data.com/api/v1/files/441" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/files/441" ); 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/441"
);
const file = (await res.json()) as File; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/files/441"
)
file = res.json() Response
{
"id": 441,
"ownerUserId": 41,
"name": "report-CjQUmY.pdf",
"mimeType": "application/pdf",
"sizeBytes": 16642138,
"url": "https://files.example.com/objects/441/report-CjQUmY.pdf",
"parentFolderId": null,
"isFolder": false,
"createdAt": "2026-03-15T11:40:37.857Z",
"updatedAt": "2026-05-06T09:07:01.076Z"
}