get
https://app.eraser.io/api/files
Retrieves a paginated list of files for the team. Excludes private, archived, and template files.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Example request
curl --location 'https://app.eraser.io/api/files?limit=2&sort=-updatedAt' \
--header 'Authorization: Bearer $YOUR-TOKEN-HERE'
Example response
{
"files": [
{
"id": "abc123",
"fileUrl": "https://app.eraser.io/workspace/abc123",
"title": "System Architecture",
"author": "user-id-1",
"folderId": null,
"createdAt": "2025-07-01T12:00:00.000Z",
"updatedAt": "2025-07-15T09:30:00.000Z",
"linkAccess": "no-link-access"
}
],
"nextCursor": "abc123"
} 400Invalid request parameters (e.g., invalid sort field, non-numeric limit, invalid cursor)
401Missing or invalid bearer token
403Unauthorized
500Internal server error