EDIBridge / transform

Data transformation API · Early access

Anything in.
Anything out.

One API that turns any business document into any other — X12 EDI, JSON, CSV, XML, flat files. Priced per transform. No minimums, no setup fees, no sales call.

POST /v1/transform?from=x12&to=json 212 ms

In — raw X12 850

ISA*00*...*ZZ*4WALMART*P*>~
GS*PO*4WALMART*SUPPLIER*...~
ST*850*0001~
BEG*00*SA*8473229**20260707~
REF*DP*00093~
DTM*002*20260714~
N1*ST*WALMART DC 6094*UL*0078~
PO1*1*24*EA*7.50**UP*0123456~
CTT*1~
SE*10*0001~

Out — JSON

{
  "po_number": "8473229",
  "order_date": "2026-07-07",
  "ship_by": "2026-07-14",
  "ship_to": { "name": "WALMART DC 6094" },
  "lines": [{
    "upc": "0123456",
    "qty": 24, "unit_price": 7.50
  }]
}

The whole document lifecycle, one meter

Most EDI vendors sell you a mailbox. We sell working data — transformed, validated against the retailer that will actually judge it, and mapped by AI when your format has never been seen before.

POST /v1/transformAny format → any format

X12, JSON, CSV, XML, flat files — in any direction. Structure-aware, not regex-deep: qualifiers, loops, and envelopes survive the trip.

POST /v1/validateRetailer-grade validation

"Will Walmart reject this file?" — answered before you send it. Findings ranked fatal / warning / info against real retailer profiles, not just the base standard.

POST /v1/mapAI field mapping

Point it at headers it has never seen; get a confidence-scored mapping to the right X12 elements, with the reasoning attached. Honest confidence — agents chain on these.

POST /v1/generateCompliant generation

856 ASNs, 810 invoices, 997 acknowledgments generated with correct envelopes and control numbers — the paperwork half of every order cycle.

Agent-native

Built for AI agents, not just developers

  • Published as MCP tools with prices in the tool descriptions, so agents can budget before they call.
  • Pay-per-call with prepaid credits at launch — one key, no subscription required. Native agent payment rails are on the roadmap.
  • Deterministic, machine-readable errors. The caller is a program; we write error messages like it.

One call, a straight answer

$ curl -X POST transform.edibridge.com/v1/validate \
    -H "Authorization: Bearer $KEY" \
    --data-binary @po_850.edi

HTTP/2 200
{ "valid": false,
  "profile_applied": "walmart",
  "findings": [{ "severity": "fatal",
    "segment": "PO1", "code": "MISSING_UP",
    "message": "Line 3 has no UPC qualifier" }] }

Prices on the page, not behind a demo

Launch pricing, published now — early access is open, the meter turns on at launch. Pay for outcomes, not paperwork: a purchase order that fans out into acknowledgment, shipment, and invoice is one order, priced that way.

WhatPrice
/v1/transform $0.05 / document Any format, any direction
/v1/validate 10 free / day $0.25 / file Retailer-profile compliance report
/v1/map $0.75 / call AI mapping with confidence scores
order cycle $0.35 / order 850 → 855 → 856 → 810, priced once
monthly minimums setup fees per-partner charges sales calls lock-in

Doing real monthly volume?

Past a couple hundred documents a month, an EDIBridge plan is the better deal — Self-Managed from $49/mo or fully Managed, with human support, your own SFTP/AS2 endpoints, and QuickBooks sync.

Start at edibridge.com

Just here to transform something?

Grab a credit pack at launch, point your agent — or your curl — at the API, and pay for exactly what you use. The meter is the whole relationship, if that's all you need.

transform.edibridge.com/mcp · transform.edibridge.com/v1 · OpenAPI spec at launch