Quickstart

This guide will help you get started with the Wallet App API. We'll cover how to make your first API token and how to make your first API request.

Choose your language

For all the examples in this guide, we will use the cURL command line tool. How ever we will also include examples for the following languages: JavaScript, Python and PHP. You can choose your preferred client from the tabs below.

Creating your first API token

Once you are all settled with your organization and brands ready to go we can start with requesting an API token. This token will be used to authenticate your requests to the API. You can also create an API token in your dashboard under: Advanced » API tokens.

GET
/oauth/token
curl -X POST https://api.walletapp.co/oauth/token 
   -H "Content-Type: application/json"
   -H "Accept: application/json"
   -d "{
      'email': '<your_email>', 
      'password': '<your_password>', 
      'permissions': [
        '<abilities>'
      ]
    }"  

What's next?

Great, you're all set up and ready to go. Here are some next steps: