估算 Cursor 订阅用量和额度的控制台脚本

weddy 2026-08-17 11:33 1

续详细分析 Cursor 的 Grok 模型月额度,可能没有你想象的那么多:Ultra 大约 $2000,Pro+ 有 $400,这里我给一个统计脚本:


await (async () => {
const summaryRes = await fetch("/api/usage-summary", {
credentials: "include"
});

if (!summaryRes.ok) throw new Error(`usage-summary: HTTP ${summaryRes.status}`);

const summary = await summaryRes.json();
const plan = summary.individualUsage?.plan;
const startDate = new Date(summary.billingCycleStart).getTime();

const usageRes = await fetch("/api/dashboard/get-aggregated-usage-events", {
method: "POST",
credentials: "include",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ teamId: -1, startDate })
});

if (!usageRes.ok) throw new Error(`usage-events: HTTP ${usageRes.status}`);

const data = await usageRes.json();
const n = v => Number(v || 0);

const rows = data.aggregations
.filter(x => x.modelIntent && [1, 2].includes(x.tier))
.map(x => ({
tier: x.tier,
cost: n(x.totalCents) / 100
}));

const sum = tier =>
rows.filter(x => x.tier === tier)
.reduce((a, x) => a + x.cost, 0);

const firstUsed = sum(2);
const otherUsed = sum(1);
const autoPct = n(plan.autoPercentUsed);
const apiPct = n(plan.apiPercentUsed);
const guaranteed = n(plan.limit) / 100;

const firstTotal = autoPct > 0 && autoPct < 100
? firstUsed * 100 / autoPct
: null;

console.log(
`Cursor Models
Used $${firstUsed.toFixed(2)}
Usage ${autoPct}%
Estimated Total $${firstTotal == null ? "N/A" : firstTotal.toFixed(2)}

Other Models
Guaranteed $${guaranteed.toFixed(2)}
Used $${otherUsed.toFixed(2)}
Usage ${apiPct}%`
);
})();

用法:登录 cursor.com/dashboard 以后在开发者工具的控制台里执行即可。会打印出估计的月总量。


欢迎大家提供更多的数据点

最新回复 (10)
  • hiugo 08-17 11:38
    1

    pro+的第一方 grok,大概六百刀

  • 土豆 08-17 13:57
    2

    Cursor Models

    Used $778.25

    Usage 97.28125%

    Estimated Total $800.00


    Other Models

    Guaranteed $70.00

    Used $4636.87

    Usage 100%


    订阅的$60的套餐

  • 韩冰 08-17 15:53
    3

    Cursor Models

    Used $41.13

    Usage 91.4%

    Estimated Total $45.00


    Other Models

    Guaranteed $20.00

    Used $29.73

    Usage 66.06666666666666%

  • cleverlin 08-17 18:36
    4

    ** Pro+ **


    Cursor Models
    Used $544.64
    Usage 68.08375%
    Estimated Total $799.96

    Other Models
    Guaranteed $70.00
    Used $112.61
    Usage 100%
  • cleverlin 08-17 18:37
    5

    佬,你的 Other Models 咋用了这么多?4636.87

  • chuhe 08-18 10:03
    6

    ultra

    Cursor Models

    Used $77.31

    Usage 3.8655000000000004%

    Estimated Total $1999.96


    Other Models

    Guaranteed $400.00

    Used $5.44

    Usage 0%

  • 土豆 08-18 12:00
    7

    前一段时间Cursor出现了使用额度不更新的BUG(他们说的卡账单),就疯狂的跑了一下任务。现在不行了,已经被堵上了。

  • Mr.L 08-18 12:04
    8

    这个好,我是 pro .

    Cursor Models

    Used $85.46

    Usage 28.486666666666665%

    Estimated Total $300.00


    Other Models

    Guaranteed $20.00

    Used $5.22

    Usage 11.600000000000001%

  • 叶长风 08-18 12:36
    9

    看起来 cursor 开个 ultra 也挺实惠的

  • 叶长风 08-18 12:36
    10

    大佬,cursor 的 grok 是不降智的吗?

* 帖子来源Linux.do
返回