Application Revisions
Returns the revision history for an application, newest first: every deployed version with its creation time, whether it is currently serving traffic, and a deployment status derived from recent deployment events.
Use cases:
- Incident correlation: answer “did this regression start with a deploy?” by lining revision boundaries up against error/latency changes from the analytics endpoint
- Rollback context: identify the previous known-good revision
status and deployed_by are derived from the last 30 days of
deployment events; older revisions return null for both. message and
annotations are the deploy-time metadata set via fal deploy --message/--annotation; both are null when the deploy did not set them.
Authentication: Required via API key. Only the app owner can query it.
Authorizations
API key must be prefixed with "Key ", e.g. Authorization: Key YOUR_API_KEY
Path Parameters
Username of the app owner
"user_123"
Application name
"my-app"
Query Parameters
Maximum number of revisions to return per page (1-100)
1 <= x <= 10050
Pagination cursor from previous response
"Mg=="
Response
Successfully retrieved application revisions
Revision history for an application
Cursor for the next page of results, null if no more pages
Boolean indicating if more results are available (convenience field derived from next_cursor)
Canonical endpoint identifier ('/')
"user_123/my-app"
Application revisions, newest first