Guides
Explanatory and how-to content
API Reference
Technical documentation
Changelog
Release notes
Dashboard
Manage your account
Status
Service status

Software Development Kits (SDKs)

Increase's API can be accessed via SDKs for several popular languages. The SDKs are generated from our OpenAPI 3 specification. The JSON specification may be helpful if you are looking to use a language we haven't implemented yet!

Our APIs are stable but we're just getting started with these SDKs, so some things might change in future versions. If you find them useful or have feedback, please let us know!

Using an SDK can speed up your integration by providing an implementation for pagination, serialization, timeouts, retries, and error handling.

Breaking changes

We always preserve backwards compatibility in the Increase API per our versioning policy. We'll never make a breaking change without explicitly contacting you first to make sure your integration won't be affected.

Our SDKs and OpenAPI specification are pre-1.0 and do not include deprecated fields that we're preserving for backwards compatibility. This means that if you're using a typed language, upgrading your SDK version can sometimes lead to type-checking errors in development. We encourage you to do this from time to time as an easy way to stay up-to-date with API changes.

Our API, however, is always backwards compatible with older versions of the SDKs. If you choose not to upgrade your SDK version, the code won't crash communicating with the API at runtime.

Python

Install our Python SDK with pip. The source is on GitHub. Request parameters, response bodies, and error details are all typed with mypy.

$ pip install increase

Node

Install our Node SDK with npm or yarn. The source is on GitHub. Request parameters, response bodies, and error details are all typed with Typescript.

$ npm install --save increase # or $ yarn add increase

Go

Install our Go SDK with go get. The source is on GitHub.

go get 'github.com/increase/increase-go'

Java

Install our Java SDK with maven or gradle. The source is on GitHub and the dependency is stored on Maven Central. Each request and response object is fully specified as a Java class.

<!-- In your POM file. --> <dependency> <groupId>com.increase.api</groupId> <artifactId>increase-java</artifactId> <version>0.1.0</version> </dependency>

Kotlin

Install our Kotlin SDK with gradle or maven. The source is on GitHub and the dependency is stored on Maven Central. Each request and response object is fully specified as a Kotlin class.

// In your build.gradle file. dependencies { implementation("com.increase.api:increase-kotlin:0.1.0") }

More coming soon!

Ruby is the next SDK we're working on. Let us know if you'd like to be an early adopter or if there's another language we should support.