cURL
curl --request GET \ --url https://www.datalab.to/api/v1/files \ --header 'X-API-Key: <api-key>'
{ "files": [ { "file_id": 123, "original_filename": "<string>", "content_type": "<string>", "file_size": 123, "upload_status": "<string>", "created": "2023-11-07T05:31:56Z", "reference": "<string>" } ], "total": 123, "limit": 123, "offset": 123 }
List all uploaded files for the team.
Supports pagination with limit and offset parameters.
Args: limit: Maximum number of files to return (default: 50, max: 100) offset: Number of files to skip (default: 0)
Successful Response
Response with list of files.
List of uploaded files
Show child attributes
Total number of files
Limit per page
Current offset
Was this page helpful?