SDK Clients

Supported SDK Clients

We don't publish and host SDK libraries, but the documentation here is created from the Swagger / Open API specification, which has a code generation tool.

You can get started by either:

Note: swagger-codegen can be installed on a mac using homebrew:

brew install swagger-codegen

Open API Specification Documents

The OpenAPI specifications for the Atlas API are located at http://docs.bridgeft.com/openapi We recommend always building code from the latest minor version.

Clicking on the latest version will reveal the full url, which should look something like this:

https://docs.bridgeft.com/openapi/623a0b06cc9604045f56053a

Using Swagger-codegen

This the url to supply to swagger-codegen, like this:

# generates a python SDK library
swagger-codegen generate -i https://docs.bridgeft.com/openapi/623a0b06cc9604045f56053a -l python -o path/to/outputdir

Swagger-codegen supports many languages, including:

  • Python
  • C#
  • Java
  • Ruby
  • Javascript and Typescript
  • Go
  • Php
  • and many more

You can find the full documentation for swagger-codegen on github.