script-zziHCV.txt
- ownerUserId
-
Sonia Nolan @sonia_nolan
- name
- script-zziHCV.txt
- mimeType
- text/plain
- sizeBytes
- 48509997
- url
- https://files.example.com/objects/409/script-zziHCV.txt
- parentFolderId
- files/10
- isFolder
- false
- createdAt
- updatedAt
Overview
files / #409
script-zziHCV.txt
#409
Request
curl example
curl -sS \ "https://example-data.com/api/v1/files/409" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/files/409" ); 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/409"
);
const file = (await res.json()) as File; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/files/409"
)
file = res.json() Response
{
"id": 409,
"ownerUserId": 208,
"name": "script-zziHCV.txt",
"mimeType": "text/plain",
"sizeBytes": 48509997,
"url": "https://files.example.com/objects/409/script-zziHCV.txt",
"parentFolderId": 10,
"isFolder": false,
"createdAt": "2025-07-24T01:05:32.029Z",
"updatedAt": "2026-01-19T05:40:04.120Z"
}