EDI Parser and Converter for Java

We provide three sets of Java APIs:

  • You can invoke conversion API to convert EDI files to JSON or CSV/Excel. This functionality is identical to our CLI tool; the only difference is that you’re invoking the converter directly from your Java process as opposed to a shell.
  • For 837/835 transactions, you can use our claim/payment API to parse EDI into our Java object model. The object model abstracts away X12 EDI loops, segments, and elements.
  • For all other transactions, you have to use the lower-level segment API. In this case, you need to be familiar with X12 EDI loops and segments.

To get started, follow examples in our GitHub repo.