Skip to main content

Get your library



Voucherify developers constantly improve Voucherify’s RESTful API, which you can use to integrate with your systems. The SDKs are open source and are mostly developed with the help of the client and partner community. Contribute and provide feedback by submitting a pull request on the GitHub repository.

JS

JS is the latest JavaScript and node.js SDK.
Shell
npm install @voucherify/sdk
voucherifyio/voucherify-js-sdk

Java

Grab the SDK via Maven:
XML
<dependency>
<groupId>io.voucherify.client</groupId>
<artifactId>voucherify-java-sdk</artifactId>
<version>17.0.2</version>
<scope>compile</scope>
</dependency>
or via Gradle:
  repositories {
    mavenCentral()
  }

  dependencies {
     implementation "io.voucherify.client:voucherify-java-sdk:17.0.2"
  }
voucherifyio/voucherify-java-sdk

Ruby

Shell
gem install voucherify
voucherifyio/voucherify-ruby-sdk

PHP

Include Voucherify PHP SDK (rspective/voucherify) in your PHP composer.json file as required module i.e:
php
"require": {
    "rspective/voucherify": "dev-master"
}
You can check available versions at Packagist. voucherifyio/voucherify-php-sdk

Python

Shell
pip install voucherify
voucherifyio/voucherify-python-sdk

.NET

Client-side library

Shell
Install-Package Voucherify.Client

Server-side library

Shell
Install-Package Voucherify
Or simply use libraries from the lib/{target-framework} folder. voucherifyio/voucherify-dotNET-sdk

Node.js

Node.js is a deprecated version. Go to JS to use the latest Node.js SDK.
Shell
npm install voucherify
voucherifyio/voucherify-nodejs-sdk

Voucherify.js

Voucherify.js is a deprecated version. Go to JS to use the latest SDK.
From CDN: http://www.jsdelivr.com/projects/voucherify.js voucherify/voucherify.js

Android

Voucherify developers currently don’t develop this SDK.
Using Gradle:
Groovy
dependencies {
    compile 'pl.rspective.voucherify.android.client:voucherify-android-sdk:0.6.0'
}
Using Maven:
XML
<dependency>
    <groupId>pl.rspective.voucherify.android.client</groupId>
    <artifactId>voucherify-android-sdk</artifactId>
    <version>0.6.0</version>
</dependency>
The SDK requires at least Java 6 or Android 2.3.3 (API 10)
voucherifyio/voucherify-android-sdk

iOS(Swift)

Voucherify developers currently don’t develop this SDK.
Using CocoaPods simply add the following line to your Podfile:
Shell
pod "VoucherifySwiftSdk"
The SDK requires Swift 2.2 and therefore Xcode 7.3
voucherifyio/voucherify-ios-sdk
Last modified on April 8, 2026