A parcel number is the identifier a county assessor assigns to each piece of land on the tax roll so that it can be valued, taxed and drawn on the assessor's maps. APN stands for Assessor's Parcel Number; depending on where you are, the same thing is called a parcel ID, PIN (parcel identification number), tax ID, tax map number, account number, folio number, schedule number, or block and lot. Each county sets its own format, so a parcel number is only guaranteed to be unique inside the county that issued it. That is why a complete identifier pairs the number with its state and county, and why the fastest way to find one is the county assessor's website, the tax bill, or a lookup tool that searches by address.
How to find a parcel number
-
Check the property tax bill. The parcel number is printed on every tax bill and on most assessment notices, usually near the top, labeled with whatever the county calls it. This is the cleanest source because it is exactly the string the assessor uses.
-
Look at the deed or closing documents. Many deeds reference the parcel number, often on the first page under a heading like "Tax Parcel No." or "APN." Be aware that the legal description, not the parcel number, is what the deed legally conveys; the number is a convenience reference and is occasionally stale or omitted.
-
Search the county assessor's site by address. Nearly every county has a property search. Enter the street address and the result page will show the parcel number along with the owner and assessment details. Counties that assess at the town level (much of New England) run the search at the town.
-
Click the parcel on the county GIS map. Most counties publish a web map where each parcel polygon opens a popup with the parcel number. This is the way to go when you have a location but no usable address, such as vacant land or a lot behind another lot.
-
Ask the title company or lender. Anyone who has closed a loan on the property has the parcel number in the file.
-
Use a national lookup. Searching an address on PropRaven's parcel search opens the record with the county-issued parcel number and PropRaven's own canonical identifier, described below. This is the practical route when the properties you care about sit in more than one county.
What the number encodes
Formats vary by county, and the structure is often meaningful locally. Many California counties use a book-page-parcel scheme, so a number like 123-456-789 points to a page in a map book and a parcel drawn on it. Cook County, Illinois, uses a 14-digit PIN that encodes the area, sub-area, block and parcel. New York City keys everything to borough, block and lot. Some Florida counties call it a folio number. Counties in survey-based states may derive numbers from section, township and range. Many prefixes carry a tax district or municipality code.
Dashes, dots, spaces and leading zeros are part of the county's format but are treated inconsistently by different systems. The same parcel can appear as 123-456-789 on the tax bill, 123456789 in the GIS layer, and 123 456 789 in an old deed, and a spreadsheet may silently drop the leading zero from 0123456789.
Numbers also change. When a parcel is split into two or several are combined, the old number is retired and new ones are issued. Older documents will carry the retired number, and a search for it may return nothing or a note that it was superseded.
What the record actually contains
Once you have the parcel number, it unlocks the record the county keeps under it. What is in that record depends on the county, but the usual families are:
- Identity: the parcel number, the legal description, lot size, and zoning and land-use codes where the county publishes them.
- Situs address: the property's own street address, which may be blank for vacant or landlocked parcels.
- Owner and mailing address: the owner name as recorded and the address the tax bill goes to.
- Assessment: total, land and improvement assessed values by tax year, exemptions, and the taxable value.
- Characteristics: property type, year built, building area, unit, bedroom and bathroom counts.
- Transfers: the last sale date and price where the state discloses it, and often a pointer to the deed's book and page.
- Geometry: the parcel polygon, where the county's GIS office publishes boundaries; some counties publish a centroid only.
Building permits, deed history and hazard data usually sit in other departments or other agencies and are not part of the assessor record itself, even though they are keyed to the same parcel.
Common pitfalls
- Formatting is the number one join failure. Normalize before matching: strip punctuation, upper-case letters, and preserve leading zeros by treating the number as text, never as an integer.
- The same string can exist in two counties. In New England, where towns assess, a map-block-lot number repeats from one town to the next. Always carry the state and county alongside the number.
- One property, many parcels; one parcel, many addresses. A campus or apartment complex may be several parcels under one owner. A single parcel may have several situs addresses, or none.
- Condos. In most counties every condo unit is its own parcel with its own number; in some, the whole building is one parcel and units are tracked separately.
- A parcel number is not a legal description. For a boundary or title question, the deed's legal description controls.
- Retired numbers. A parcel number from a document more than a few years old may have been superseded by a split or combination.
Where PropRaven fits
PropRaven stores the county-issued parcel number verbatim as parcel_id and keeps a normalized form (digits stripped of punctuation and upper-cased) for joining, so a number written three different ways still resolves to one record. Because a parcel number is only unique within its county, PropRaven's canonical identifier prefixes it with the state and county FIPS codes: state_fips:county_fips:parcel_id, for example 37:183:0012345 for a parcel in Wake County, North Carolina. Every record also carries a stable PropRaven ID that survives county renumbering, which matters if you are storing identifiers in your own systems.
You can search by address, owner or city in parcel search and read the parcel number off the record. From code, GET /api/v1/parcels/{id} on the REST API accepts the canonical identifier, and the parcel_lookup tool on the hosted MCP server accepts a canonical identifier, a street address, or a raw APN and falls back to search when the APN alone is ambiguous. The Free plan covers 1,000 lookups a month with no card. The field-by-field definitions, including apn and apn_normalized, are in the data dictionary.
For one property, the county's own search is free and definitive, and the tax bill is better still. The parcel number becomes hard only when you are matching records across counties whose formats disagree, and that is the part a normalized national dataset is built to absorb.