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
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{
"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"
}
]
}Three endpoints. Complete EDI integration.
Read, Write, and Validate — everything you need to move EDI documents in and out of modern systems.
Read API
X12 & EDIFACT → JSON
Translate raw EDI into structured, developer-friendly JSON. Supports all major X12 transaction sets and EDIFACT message types.
Write API
JSON → X12 & EDIFACT
Generate standards-compliant EDI documents from your JSON data. No EDI expertise required.
Validate API
Validate without translating
Check EDI documents for compliance errors with detailed error reporting. Pass/fail results with actionable diagnostics.
How it works
Three steps from raw EDI to production JSON.
Send EDI via API
POST raw X12 or EDIFACT content to the Read endpoint with your API key. No file uploads, no SFTP dance.
NeutronEDI translates
Sub-second parsing and translation against the relevant X12 or EDIFACT spec. Validation errors returned inline if you want them.
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.
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{
"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.