image-91qNDW.png
- ownerUserId
-
Darian Schaden @darian_schaden36
- name
- image-91qNDW.png
- mimeType
- image/png
- sizeBytes
- 18737698
- url
- https://files.example.com/objects/351/image-91qNDW.png
- parentFolderId
- —
- isFolder
- false
- createdAt
- updatedAt
Overview
files / #351
image-91qNDW.png
#351
Request
curl example
curl -sS \ "https://example-data.com/api/v1/files/351" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/files/351" ); 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/351"
);
const file = (await res.json()) as File; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/files/351"
)
file = res.json() Response
{
"id": 351,
"ownerUserId": 53,
"name": "image-91qNDW.png",
"mimeType": "image/png",
"sizeBytes": 18737698,
"url": "https://files.example.com/objects/351/image-91qNDW.png",
"parentFolderId": null,
"isFolder": false,
"createdAt": "2025-06-26T15:13:03.695Z",
"updatedAt": "2026-03-29T12:30:26.757Z"
}