Ask
31

How do I find out what is actually eating my Cursor usage allowance before it runs out?

Burned through the monthly allowance on the $20 plan in about nine days and I genuinely cannot tell you what did it. I am not looking for "use a cheaper model", I want to know how to attribute the spend while it is still happening.

What I understand so far: the allowance is a dollar amount, usage through Auto does not draw from it, manually picking a frontier model does, and the fast variants cost several times the standard ones. Past that I am guessing.

Specifically:

  • Is there a per request breakdown anywhere, or only a running total?
  • Does a long conversation re-send the whole context every turn, so that turn 40 costs much more than turn 4?
  • Does an agent run that touches forty files cost roughly forty times a single edit, or does it batch?

Anything that turns this into a number I can watch during the week rather than discover on the ninth day.

7 answers Share
Report

Answering anonymously — a moderator will review it first.

  • @oncall_omar · 2h ago · 2 replies

    Yes to the second one, and it is the answer to your whole question. Every turn re-sends the conversation, so cost per turn grows with the length of the thread. Turn 40 of a debugging session is not the same price as turn 4, it is substantially more, and the growth is roughly linear in how much history and how many files are in the window.

    Practical consequence: start new chats aggressively. When you have finished a subproblem, summarise the outcome in three lines, open a new thread, paste the three lines. I halved my spend doing only that, without changing model.

    On agent runs: it is not a flat multiplier per file, but a run that reads forty files pulls all of that into context and then keeps re-sending it for the rest of the run. The expensive thing is the reading, not the editing.

    19
    Share
    Reply

    Answering anonymously — a moderator will review it first.

    Report
    • @flakey_test · 2h ago

      The corollary nobody likes: the long frustrating debugging session, the one where you keep saying "no, that is not it", is the single most expensive thing you do all week. It is also the one where you are least willing to stop and start a fresh thread. Worth knowing about yourself.

      8
      Share
      Reply

      Answering anonymously — a moderator will review it first.

      Report
  • @gramgrader_gus · 2h ago · 2 replies

    Build the ledger yourself, because the vendor total will never tell you which task it was. One row per task: date, what it was, which model I picked, how many turns, did it land without a rewrite. Five seconds per row.

    After two weeks you can sort by "cost per thing that actually shipped" and the answer is usually embarrassing and specific, like one category of task consuming a third of the allowance while producing work I threw away. That is a decision you can act on. A monthly total is not.

    14
    Share
    Reply

    Answering anonymously — a moderator will review it first.

    Report
    • @quietmargin · 2h ago

      Seconding this from the finance-brain side. The number you want is spend per merged change, and nobody publishes it because it is different for every team and every repo.

      6
      Share
      Reply

      Answering anonymously — a moderator will review it first.

      Report
  • @stdlib_stef · 2h ago

    Before building anything, look at the usage page in your account. There is a running view of what has been consumed and by which model, which is enough to answer "is it the fast variant" and "is it one model or all of them" without instrumenting anything. Check it on a Monday and again on a Wednesday and you will have a burn rate.

    The biggest single lever in my experience is standard versus fast variant, because it is a several times multiplier that you set once and then forget you set.

    11
    Share
    Reply

    Answering anonymously — a moderator will review it first.

    Report
  • @iris_tanaka · 12h ago

    One structural thing that helps if you are also paying for API calls elsewhere: cached input is discounted on several providers. xAI publishes a 75% discount on cache hits for Grok 4.5, for instance. That only pays off if the stable part of your prompt is at the front and byte identical between calls, so putting your long system context first and the varying part last is free money on repeated calls.

    Check whether the specific thing you are paying for exposes caching at all before restructuring anything. Inside an editor you often do not control it.

    7
    Share
    Reply

    Answering anonymously — a moderator will review it first.

    Report
  • @deficit_dot · 2h ago

    Blunt possibility worth entertaining: if you are hitting the limit on day nine consistently, the honest conclusion might be that your workload costs more than $20 a month and no amount of attribution changes that. Measure for two weeks, then decide whether you are optimising a real inefficiency or just rationing something you should be buying more of.

    4
    Share
    Reply

    Answering anonymously — a moderator will review it first.

    Report