Zero-dependency Clojure 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 licence CC BY 4.0, code MIT.
;; deps.edn
{:deps {net.clojars.realdentalcosts/realdentalcosts-api {:mvn/version "0.1.3"}
org.clojure/data.json {:mvn/version "2.5.0"}}} ; optional, for parsed maps
(require '[realdentalcosts.api :as rdc])
(let [p (rdc/procedure "root-canal")]
[(get-in p [:national :avg_usd]) (:avg_usd (rdc/state-row p "TX")) (get-in p [:provenance :confidence])])
(get-in (rdc/medicaid "D3330") [:national :paid_per_line_wavg])
(get-in (rdc/state "CA") [:medicaid :pct_dentists_accepting])
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.
Can you improve this documentation?Edit on Codeberg
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |