EDI as a Service — API-first

Translate EDI to JSON. Validate. Integrate.

NeutronEDI is a REST API that translates X12 and EDIFACT documents into clean JSON, writes JSON back to EDI, and validates EDI documents against standard specifications — all without the overhead of legacy EDI platforms.

No credit card required · 500 free API calls / month

POST /api/v1/read/x12
curl -X POST https://api.neutronedi.com/api/v1/read/x12 \
  -H "X-API-Key: nedi_live_..." \
  -H "Content-Type: application/edi-x12" \
  --data-binary @purchase-order.x12
→ 200 OK
{
  "interchange": {
    "sender": "NEUTRONEDI",
    "receiver": "TRADINGPARTNER",
    "control": "000000001"
  },
  "transactions": [
    {
      "type": "850",
      "name": "Purchase Order",
      "poNumber": "PO-48291",
      "date": "2026-04-12",
      "items": [
        { "sku": "WIDGET-BLUE", "qty": 100, "unitPrice": "12.50" },
        { "sku": "WIDGET-RED",  "qty":  50, "unitPrice": "12.50" }
      ],
      "total": "1875.00"
    }
  ]
}

How it works

Three steps from raw EDI to production JSON.

1

Send EDI via API

POST raw X12 or EDIFACT content to the Read endpoint with your API key. No file uploads, no SFTP dance.

2

NeutronEDI translates

Sub-second parsing and translation against the relevant X12 or EDIFACT spec. Validation errors returned inline if you want them.

3

Receive JSON

Clean, typed JSON ready to drop into your database, queue, or downstream service. The same shape every time.

Why NeutronEDI

Built for developers tired of legacy EDI platforms.

API-first

No clunky portals, no file uploads, no proprietary GUIs. A clean REST API your services can call directly.

Both standards

X12 and EDIFACT in one platform. Stop bolting together separate tools for North American and international trading partners.

Real-time

Sub-second translation and validation. No batch windows, no overnight processing, no waiting for the next queue run.

Developer-friendly

Clean JSON output, comprehensive docs, code examples in every language. Written by engineers, for engineers.

Coming soon

AS2, FTP, and SFTP file transfer · EDI mailboxes · Trading partner management. The next wave of NeutronEDI is built on top of the same clean API you're integrating today.

Trusted by teams modernizing their EDI integrations

NeutronEDI is built by Neutron Development, bringing years of hands-on EDI consulting experience across Gentran, SEEBURGER, Boomi, and Mirth Connect into a modern, API-first platform.

See it in action

A real X12 850 Purchase Order, translated to JSON with one API call.

Read request
curl -X POST https://api.neutronedi.com/api/v1/read/x12 \
  -H "X-API-Key: nedi_live_..." \
  -H "Content-Type: application/edi-x12" \
  --data-binary @purchase-order.x12
Response
{
  "interchange": {
    "sender": "NEUTRONEDI",
    "receiver": "TRADINGPARTNER",
    "control": "000000001"
  },
  "transactions": [
    {
      "type": "850",
      "name": "Purchase Order",
      "poNumber": "PO-48291",
      "date": "2026-04-12",
      "items": [
        { "sku": "WIDGET-BLUE", "qty": 100, "unitPrice": "12.50" },
        { "sku": "WIDGET-RED",  "qty":  50, "unitPrice": "12.50" }
      ],
      "total": "1875.00"
    }
  ]
}

Ready to modernize your EDI integration?

Start with 500 free API calls per month. Upgrade only when you're ready.