US Address Format Explained: USPS Addressing Rules

How a US mailing address is structured: street line, unit, city, state, ZIP+4 — with USPS Publication 28 standards, abbreviations and worked examples.

By FakeName Editorial TeamPublished July 2, 2026Last updated July 2, 20268 min read

Every US mailing address follows the same compact grammar, and once you can read it, form design, address validation and test-data generation all get easier. The authoritative rulebook is USPS Publication 28, which defines how addresses should be standardized for mail processing [pub28]. This guide walks the format part by part, with the standard abbreviations and worked examples — and shows what a structurally correct but fictional test address looks like.

The scale involved explains why the format is so strict: USPS serves more than 165 million delivery points across the country [usps-facts], organized under roughly 41,000 active ZIP codes [zip-wiki]. At that volume, addresses are machine-read and machine-sorted — a predictable structure is not bureaucratic pedantry, it is what makes next-day sorting physically possible.

The two lines that matter

Strip away recipient names and company lines and a domestic address reduces to two functional lines. The delivery address line locates the point: primary number, street name, suffix and any secondary unit. The last line routes it: city, two-letter state abbreviation, and ZIP code [pub28].

PartExampleRules
Primary number4821The house/building number; no ordinal words
PredirectionalN, SWOptional compass point before the street name
Street nameMAPLEThe name proper, uppercase in standardized form
SuffixAVE, ST, BLVDStandard abbreviation from the Pub 28 suffix table
PostdirectionalNEOptional compass point after the suffix
Secondary unitAPT 3B, STE 200Standard designators: APT, STE, UNIT, FL, RM
CityAUSTINThe USPS-recognized place name for the ZIP
StateTXTwo-letter USPS abbreviation, always
ZIP / ZIP+478701-44255 digits route to an area; +4 narrows to a block face
Anatomy of a standard US address, per USPS Publication 28.

Standard abbreviations: why AVENUE becomes AVE

Publication 28 defines a canonical abbreviation for every street suffix and unit designator — over 200 suffix variants map onto a much smaller standard set: AVENUE, AVENU and AV all standardize to AVE; BOULEVARD to BLVD; APARTMENT to APT [pub28]. Address-validation APIs (and the CASS-certified software behind shipping labels) rewrite input into this canonical form, which is why the address you typed in a checkout often comes back subtly different.

  • Common suffixes — ST (Street), AVE (Avenue), BLVD (Boulevard), DR (Drive), LN (Lane), RD (Road), CT (Court), PL (Place), PKWY (Parkway), CIR (Circle).
  • Directionals — N, S, E, W, NE, NW, SE, SW, before or after the street name: 100 N MAIN ST, 200 OAK AVE SW.
  • Unit designators — APT, STE (Suite), UNIT, FL (Floor), RM (Room), BLDG (Building); '#' is discouraged in standardized form.
  • States — always the two-letter code: TX, CA, NY. Old-style abbreviations like Calif. or Tex. are not valid in the last line.
DesignatorMeaningFollowed by a number?
APTApartmentYes — APT 3B
STESuiteYes — STE 200
UNITUnitYes — UNIT 12
FLFloorYes — FL 4
RMRoomYes — RM 118
BLDGBuildingYes — BLDG 7
DEPTDepartmentYes — DEPT 450
BSMT / FRNT / REAR / LBBYBasement / Front / Rear / LobbyNo — stand alone [pub28]
Common secondary-unit designators from Publication 28, Appendix C.

How the ZIP code ties it together

The last line's ZIP code is what actually routes the piece: the first digit places the address in one of ten national zones, the first three digits identify a sectional center facility, and the full five digits a delivery area [pub28]. The optional +4 narrows further to a block face or building. Crucially, ZIP prefixes are geographically consistent — 787 is central Texas, 100 is Manhattan — so an address whose city, state and ZIP disagree fails validation instantly. We cover the system in depth in what is a ZIP code.

Worked examples

As people write itStandardized form
4821 Maple Avenue, Apt. 3B, Austin, Texas 787014821 MAPLE AVE APT 3B / AUSTIN TX 78701
100 north Main Street Suite 200, Columbus OH100 N MAIN ST STE 200 / COLUMBUS OH 43215
752 W. 8th Ave #12, Dallas, TX752 W 8TH AVE UNIT 12 / DALLAS TX 75208
From casual writing to USPS standardized form.

Note what standardization did: spelled-out words became canonical abbreviations, punctuation disappeared, '#' became a designator, and every last line gained a correct ZIP. If your form or fixture data round-trips through a validation API unchanged, it was already well-formed.

Generating structurally correct test addresses

For developers, the payoff of understanding the format is better fixtures: addresses that pass real validators without pointing at real homes. The random address generator applies the rules above — real city/state pairs, state-consistent ZIP prefixes, randomized street and number — and the state pages and city pages pin results to a specific place when your test needs, say, a Texas address. For a full profile around the address (name, 555-range phone, email), use the complete identity generator.

The bottom line

A US address is a small, strict format: delivery line plus last line, canonical abbreviations, and a ZIP that must agree with its city and state. Learn the grammar once and you can design better address forms, debug validation failures faster, and recognize immediately why good generated test addresses look the way they do.

References & sources

  1. Publication 28 — Postal Addressing StandardsUnited States Postal Service
  2. USPS facts — size and scopeUnited States Postal Service
  3. ZIP CodeWikipedia

Frequently asked questions

What goes in address line 1 vs address line 2?+

Line 1 is the delivery line: house number, street name and suffix — 4821 MAPLE AVE. Line 2, when used, carries the secondary unit: apartment, suite or unit number — APT 3B. USPS actually prefers the unit on the same line as the street when it fits; a separate line 2 is a web-form convention, not a postal requirement.

What is the difference between ZIP and ZIP+4?+

The 5-digit ZIP code identifies a delivery area — a set of routes around a post office. ZIP+4 appends four digits that narrow it to a specific block face, building or high-volume recipient. The +4 is optional for senders; sorting equipment derives it automatically from a correct street address.

Do US addresses need to be in uppercase?+

Mail in any casing gets delivered, but the USPS standardized format is all uppercase with no punctuation — 4821 MAPLE AVE STE 200 — because that is what optical character recognition equipment reads most reliably. Address validation services normalize to this form, which is why your checkout sometimes rewrites what you typed.

How do I get a realistic US address for testing?+

Use a generator that keeps the parts consistent: a real city and state, a ZIP whose prefix is valid for that state, and a randomized street and house number so the address resolves to no real residence. Structurally valid but fictional is the safe combination for demos, fixtures and screenshots.

We use cookies for analytics and ads to keep this generator free. See our Privacy Policy.