Privacy
What happens to the description you type and the contact details the calculator asks for, in specific terms. It is a short page because the site collects a small number of things, and every claim on it is checkable in the code.
The short version
- The calculator asks for your name and a work email before it shows the estimate. There is no way past that step, and a company name is optional.
- Those details are stored together with your description and the estimate they produced, in ANTLR Interactive’s own database. There is no account and no password.
- Your description reaches an AI provider only when this deployment has a provider key configured. When it does not, a routine on our own server reads it instead and no third party sees it.
- A shared estimate holds the structured specification rather than your description, unless you choose to include it, and it deletes itself after 30 days.
- Nothing you submit is used to train a model, and no advertising network, tracking script, or cookie is involved anywhere on the site.
What happens when you type a description
Your description is sent to this site’s server so it can be interpreted into a structured specification: the list of platforms, capabilities, integrations, and constraints the estimate is computed from.
What happens next depends on how this deployment is configured. If an AI provider key is configured, the description is sent to Anthropic’s API to be interpreted, under commercial API terms which state that inputs and outputs are not used to train their models. If no key is configured, the description is interpreted by a routine running on our own server and is not transmitted to any third party. Either way the number itself comes from the same deterministic engine, which sees the specification and never your words.
The interpretation step writes none of your text to storage. When a model is used, the resulting specification is cached for 7 days against a one-way hash of the description, so that reloading the page or reopening your own link does not repeat the work. The hash cannot be turned back into what you wrote, and what sits beside it is the specification rather than the text.
From that point the estimate is calculated in your browser. Answering a follow-up question or changing your mind about one recalculates locally and sends nothing.
The last step before the result asks for your name, a work email, and optionally a company. Submitting that form sends those fields back to the server along with your description and the estimate, and the whole lot is written to ANTLR Interactive’s database. The next section describes exactly what that record contains. If the write fails, the estimate is shown anyway, because an outage on our side is a poor reason to withhold something you have already done the work for.
What is stored, and where it goes
Three records can be created. The first is written when you submit the form that unlocks the estimate, so anyone who gets that far has one. The other two exist only if you press the button that makes them.
- Your contact details and your project
- The form before the estimate writes one row into ANTLR Interactive’s leads database, the same table their own contact form writes to, tagged so that a lead from this calculator is distinguishable from one that came through the website. The row holds your name, your email, the company if you gave one, the two-letter country code your request arrived with, and a plain-text summary of the project. That summary is the full picture: your original description, the scope we read out of it, the effort breakdown, the cost drivers, and the unknowns. It exists so that a conversation can start without you explaining the project twice. No expiry is set on that row, so it stays until somebody removes it; if the database is unreachable the same record goes to backup storage for 180 days instead.
- Shared estimates
- Pressing Share creates a second record so that a link can be opened by somebody else. It contains the structured specification and the date it was created, under a random identifier that cannot be guessed or walked through to find anyone else’s. Your description is included only if you explicitly choose to include it. The dollar figures are not stored at all, since opening a shared link re-runs the engine, and the whole record expires after 30 days and is deleted automatically. There is nobody to ask about deleting an anonymous link later, so it deletes itself.
- Review requests
- If you ask for a real engineer to look at the estimate, you are choosing to send your name and email address, optionally a company and a note, along with the specification. That goes to ANTLR Interactive, who built this tool, and it is used to reply to you. It is retained for 90 days.
Reading a cost guide, or leaving before the form, creates none of these. The record is written at the form and nowhere earlier.
Analytics and cookies
If analytics is enabled on this deployment it measures anonymous product events: a calculator was started, contact details were submitted, an estimate was generated, a link was shared. Every analytics call in this codebase passes through a single file, and the event properties it will accept are restricted to numbers, booleans, and short fixed values. There is no field a project description or an email address could fit into, which is what turns "we do not send your words to an analytics provider" from a promise into a property of the code.
There is no advertising network on this site, no cross-site tracking, and no third-party script watching what you type.
The calculator sets no cookies, requires you to accept nothing, and writes nothing to your browser’s storage. That is also why refreshing the page loses your place. It is a real trade-off, and this is the side of it we chose.
What the site does not do with it
Be clear about what the form is: it is a lead. Your details land in the database ANTLR Interactive uses to keep track of people who might want software built, and somebody there can read what you wrote and get in touch about it. That is the arrangement, and the estimate on the other side of it is complete rather than a teaser.
What the code does with it stops there. Nothing you submit is used to train a model. The only outbound destinations anywhere in this codebase are the interpretation provider described above, and only on a deployment that has a key for one, and the storage that holds the record itself.
Getting something removed
Email info@antlr-interactive.com from the address you used, or with the shared link, and the matching records are deleted. That covers the lead row, which has no expiry of its own, as well as a share link you would rather not wait out.
Shared estimates go on their own after 30 days and review requests after 90, so for those two the answer is often to wait. The contact details stay until somebody deletes them, which is the honest description of a hand-run process rather than an automated one.
Who runs this, and when this page changes
whatwillmyappcost.com is built and operated by ANTLR Interactive, who design and build custom mobile and web applications. They wrote the calculator, they hold the details it collects, and the reason it is free is that some of the people who use it turn out to need software built. The estimate you get is the same one either way.
If any of the above changes materially, this page changes with it. There is no version history to consult, so the honest statement is that this page describes how the site works today rather than how it has always worked.
Related
How we estimate explains what the interpreted specification contains and what the deterministic engine does with it, which is the other half of understanding what happens to your description.