Skip to main content
GET
/
api
/
v1
/
files
/
{fileNo}
curl --request GET \
  --url 'https://upload.autorender.io/api/v1/files/2353377462' \
  --header 'Authorization: Bearer YOUR_API_KEY'
{
  "success": true,
  "data": {
    "id": "974628c2-9b55-4ce4-adf1-9b63edff6baa",
    "file_no": "2338045312",
    "name": "Screenshot from 2026-03-27 18-58-16.png",
    "url": "https://dev.autorender.io/FWA7PWC7LZ/Screenshot from 2026-03-27 18-58-16.png",
    "path": null,
    "format": "PNG",
    "dimensions": {
      "width": 1849,
      "height": 910
    },
    "size": 194141,
    "workspace": {
      "name": "api-testing",
      "workspace_no": "FWA7PWC7LZ"
    },
    "folder": null,
    "uploaded_by": "premmm2201",
    "uploaded_at": "2026-03-27T14:56:20.511Z",
    "asset_key": "2338045312",
    "asset_url": "https://dev.autorender.io/FWA7PWC7LZ/null",
    "extension": "image"
  }
}

Documentation Index

Fetch the complete documentation index at: https://autorender.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

curl --request GET \
  --url 'https://upload.autorender.io/api/v1/files/2353377462' \
  --header 'Authorization: Bearer YOUR_API_KEY'
{
  "success": true,
  "data": {
    "id": "974628c2-9b55-4ce4-adf1-9b63edff6baa",
    "file_no": "2338045312",
    "name": "Screenshot from 2026-03-27 18-58-16.png",
    "url": "https://dev.autorender.io/FWA7PWC7LZ/Screenshot from 2026-03-27 18-58-16.png",
    "path": null,
    "format": "PNG",
    "dimensions": {
      "width": 1849,
      "height": 910
    },
    "size": 194141,
    "workspace": {
      "name": "api-testing",
      "workspace_no": "FWA7PWC7LZ"
    },
    "folder": null,
    "uploaded_by": "premmm2201",
    "uploaded_at": "2026-03-27T14:56:20.511Z",
    "asset_key": "2338045312",
    "asset_url": "https://dev.autorender.io/FWA7PWC7LZ/null",
    "extension": "image"
  }
}

Overview

Fetch a single file by file_no (same id used in URLs and list results). The payload is wrapped as { "success": true, "data": { ... } }.

Path parameters

ParameterDescription
fileNoNumeric file identifier (e.g. 2353377462)

data object

Includes id, file_no, name, url, path, format, dimensions (width / height), size, workspace (name, workspace_no), folder, uploaded_by, uploaded_at, asset_key, asset_url, extension.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

fileNo
string
required

File number (numeric id in URL)

Example:

"2353377462"

Response

File details

success
boolean
data
object