Software Development Kits
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.
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
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!
Go and Ruby are coming soon. Let us know if you'd like to be an early adopter of those libraries.