As soon as you sign up for a trial/paid subscription, we create for you your first testnet user and a first MATIC wallet in the sandbox environment. which contains the following digital assets:
1 MATIC Token
100 Quantum Test Tokens (ERC20)
1 NFT
Upon activation, these assets are automatically deposited into your wallet, allowing immediate testing of our API endpoints. You can instantly explore functionalities such as wallet creation, message signing, token or NFT transfers, and the creation of signing methods for new users.
👍
Since all wallets are secure, when we create your first user we also created his first signing method. It is a PIN signing method. That PIN is then used to secure his first wallet.
123456 is the default PIN for your user that is used to access your wallet.
Authentication
📘
Learn more on how to .
How to access your assets
Follow this short API tutorial which takes you through all the basic API calls required to access your funds:
1. Retrieve your userId and signingMethodId
In this first API call, we will retrieve all users. A user can have multiple wallets linked to them. As explained at the start, the MATIC wallet, which is created automatically with the assets is also linked to a user. When you call this endpoint it will only return one user, which is your user.
Firstly, we want to retrieve the userId, which is the unique ID of your user.
Secondly, we want to retrieve the signingMethodId, which is used to access the wallets linked to the user.
📘
Call the following endpoint to retrieve all users:
HTTP
GET /api/users
Parameter
Param Type
Description
Data Type
Value
includeSigningMethods
Query
Flag that indicates to show the signing method details of the users or not.
Boolean
true
Response Body:
📘
Save the following params for later use:
result.id which is the userId
result.signingMethods.id which is the signingMethodId