flypod
CLI reference

flypod versions

List a flypod site's versions, newest first, marking which one is currently live.

flypod versions lists a site's versions, newest first. The live version is marked [live].

Synopsis

flypod versions

The target site is resolved from the folder-to-site link saved on the last deploy, or from --site.

Flags

FlagDescription
--site <id>List versions for a specific site id instead of the linked one.
--jsonEmit a single JSON object (see below).
-h, --helpPrint usage and exit.

Examples

List versions for the linked site:

flypod versions
v_8f1a  2026-06-18T14:22:03Z  [live]
v_7c0d  2026-06-17T09:11:48Z
v_5a92  2026-06-15T18:40:12Z

Machine-readable output:

flypod versions --site k3p9x2 --json
{
  "ok": true,
  "site_id": "k3p9x2",
  "live_version_id": "v_8f1a",
  "versions": [
    { "version_id": "v_8f1a", "created_at": "2026-06-18T14:22:03Z" },
    { "version_id": "v_7c0d", "created_at": "2026-06-17T09:11:48Z" },
    { "version_id": "v_5a92", "created_at": "2026-06-15T18:40:12Z" }
  ]
}

Notes

  • Each plain-text row is version_id created_at [live]. Only the live version carries the [live] marker.
  • Pass a version_id (or an unambiguous prefix of one) from this list to flypod rollback.

On this page