For reference: the list of state codes used in our API, under the format:
  <code>:[<name>,<details link>]
« Back to API documentation


const STATE_MAP = {
    'AL': ['Alabama', 'https://www.alabamainteractive.org/ador_vic/'],
    'AK': ['Alaska', 'http://doa.alaska.gov/dmv/forms/pdfs/851.pdf'],
    'AZ': ['Arizona', 'https://azmvdnow.gov/home'],
    'AR': ['Arkansas', 'https://www.dfa.arkansas.gov/office/motor-vehicle/'],
    'CA': ['California', 'https://www.dmv.ca.gov/portal/?1dmy&urile=wcm%3Apath%3A%2Fdmv_content_en%2Fdmv%2Fforms%2Finf%2Finf70'],
    'CO': ['Colorado', 'https://dmv.colorado.gov/vehicle-record-searches'],
    'CT': ['Connecticut', 'https://portal.ct.gov/dmv/vehicle-services/vehicle-title-service?language=en_US'],
    'DE': ['Delaware', 'https://www.dmv.de.gov/VehicleServices/index.shtml'],
    'DC': ['District of Columbia', 'https://dmv.dc.gov/'],
    'FL': ['Florida', 'https://www.flhsmv.gov/pdf/forms/90510.pdf'],
    'GA': ['Georgia', 'https://dor.georgia.gov/documents/form-mv-20-request-motor-vehicle-data'],
    'HI': ['Hawaii', 'https://www.vrl.hawaiicounty.gov/'],
    'ID': ['Idaho', 'https://itd.idaho.gov/wp-content/uploads/2016/06/3374.pdf'],
    'IL': ['Illinois', 'https://www.ilsos.gov/publications/pdf_publications/vsd375.pdf'],
    'IN': ['Indiana', 'https://www.in.gov/bmv/titles/title-forms/'],
    'IA': ['Iowa', 'https://iowadot.gov/mvd/vehicleregistration/records'],
    'KS': ['Kansas', 'https://pay.payitgov.com/ikan-request-to-access-vehicle-records'],
    'KY': ['Kentucky', 'https://transportation.ky.gov/Organizational-Resources/Forms/TC%2096-16g.pdf'],
    'LA': ['Louisiana', 'https://www.expresslane.org/'],
    'ME': ['Maine', 'https://www.maine.gov/sos/online_services/index.html'],
    'MH': ['Marshall Islands', 'http://www.dmv.ri.gov/licenses/'],
    'MD': ['Maryland', 'https://mva.maryland.gov/Documents/DR-057.pdf'],
    'MA': ['Massachusetts', 'https://www.mass.gov/how-to/request-a-title-history-search'],
    'MI': ['Michigan', 'https://www.michigan.gov/sos'],
    'MN': ['Minnesota', 'https://dps.mn.gov/divisions/dvs/forms-documents/Pages/records-forms.aspx'],
    'MS': ['Mississippi', 'https://www.dor.ms.gov/sites/default/files/Tags%20%26%20Titles/77969208.pdf'],
    'MO': ['Missouri', 'http://dor.mo.gov/forms/4681.pdf'],
    'MT': ['Montana', 'https://mt.vitu.com/vehicle'],
    'NE': ['Nebraska', 'http://www.dmv.state.ne.us/dvr/vehrecreq.html'],
    'NV': ['Nevada', 'http://www.dmvnv.com/records.htm'],
    'NH': ['New Hampshire', 'http://www.nh.gov/safety/divisions/dmv/forms/dsmv505.pdf'],
    'NJ': ['New Jersey', 'https://www.nj.gov/mvc/vehicles/certitle.htm'],
    'NM': ['New Mexico', 'https://www.mvd.newmexico.gov/wp-content/uploads/2023/03/MVD11260-Confidential-Records-Release-Form.pdf'],
    'NY': ['New York', 'https://dmv.ny.gov/records/get-a-vehicle-registration-or-title-record-abstract'],
    'NC': ['North Carolina', 'https://www.ncdot.gov/dmv/offices-services/records-reports/Pages/driving-records.aspx'],
    'ND': ['North Dakota', 'http://www.dot.nd.gov/forms/sfn51269.pdf'],
    'MP': ['Northern Mariana Islands', 'http://en.wikipedia.org/wiki/Northern_Mariana_Islands_Department_of_Public_Safety_Bureau_of_Motor_Vehicles'],
    'OH': ['Ohio', 'http://publicsafety.ohio.gov/links/bmv1173.pdf'],
    'OK': ['Oklahoma', 'https://pay.apps.ok.gov/dps/mvr/app/index.php'],
    'OR': ['Oregon', 'https://www.oregon.gov/ODOT/DMV/Pages/Records/index.aspx'],
    'PW': ['Palau', 'https://www.palaugov.pw/'],
    'PA': ['Pennsylvania', 'https://www.pa.gov/agencies/dmv.html'],
    'RR': ['Puerto Rico', 'http://www.secstates.com/PR_DMV_Puerto_Rico_Department_of_Motor_Vehicles/'],
    'RI': ['Rhode Island', 'http://www.dmv.ri.gov/registrations/titles/index.php'],
    'SC': ['South Carolina', 'https://www.scdmvonline.com/-/media/Forms/5027-A.ashx'],
    'SD': ['South Dakota', 'https://dor.sd.gov/individuals/motor-vehicle'],
    'TN': ['Tennessee', 'https://www.tn.gov/content/dam/tn/revenue/documents/forms/titlereg/f1313801Fill-in.pdf'],
    'TX': ['Texas', 'http://www.txdmv.gov/motorists/buying-or-selling-a-vehicle/get-a-copy-of-your-title'],
    'UT': ['Utah', 'http://www.dmv.utah.gov'],
    'VT': ['Vermont', 'https://dmv.vermont.gov/document/dmv-record-request'],
    'VI': ['Virgin Island', 'http://www.secstates.com/VI_DMV_Virgin_Islands_Department_of_Motor_Vehicles/'],
    'VA': ['Virginia', 'https://www.dmv.virginia.gov/'],
    'WA': ['Washington', 'http://www.dol.wa.gov/forms/224003.pdf'],
    'WV': ['West Virginia', 'https://transportation.wv.gov/dmv/Forms/Pages/default.aspx'],
    'WI': ['Wisconsin', 'https://wisconsindot.gov/Documents/formdocs/mv2896.pdf'],
    'WY': ['Wyoming', 'https://www.dot.state.wy.us/home/titles_plates_registration/title_search.html'],
};

export default STATE_MAP;