zeabur-server-catalog

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Zeabur Server Catalog

Zeabur Server Catalog

Always use
npx zeabur@latest
to invoke Zeabur CLI.
Never use
zeabur
directly or any other installation method. If
npx
is not available, install Node.js first.
请始终使用
npx zeabur@latest
调用 Zeabur CLI。
切勿直接使用
zeabur
或其他任何安装方式。如果没有
npx
,请先安装 Node.js。

Get All Available Options (JSON)

获取所有可用选项(JSON格式)

bash
npx zeabur@latest server catalog -i=false
Returns JSON with all providers, regions, and plans:
json
{
  "providers": [
    {
      "code": "HETZNER",
      "name": "Hetzner",
      "regions": [
        {
          "id": "nbg1",
          "name": "Nuremberg",
          "city": "",
          "country": "DE",
          "continent": "",
          "plans": [
            {
              "name": "cpx22",
              "cpu": 2,
              "memory": 4,
              "disk": 80,
              "egress": 20000,
              "price": 6,
              "originalPrice": 7.46,
              "available": true
            }
          ]
        }
      ]
    }
  ]
}
Notes:
  • price
    is in USD per month (integer or float).
    originalPrice
    shows the provider's list price before Zeabur discount.
  • memory
    is in GB (not MB).
  • egress
    is monthly bandwidth in GB.
  • code
    is uppercase (e.g.
    HETZNER
    ,
    VULTR
    ), but
    --provider
    filter accepts lowercase.
bash
npx zeabur@latest server catalog -i=false
返回包含所有服务商、区域和方案的JSON数据:
json
{
  "providers": [
    {
      "code": "HETZNER",
      "name": "Hetzner",
      "regions": [
        {
          "id": "nbg1",
          "name": "Nuremberg",
          "city": "",
          "country": "DE",
          "continent": "",
          "plans": [
            {
              "name": "cpx22",
              "cpu": 2,
              "memory": 4,
              "disk": 80,
              "egress": 20000,
              "price": 6,
              "originalPrice": 7.46,
              "available": true
            }
          ]
        }
      ]
    }
  ]
}
注意事项:
  • price
    单位为美元/月(整数或浮点数)。
    originalPrice
    显示服务商原价(未享受Zeabur折扣前的价格)。
  • memory
    单位为GB(非MB)。
  • egress
    为每月带宽,单位GB
  • code
    大写格式(例如
    HETZNER
    VULTR
    ),但
    --provider
    过滤器接受小写输入。

Filter Options

过滤选项

FlagExampleDescription
--provider
--provider hetzner
Filter by provider code
--country
--country DE
Filter by country code
--min-cpu
--min-cpu 4
Minimum CPU cores
--min-memory
--min-memory 8192
Minimum memory in MB (note: JSON output uses GB)
--gpu
--gpu
Only GPU plans
bash
undefined
参数示例说明
--provider
--provider hetzner
按服务商代码过滤
--country
--country DE
按国家代码过滤
--min-cpu
--min-cpu 4
最小CPU核心数
--min-memory
--min-memory 8192
最小内存(单位MB,注意:JSON输出使用GB)
--gpu
--gpu
仅显示GPU方案
bash
undefined

Example: 4+ core servers in Germany

示例:德国地区4核及以上的服务器

npx zeabur@latest server catalog --country DE --min-cpu 4 -i=false
undefined
npx zeabur@latest server catalog --country DE --min-cpu 4 -i=false
undefined

Use With Server Rent

结合服务器租用功能使用

Parse the catalog JSON to extract
provider
,
region
, and
plan
values, then use the
zeabur-server-rent
skill to rent:
bash
npx zeabur@latest server rent --provider <code> --region <id> --plan <name> -y -i=false
解析目录JSON数据,提取
provider
region
plan
的值,然后使用
zeabur-server-rent
功能进行租用:
bash
npx zeabur@latest server rent --provider <code> --region <id> --plan <name> -y -i=false