Get file details

Retrieving a file's details over UUID requires to authenticate against the API.

GET /v4/files/{file_uuid}

API Permissions

OBJECTS_FETCH

Try it out

Request

Copy-paste the cURL request in your Terminal or click on the API Explorer tab to see the API in action.

host: 'https://api.filerobot.com/fdocs' path: '/v4/files/{file_uuid}' headers: X-Filerobot-Key: fa5fe3303dd34e1da4810915c7c3fd6f variables: file_uuid: 7bd2327b-3e27-5690-a8ae-7570ebf50000 theme: clouds-midnight editor_theme: clouds_midnight method: GET render: curl_tab: true

Response

{
  "status": "success",
  "file": {
    "uuid": "7bd2327b-3e27-5690-a8ae-7570ebf50000",
    "name": "thelastboat.jpg",
    "extension": "jpg",
    "size": {
      "bytes": 67450,
      "pretty": "65.87 KB"
    },
    "flags": [],
    "type": "image/jpeg",
    "info": {
      "img_h": 812,
      "img_w": 1300,
      "img_type": "JPEG",
      "visibility": "2"
    },
    "meta": {
      "price": "79000",
      "title": {
        "de_DE": "Boot",
        "en_US": "boat",
        "fr_FR": "bateau",
        "it_IT": "barca"
      },
      "material": "wood",
      "description": {
        "de_DE": "ein kleines Boot",
        "en_US": "a small boat",
        "fr_FR": "un petit bateau",
        "it_IT": "una piccola barca"
      }
    },
    "tags": {},
    "visibility": {
      "value": "VISIBILITY_INHERIT",
      "inherited": "VISIBILITY_PUBLIC",
      "set": "VISIBILITY_INHERIT",
      "actual": "VISIBILITY_PUBLIC"
    },
    "url": {
      "public": "https://store.filerobot.com/fdocs/api-demo/thelastboat.jpg",
      "permalink": "https://api.filerobot.com/fdocs/v4/get/7bd2327b-3e27-5690-a8ae-7570ebf50000",
      "cdn": "https://fdocs.filerobot.com/api-demo/thelastboat.jpg?vh=c78308",
      "path": "/api-demo/thelastboat.jpg"
    },
    "hash": {
      "sha1": "c7830848f6760785265553efdf529823c0dc6d3d",
      "blurhash": "AHNRn:04};wy"
    },
    "created_at": "2021-08-11T21:31:33Z",
    "modified_at": "2021-08-11T22:16:44Z",
    "folder": {
      "uuid": "7610923e-80d0-50e8-a2e4-c509be390158",
      "name": "/api-demo"
    },
    "product": {
      "ref": null,
      "position": null
    }
  }
}