cURL
curl --request GET \ --url https://vaeroapi.com/v1/files \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "file-abc123", "object": "file", "bytes": 175, "created_at": 1613677385, "filename": "salesOverview.txt", "purpose": "fine-tune" } ], "object": "list" }
Returns a list of files that belong to the user’s organization.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
A list of File objects.
Show child attributes
Auto-assigned UUID file identifier.
"file-abc123"
Object type, which will always be 'file'.
"file"
Size of the uploaded file in bytes.
175
Unix timestamp for when the file was created.
1613677385
The name of the uploaded file.
"salesOverview.txt"
The purpose of the uploaded file.
"fine-tune"
Object type, which will always be 'list'.
"list"