realdentalcosts: Client for the Real Dental Costs Open Data API (US dental prices)

[ data, library, mit, web ] [ Propose Tags ] [ Report a vulnerability ]

Typed client for the Real Dental Costs Open Data API (https://realdentalcosts.com/en/api/): US dental procedure cash price ranges by state, state cost indexes and Medicaid paid amounts per CDT code derived from the HHS/CMS T-MSIS provider spending files. Every payload carries a provenance block (basis, confidence, sample size). Data licence CC BY 4.0; see https://realdentalcosts.com/en/methodology/.


[Skip to Readme]

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0
Dependencies aeson (>=2.0 && <2.3), base (>=4.14 && <5), http-conduit (>=2.3 && <2.4), text (>=1.2 && <2.2) [details]
License MIT
Author Real Dental Costs Data and Research Team
Maintainer research@realdentalcosts.com
Uploaded by realdentalcosts at 2026-08-28T15:11:57Z
Category Web, Data
Home page https://realdentalcosts.com/en/api/
Bug tracker https://codeberg.org/tresor2k/realdentalcosts-hs/issues
Source repo head: git clone https://codeberg.org/tresor2k/realdentalcosts-hs.git
Distributions
Downloads 4 total (4 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2026-08-28 [all 1 reports]

Readme for realdentalcosts-0.1.0.0

[back to package description]

realdentalcosts (Haskell)

Typed client for the Real Dental Costs Open Data API: US dental procedure cash price ranges by state, state cost indexes and Medicaid paid amounts per CDT code (HHS/CMS T-MSIS, 2018-2024). Data CC BY 4.0, code MIT.

import RealDentalCosts.Api

main :: IO ()
main = do
  Right p <- getProcedure "root-canal"
  print (avgUsd (procNational p), stateRow "TX" p, provConfidence (procProvenance p))
  Right m <- getMedicaid "D3330"
  print (msPaidPerLine (mdNational m))

Human-readable tables: root canal cost by state, denture cost by state, dental implant cost by state, Medicaid dental coverage by state. Methodology: https://realdentalcosts.com/en/methodology/. Dataset DOI 10.7910/DVN/7F2BZI. Pricing and market research, not medical advice.

Status: source published; Hackage upload pending uploader-group approval.