API Quick Start
This documentation serves as your foundational guide to integrating Wallaby API's solutions seamlessly into your applications.
Getting started with the API
Start building with Wallaby API
This documentation serves as your foundational guide to integrating Wallaby API's solutions seamlessly into your applications. You can find essential insights into building with Wallaby API, an overview of Wallaby API's key concepts and features, quick start guides to speed up your development process, and information on how to securely authenticate your interactions with the API.
Setup the API client
In order to interact with the API directly, you will need to setup the API client. Here's an example of how to do it in TypeScript:
Choose an HTTP client: You can use any HTTP client like fetch (built into modern browsers), axios, request, etc. The choice depends on your preference and the specific needs of your project.
Authentication with the API: You will need an API key to interact with any endpoint. // Check here for more info on getting your API key.
Authenticate your users to get the JWT, which is just a jwt token generated after the user authenticates with your system, and preferably passes some sort of a 2fa method.
The wallby access token is another jwt generated by wallaby after authenticating, check this next section to learn how to use the api to authenticate with wallaby.
This documentation will use axios
for its examples.
Last updated