Get information about a file that could be a working file as much as an

GET /data/files/{file_id}

output file.

Path parameters

  • file_id string(uuid) Required

Responses

  • 200 application/json

    Information about file

    Hide response attributes Show response attributes object
    • id string(uuid)
    • name string
    • path string
    • revision integer
    • updated_at string(date-time)
    • task_id string(uuid)
    • entity_id string(uuid)
  • 404

    File not found

GET /data/files/{file_id}
curl \
 --request GET 'http://api.example.com/data/files/a24a6ea4-ce75-4665-a070-57453082c25' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "id": "string",
  "name": "string",
  "path": "string",
  "revision": 42,
  "updated_at": "2025-05-04T09:42:00Z",
  "task_id": "string",
  "entity_id": "string"
}