Orderful Conversion API

Convert data between EDI X12 and JSON formats.

Operations 1

POST /v3/convert Convert Data Between Formats #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/orderful-conversion-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

orderful-conversion-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Orderful Conversion API
  description: The official Orderful API documentation.
  version: 2.15.0
  contact:
    name: Orderful
    url: https://orderful.com
    email: developers@orderful.com
  termsOfService: https://orderful.com/terms-and-conditions/
servers:
- url: https://api.orderful.com
tags:
- name: Conversion
  description: Convert data between EDI X12 and JSON formats.
paths:
  /v3/convert:
    post:
      operationId: ConversionController_convertData
      summary: Convert Data Between Formats
      description: This endpoint will convert JSON into X12, or X12 into JSON. Set the "Content-Type" header as the format you are sending, and the "Accept" header as the format you would like to receive back.
      tags:
      - Conversion
      parameters:
      - name: orderful-api-key
        in: header
        required: true
        description: Your Orderful API key.
        schema:
          type: string
      - name: Content-Type
        in: header
        required: true
        schema:
          type: string
          enum:
          - application/edi-x12
          - application/json
      - name: Accept
        in: header
        required: true
        schema:
          type: string
          enum:
          - application/edi-x12
          - application/json
      requestBody:
        required: true
        content:
          application/edi-x12:
            schema:
              type: string
              format: blob
          application/json:
            schema:
              type: object
      responses:
        '201':
          description: Data converted successfully.
          content:
            application/json:
              schema:
                type: object
            application/edi-x12:
              schema:
                type: string
components:
  securitySchemes:
    API_KEY:
      type: apiKey
      in: header
      name: orderful-api-key