GET /files
List uploaded files, newest first.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| GET | /v1/files |
Metadata only — download URLs are minted per explicit GET, not per row. session_id scopes the list to one run's uploads.
Query parameters
session_idstring
limitdefault
50integercursorstring
curl "https://api.ellipsis.dev/v1/files" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
for item in client.files.list():
print(item)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
for await (const item of client.files.list()) {
console.log(item);
}Request
Response
Example response · 200
{
"has_more": false,
"next_cursor": "string"
}