ForHosting KIT · Developer Utilities

GRE Total Score Combiner

The GRE reports Verbal Reasoning and Quantitative Reasoning on compatible scaled ranges, so those two section scores can be added into one combined total.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

Analytical Writing uses a different scale and should remain separate. Enter all three reported scores to receive the verbal-plus-quantitative total along with an explicit breakdown that preserves the writing score. This calculator validates the normal score ranges and half-point writing increments, helping prevent a mistyped or incorrectly formatted score from producing a plausible but misleading result.

Enter the three scores exactly as reported

Start with an official score report or another reliable record of the same results. Enter the Verbal Reasoning scaled score in the verbal field and the Quantitative Reasoning scaled score in the quantitative field. Each of these scores must be a whole number from 130 through 170. Then enter Analytical Writing as a number from 0 through 6, using a half-point increment such as 3.5, 4, or 4.5. Do not enter percentile ranks, numbers of correct answers, unofficial raw scores, or practice-test percentages in these fields. Those values describe performance in different ways and cannot be added as though they were scaled section scores. Check the labels carefully because swapping verbal and quantitative will leave the combined sum unchanged while making the section breakdown wrong. If a score is missing, wait until you have it instead of inserting zero: zero is not a valid Verbal or Quantitative scaled score, and a placeholder would misrepresent the result. The input checks deliberately reject values outside these formats so a simple typing mistake does not silently become a total.

Understand what the combined total includes

The combined GRE total is calculated by adding the Verbal Reasoning scaled score to the Quantitative Reasoning scaled score. For example, a verbal score of 158 and a quantitative score of 164 produce a combined total of 322. Because each section ranges from 130 to 170, the resulting combined total ranges from 260 to 340. Analytical Writing is not added to 322. It is returned alongside the total as its own score because it uses a separate 0-to-6 scale and represents a different assessment. Adding a writing score of 4.5 to 322 would create 326.5, but that number is not the standard combined GRE total and should not be presented as one. The result therefore repeats all three inputs as well as the calculated sum, making the arithmetic easy to audit. This tool performs no conversion between raw and scaled scores and does not estimate percentiles. It simply combines already scaled verbal and quantitative results while retaining the analytical writing result in the correct separate position.

Use the result without losing the section context

Use the combined total as a concise summary when a form, comparison table, or planning document specifically asks for Verbal plus Quantitative. Keep the returned section breakdown beside it, since two test takers can have the same combined total with quite different verbal and quantitative profiles. A program may care about one section more strongly than the sum, and Analytical Writing can also be considered separately. This calculator does not decide whether a score is competitive, predict admission, apply a school’s policy, or combine results from different test dates. If you are considering scores from more than one administration, verify the recipient’s current rules before choosing which numbers to report; do not construct a superscore unless that use is explicitly permitted. Also distinguish a reported scaled score from a target or practice score when saving the output. The algorithm is deterministic and uses no network request, random value, or current date, so identical valid inputs always return the same breakdown. Browser use is free, while an API request uses the published base price of $0.002.

Summarize an official score report

Add the reported verbal and quantitative scores while keeping Analytical Writing visible as a separate result.

Compare practice-test outcomes

Create consistent combined totals from already scaled practice sections and retain each section score for review.

Check an application worksheet

Verify the arithmetic in a planning document without accidentally adding the differently scaled writing score.

Which GRE scores are added together?

Only the Verbal Reasoning and Quantitative Reasoning scaled scores are added to form the combined total.

Is Analytical Writing included in the combined total?

No. Analytical Writing uses a separate scale, so the calculator reports it alongside the combined verbal-plus-quantitative total.

What is the possible combined score range?

With valid section scores from 130 to 170, the verbal-plus-quantitative combined total ranges from 260 to 340.

Can I enter percentile ranks or raw scores?

No. Enter scaled section scores only; percentiles, raw correct-answer counts, and percentages are not interchangeable with them.

Why must the writing score use half-point increments?

The input contract represents Analytical Writing on its separate scale using values such as 3, 3.5, 4, and 4.5.

What does an API request cost?

The base price is $0.002 per request, and the same deterministic calculation can run free in the browser.

Everything on this page is available programmatically. This section is for teams who want to wire it into their own systems; everyone else can just use the tool above.

POSThttps://api.kit.forhosting.com/edu/gre-total-combine

Prefer to automate it? One authenticated POST creates the task; the result comes back by webhook or a signed link. The same capability also runs here on the web, by email and from Telegram — and soon from our app too.

curl -X POST https://api.kit.forhosting.com/edu/gre-total-combine \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"verbal_score":158,"quantitative_score":164,"analytical_writing_score":4.5}'
{
  "verbal_score": 158,
  "quantitative_score": 164,
  "analytical_writing_score": 4.5
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "edu.gre_total_combine",
  "status": "queued",
  "_links": {
    "result": "/tasks/tsk_…/result"
  }
}

The API is asynchronous: the call returns a task_id immediately and the result arrives by webhook. Polling is capped at 1 req/s per task.

Per request$0.002

Published price — no tokens, no invented credits. A failed task is never charged.

HTTPCodeMeaning
401unauthorizedMissing or invalid API key.
402insufficient_balanceYour balance doesn't cover the task price.
404unknown_typeThat task type doesn't exist.
429rate_limitedToo many requests. Use the webhook instead of polling.

Read the full KIT documentation →