FIPS code 48113 is Dallas County, Texas. With a population of 2,604,053 (2022 ACS estimate), it ranks #2 in Texas and #9 nationally. Dallas County is part of the Dallas-Fort Worth-Arlington, TX. The state FIPS code for Texas is 48. This code is used in Census Bureau, BLS, EPA, HUD, and USDA federal datasets to identify this county.
County FIPS
48113
Population
2,604,053
2022 ACS · #9 nationally
Density
2,988.8/mi²
people per sq mile
Land Area
871
sq miles
Urban/Rural
Metro — 1M+ population
RUCC 1
How This FIPS Code Works
The 5-digit FIPS code 48113 is formed by combining the 2-digit state identifier 48 (Texas) with the 3-digit county identifier 113. Together they uniquely identify Dallas County in every US federal dataset. No two counties share the same 5-digit FIPS code.
Census ACS Data for FIPS 48113
From the 2022 ACS 5-year estimates — the same values you'd retrieve by querying the Census API with county FIPS 48113.
Median Household Income
$70,732
ACS B19013_001E
Poverty Rate
14.0%
ACS B17001 (below poverty level)
Median Age
33.8
ACS B01002_001E
Metropolitan Area
Adjacent Counties (6)
Counties that share a border with Dallas County. Useful for regional analysis — these are the geographies you'd typically include when studying labor markets, commuting zones, or environmental spillovers around FIPS 48113.
Federal Datasets Using Code 48113
FIPS code 48113 appears as the county identifier in the following federal datasets. Analysts joining data across these sources use this code as the common geographic key.
Using FIPS Code 48113 in Code
Common patterns for querying federal datasets by this county's FIPS code. The leading zeros are significant — always treat FIPS codes as strings, not integers.
import requests
url = "https://api.census.gov/data/2022/acs/acs5"
params = {
"get": "NAME,B19013_001E,B01003_001E",
"for": "county:113",
"in": "state:48",
"key": "YOUR_CENSUS_API_KEY",
}
r = requests.get(url, params=params)
data = r.json() # [[header...], [Dallas County, Texas, income, pop, ...]
-- 5-digit combined FIPS (state + county)
SELECT * FROM your_table WHERE county_fips = '48113';
-- Some datasets store state and county separately
SELECT * FROM your_table
WHERE state_fips = '48'
AND county_fips = '113';
-- ⚠ Never cast to integer — leading zeros are lost:
-- county_fips = 48113 is WRONG for this county
library(tidycensus)
get_acs(
geography = "county",
variables = c(income = "B19013_001E", pop = "B01003_001E"),
state = "48",
county = "113",
year = 2022
)
ZIP Codes in Dallas County
ZIP codes do not align perfectly with county boundaries — a single ZIP code can span multiple counties, and a county can contain parts of many ZIP codes. The ratios below (from the Census 2020 ZCTA relationship file) show the land area share of each ZCTA that falls within Dallas County. Why FIPS ≠ ZIP →
| ZIP Code | % in county |
|---|---|
| 75233 | 100.0% |
| 75006 | 100.0% |
| 75227 | 100.0% |
| 75228 | 100.0% |
| 75229 | 100.0% |
| 75230 | 100.0% |
| 75231 | 100.0% |
| 75232 | 100.0% |
| 75001 | 100.0% |
| 75234 | 100.0% |
| 75235 | 100.0% |
| 75236 | 100.0% |
| 75237 | 100.0% |
| 75238 | 100.0% |
| 75240 | 100.0% |
| 75241 | 100.0% |
| 75243 | 100.0% |
| 75244 | 100.0% |
| 75246 | 100.0% |
| 75247 | 100.0% |
| 75249 | 100.0% |
| 75251 | 100.0% |
| 75253 | 100.0% |
| 75254 | 100.0% |
| 75270 | 100.0% |
| 75390 | 100.0% |
| 75038 | 100.0% |
| 75039 | 100.0% |
| 75040 | 100.0% |
| 75041 | 100.0% |
Showing top 30 of 95 ZIP codes by residential address share.