Field guide

What Is Address Line 1?

Address Line 1 is the main delivery address line. It normally contains the house number, building number, street name, and street type.

Examples

What usually belongs somewhere else

Apartment, suite, unit, room, floor, department, and building details often belong in Address Line 2 or a separate secondary-address field. Some countries combine these details into one line, so forms should stay flexible.

QA notes

Test long street names, short street names, numeric street names, non-English characters, and records where Address Line 2 is empty. Do not reject valid addresses only because Address Line 1 has a different order from U.S. examples.

Country-aware examples

CountryAddress Line 1 exampleWhy a generic parser can fail
United States1250 Main StHouse number usually appears first
GermanyFriedrichstrasse 82House number commonly follows street
Japan丸の内1丁目2-3Block identifiers and local script do not use a Western street model
Singapore10 Anson RoadUnit information may include a separate #12-05 value

Acceptance criteria for a form

Address Line 1 is a product-interface label, not a universal postal standard. The selected country should determine labels, ordering, and validation.

Round-trip test for a main address line

Use one value that contains a house-number suffix, local punctuation, or non-ASCII text. Submit it through the form, inspect the API payload, reload the saved address, and export it. Compare the exact source string at each boundary rather than comparing only what is visible on screen.

Test valueExpected resultFailure signal
Waldstraße 7aStreet and alphanumeric house number remain intact.The suffix is rejected or ß is replaced irreversibly.
12-14 King StreetThe number range remains part of the line.A parser treats the hyphen as an invalid character.
丸の内1丁目2-3The Japanese source value is stored unchanged.The form demands a Western street name and number.
PO Box 248The delivery service is accepted when the workflow allows it.A street-only rule blocks all non-street addresses.

Parsing Address Line 1 into components can support search or validation, but the original user-entered value should remain available. Parsed components are an interpretation and may not be reversible across every country.