data-FUFLNV.csv
- ownerUserId
-
Porter Dooley @porter.dooley
- name
- data-FUFLNV.csv
- mimeType
- text/csv
- sizeBytes
- 22995632
- url
- https://files.example.com/objects/155/data-FUFLNV.csv
- parentFolderId
- files/101
- isFolder
- false
- createdAt
- updatedAt
Overview
files / #155
data-FUFLNV.csv
#155
Request
curl example
curl -sS \ "https://example-data.com/api/v1/files/155" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/files/155" ); 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/155"
);
const file = (await res.json()) as File; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/files/155"
)
file = res.json() Response
{
"id": 155,
"ownerUserId": 135,
"name": "data-FUFLNV.csv",
"mimeType": "text/csv",
"sizeBytes": 22995632,
"url": "https://files.example.com/objects/155/data-FUFLNV.csv",
"parentFolderId": 101,
"isFolder": false,
"createdAt": "2026-05-11T17:59:34.687Z",
"updatedAt": "2026-05-15T12:25:20.053Z"
}