Skip to content
vic

LucyBot-Inc/api-spec-converter

Convert API descriptions between popular formats such as OpenAPI(fka Swagger), RAML, API Blueprint, WADL, etc.

LucyBot-Inc/api-spec-converter.json
{
"createdAt": "2015-05-05T18:30:05Z",
"defaultBranch": "master",
"description": "Convert API descriptions between popular formats such as OpenAPI(fka Swagger), RAML, API Blueprint, WADL, etc.",
"fullName": "LucyBot-Inc/api-spec-converter",
"homepage": "https://lucybot-inc.github.io/api-spec-converter/",
"language": "JavaScript",
"name": "api-spec-converter",
"pushedAt": "2024-04-22T21:36:11Z",
"stargazersCount": 1162,
"topics": [],
"updatedAt": "2025-11-25T19:03:05Z",
"url": "https://github.com/LucyBot-Inc/api-spec-converter"
}

This project is looking for a new maintainer! Let us know if you’re interested in taking it over.

[![Share on Twitter][twitter-image]][twitter-link]

[![Chat on gitter][gitter-image]][gitter-link] [![NPM version][npm-image]][npm-link] [![Build status][travis-image]][travis-link]

[![Dependency status][deps-image]][deps-link] [![devDependency status][devdeps-image]][devdeps-link]

Convert between API description formats such as Swagger and RAML

Currently only supports conversion to OpenAPI(fka Swagger) 2.0 format, and from OpenAPI 2.0 to OpenAPI 3.0.x

You can also use the online version at https://lucybot-inc.github.io/api-spec-converter/.

Problems? See issue #132

Terminal window
npm install -g api-spec-converter
Terminal window
npm install --save api-spec-converter
Terminal window
$ api-spec-converter -h
Usage: api-spec-converter [options] <URL|filename>
Convert API descriptions between popular formats.
Supported formats:
* swagger_1
* swagger_2
* openapi_3
* api_blueprint
* io_docs
* google
* raml
* wadl
Options:
-h, --help output usage information
-V, --version output the version number
-f, --from <format> Specifies format to convert
-t, --to <format> Specifies output format
-s, --syntax [syntax] Specifies output data syntax: json or yaml. Defaults to json
-o, --order [sortOrder] Specifies top fields ordering: openapi or alpha. Defaults to openapi
-c, --check Check if result is valid spec
-d, --dummy Fill missing required fields with dummy data

Example:

Terminal window
$ api-spec-converter --from=swagger_1 --to=swagger_2 --syntax=yaml --order=alpha https://raw.githubusercontent.com/LucyBot-Inc/api-spec-converter/master/test/input/swagger_1/petstore/pet.json > swagger.json
  • from - source format (see formats below)
  • to - desired format (see formats below)
  • source - Filename, URL, or JS object for the source
var Converter = require('api-spec-converter');
Converter.convert({
from: 'swagger_1',
to: 'swagger_2',
source: 'https://api.gettyimages.com/swagger/api-docs',
}, function(err, converted) {
console.log(converted.stringify());
// For yaml and/or OpenApi field order output replace above line
// with an options object like below
// var options = {syntax: 'yaml', order: 'openapi'}
// console.log(converted.stringify(options));
})

This library has full support for both callback and promises. All async functions return promises but also will execute callback if provided.

var Converter = require('api-spec-converter');
Converter.convert({
from: 'swagger_1',
to: 'swagger_2',
source: 'https://api.gettyimages.com/swagger/api-docs',
})
.then(function(converted) {
console.log(converted.stringify());
});
var Converter = require('api-spec-converter');
Converter.convert({
from: 'swagger_1',
to: 'swagger_2',
source: 'https://api.gettyimages.com/swagger/api-docs',
})
.then(function(converted) {
// [Optional] Fill missing fields with dummy values
converted.fillMissing();
// [Optional] Validate converted spec
return converted.validate()
.then(function (result) {
if (result.errors)
return console.error(JSON.stringify(errors, null, 2));
if (result.warnings)
return console.error(JSON.stringify(warnings, null, 2));
fs.writeFileSync('swagger2.json', converted.stringify());
});
});
<script unsrc="node_modules/api-spec-converter/dist/api-spec-converter.js"></script>
APISpecConverter.convert(...)
from:swagger_1swagger_2openapi_3io_docsapi_blueprintgoogleramlwadl
to swagger_1n/a
to swagger_2:white_check_mark:n/a:white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark:
to openapi_3:eight_spoked_asterisk::white_check_mark:n/a:eight_spoked_asterisk::eight_spoked_asterisk::eight_spoked_asterisk::eight_spoked_asterisk::eight_spoked_asterisk:
to io_docsn/a
to api_blueprintn/a
to googlen/a
to ramln/a
to wadln/a
  • :white_check_mark: - direct conversion
  • :eight_spoked_asterisk: - conversion via swagger_2

Contributions are welcome and encouraged.

Please add a test case if you’re adding features or fixing bugs. To run the tests:

Terminal window
npm test

In case you need to override the expected outputs, due to a justified and verified change, run this:

Terminal window
WRITE_GOLDEN=true npm test
npm run browserify
git commit -a -m "Build browser distribution"
npm version minor # or major/patch
npm publish
git push --follow-tags

[twitter-image] !: https://img.shields.io/twitter/url/http/lucybot.github.io/api-spec-converter.svg?style=social [twitter-link] !: https://twitter.com/intent/tweet?text=Convert+between+API+description+formats+such+as+Swagger+and+RAML:&url=http%3A%2F%2Flucybot.github.io%2Fapi-spec-converter [gitter-image] !: https://img.shields.io/gitter/room/lucybot/api-spec-converter.svg [gitter-link] !: https://gitter.im/lucybot/api-spec-converter [npm-image] !: https://img.shields.io/npm/v/api-spec-converter.svg [npm-link] !: https://npmjs.org/package/api-spec-converter [travis-image] !: https://img.shields.io/travis/LucyBot-Inc/api-spec-converter.svg [travis-link] !: https://travis-ci.org/LucyBot-Inc/api-spec-converter [deps-image] !: https://img.shields.io/david/lucybot/api-spec-converter.svg [deps-link] !: https://david-dm.org/lucybot/api-spec-converter [devdeps-image] !: https://img.shields.io/david/dev/lucybot/api-spec-converter.svg [devdeps-link] !: https://david-dm.org/lucybot/api-spec-converter#info=devDependencies