Skip to main content

State Codes Reference

Full list of valid US state codes for the states field in plan responses: Standard States (2-letter codes): AL, AK, AZ, AR, CA, CO, CT, DE, FL, GA, HI, ID, IL, IN, IA, KS, KY, LA, ME, MD, MA, MI, MN, MS, MO, MT, NE, NV, NH, NJ, NM, NY, NC, ND, OH, OK, OR, PA, RI, SC, SD, TN, TX, UT, VT, VA, WA, WV, WI, WY District & Territories: DC, PR, GU, VI, AS, CNMI Medicare Contractor Subdivisions:
  • NF (Northern California)
  • SF (Southern California)
  • DN (Downstate New York)
  • QN (Queens, New York)
  • UN (Upstate New York)
  • EM (Eastern Missouri)
  • WM (Western Missouri)

Plan Type Reference

Plan TypeDescriptionCoverage
commercialPrivate employer-sponsored insuranceEmployer groups, individuals
medicare_part_aMedicare hospital insuranceInpatient hospital, skilled nursing, hospice
medicare_part_bMedicare medical insuranceOutpatient, physician services, preventive care
medicare_advantageMedicare managed care (Part C)Combined A+B benefits through private insurers
medicaidState-federal public insuranceLow-income individuals and families
exchangeACA marketplace plansIndividual and small group coverage

Medical Code System Reference

SystemDescriptionFormatExample
CPTCurrent Procedural Terminology5-digit numeric or 4-digit + F/T/U19318, 0001F
HCPCS Level 1Same as CPTSame as CPT99213
HCPCS Level 2Non-physician services and supplies1 letter + 4 digitsJ1234, A0425
CPT ModifierProcedure modifiers2-character50, 59, LT
HCPCS ModifierService modifiers2-characterHW, F1
ICD-10-CMDiagnosis codesAlphanumeric, 3-7 charactersE11.9, N62
ICD-10-PCSProcedure codes (inpatient)7-character alphanumericDB26HZZ

Date & Retirement Filters

The policy filter provides two complementary date filters:

effective_date — date range overlap

Returns policies whose effective period overlaps a given window. Uses an EffectiveDateFilter object:
FieldTypeDescription
startdateWindow start (inclusive). Includes active policies with no end date.
enddateWindow end (inclusive). Returns policies effective on or before this date.

retired — active vs. retired

ValueDescription
falseActive policies only (no end date, or end date in the future)
trueRetired policies only (end date in the past)
omittedAll policies (no filtering)
Common patterns:
GoalFilter
Currently active policies"retired": false
Retired (superseded) policies"retired": true
Policies effective on a specific date"effective_date": {"start": "2025-06-15", "end": "2025-06-15"}
Policies effective after a date"effective_date": {"start": "2025-01-01"}
Policies effective before a date"effective_date": {"end": "2025-01-01"}
Note: effective_to_date being null in responses means the policy is currently active; non-null means it was either retired or superseded on that date.