+1 test data

🇺🇸 United States phone number generator

Generate United States phone number examples for development, QA, input masks and documentation. Results are not live subscriber lines.

Generate an example

International display+12025550123
Do not call or text generated values. Uses North American area codes. Generated examples use the reserved 555-01xx fictional block.

United States format reference

Calling code+1
National pattern(NPA) NXX-XXXX
E.164 example+12025550123
Typical length10 national digits

Convert a United States number to E.164

1. Clean the input

Remove spaces, parentheses and hyphens while preserving the digits and country context.

2. Apply the trunk rule

Keep all 10 national digits and add +1. Do not add a trunk zero.

3. Store one canonical value

Use +12025550123 for machine storage and format it for display at the edge of your application.

United States phone test cases

CaseFixtureExpected test behavior
National display(NPA) NXX-XXXXAccept punctuation, then normalize.
Valid E.164 structure+12025550123Accept for format testing; do not infer reachability.
Invalid length+1202555012Reject before storing or sending to an API.

Manually reviewed country notes

What makes United States phone input different

United States fixtures use the North American Numbering Plan: a three-digit area code, three-digit central-office code and four-digit line number. E.164 keeps all ten national digits after +1; there is no domestic trunk zero to add or remove.

The generated 202-555-01xx examples stay inside the NANPA 555-0100 through 555-0199 block reserved for entertainment and advertising. That makes this page useful for repeatable UI and documentation tests without presenting a subscriber lookup.

Check 1

Require an explicit US region when a national value has no +1 prefix.

Check 2

Keep exactly ten national digits for this fixture contract.

Check 3

Do not use a leading zero as a substitute for missing country context.

Reviewed United States normalization cases

These cases document the fixture contract used by GetPhoneNum. They test parsing and normalization only; they never prove that a subscriber exists.

InputExpected resultReason
(202) 555-0123+12025550123Normalize a punctuated US fixture
+1 202 555 0123+12025550123Normalize an international input
202555012RejectOne national digit short
02025550123RejectThe NANP fixture has no trunk zero
+12025550123Reserved fixtureStructure does not imply an active line

Reviewed by GetPhoneNum Editorial Team · Last reviewed August 11, 2026

Frontend checks

Test empty input, pasted punctuation, a missing country code, one digit too few and one digit too many. Avoid using a single global regex for every country.

Test a JavaScript regex

Production validation

Numbering plans change. Use a maintained numbering library and treat carrier, line type and reachability as separate checks.

Browse calling-code references

Related generators and tools

Continue testing international phone formats

United States phone number FAQ

Are these United States phone numbers real?

They are generated test fixtures, not verified subscriber lines. Even a structurally valid value may coincide with an assigned number unless it comes from an officially reserved fictional range.

What does the +1 calling code mean?

+1 is the international country calling code for United States. In E.164 format it appears after the leading plus sign and before the national number.

Can generated numbers receive calls, SMS or verification codes?

No capability is provided or verified. Do not call, text or use generated values for account verification.

Official numbering reference

Numbering rules can change. Check the North American Numbering Plan Administrator before enforcing production rules.

Need repeatable United States fixtures?

Create up to 100 local fixtures in the browser, download the open dataset, or use the API design reference to define a deterministic contract for automated test suites.