ForHosting KIT · Documents & PDF

Standard envelope size lookup

Envelope names are short, but the sizing systems behind them are easy to confuse.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

This lookup turns a recognized name such as #10, A2, C4, C5, or DL into exact width and height values in both inches and millimeters, then explains what that format is commonly used for. It is useful when choosing stationery, checking whether a document must be folded, configuring a print layout, or validating packaging data. Enter one standard name and receive a concise, deterministic answer without searching through separate US and international size charts.

Identify the naming family before ordering or printing

Envelope labels come from several families, and similar-looking labels do not necessarily describe related dimensions. Numbered commercial formats such as #9, #10, and #11 are common in North American business mail. Announcement envelopes use names such as A2 and A7, while the ISO C series is designed around ISO paper sizes. DL is another widely used international business format. This lookup recognizes representative sizes from all of those groups and reports a canonical name, so inputs such as 10, No. 10, and #10 resolve consistently. That normalization is convenient, but the family still matters: an A2 announcement envelope is not an envelope for an ISO A2 sheet. Read the returned dimensions before purchasing stock, specifying a print job, or creating a mail template. Width is the shorter edge and height is the longer edge in the result, which keeps orientation consistent across every supported format. When an unfamiliar or unsupported name is entered, the tool returns an error instead of guessing at the intended size.

Use both unit systems without introducing conversion drift

The result includes inches and millimeters together because envelope production and document workflows often cross unit systems. North American commercial and announcement sizes are conventionally defined in inches, while ISO C-series and DL envelopes are defined in millimeters. A converted value can therefore contain decimals that look less tidy than the defining measurement. The lookup stores the standard dimensions and supplies practical equivalents, avoiding repeated conversions in spreadsheets, templates, or application code. This is especially helpful when a designer works in inches but a printer requests millimeters, or when an inventory feed mixes imported and domestic products. Keep both values with the envelope record rather than rounding them again at each handoff. Small rounding changes can affect automated validation, even though they rarely matter to a physical ruler. The returned structure separates the two systems clearly and labels width and height, making it suitable for human checks as well as deterministic API processing. At $0.002 per API request, the same lookup can be incorporated into quoting, catalog cleanup, and print-preflight workflows.

Match the format to the document and mailing purpose

Dimensions answer whether an item can fit, while the typical-use description explains why a format is normally selected. A #10 envelope is the familiar choice for business letters and invoices because US letter paper fits after being folded into thirds. A #9 is commonly used as a return envelope inside that mailing. Announcement formats suit cards and invitations, with A7 often chosen for a 5-by-7-inch card. In the ISO family, C4 carries A4 sheets without folding, C5 carries A4 folded once, and C6 carries A4 folded twice. Those relationships provide a useful starting point, but they do not replace a physical fit test. Paper thickness, the number of sheets, card embellishments, window position, closure style, and postal rules can all change the practical choice. Use the lookup to select a likely standard, then confirm clearance and mailing requirements with the printer or carrier. The capability deliberately reports a typical use rather than promising compatibility with every insert, machine, postage class, or regional specification.

Configure a print template

Retrieve both unit systems before setting the artboard, margins, address block, and production specifications.

Choose a mailing format

Compare a familiar envelope name with its dimensions and normal purpose before ordering stationery or planning folds.

Normalize catalog data

Turn common aliases into canonical envelope names and structured dimensions for product or inventory records.

How much does the lookup cost?

Each API request costs $0.002. The browser experience is available without an API charge.

Is an A2 envelope the same size as ISO A2 paper?

No. In this lookup, A2 is the North American announcement-envelope size, commonly used for invitations and cards.

Are width and height returned in a consistent orientation?

Yes. Width is the shorter edge and height is the longer edge for every recognized envelope.

Can I enter No. 10 instead of #10?

Yes. Common numbered-envelope forms such as #10, No. 10, and 10 are normalized to the same canonical name.

What happens when the envelope name is not recognized?

The capability returns an invalid-input error and does not invent dimensions or choose a similar name.

Does the typical use guarantee that my contents will fit?

No. It is general guidance; confirm the insert count, thickness, closures, printer tolerances, and applicable postal rules.

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/doc/envelope-size-lookup

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/doc/envelope-size-lookup \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"text":"#10"}'
{
  "text": "#10"
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "doc.envelope_size_lookup",
  "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.

max_mb25
max_pages200
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 →