Access a Users Wallet
Our wallet service allows you to access information about a user's wallet, such as which NFTs they own and how much cryptocurrency they have.
💡
To access a user's info and wallet, they need to first have successfully logged in.
Access users info
curl --request GET \
--url 'https://api.fractal.is/sdk/v1/wallet/info' \
--header 'Authorization: Bearer <CLIENT_TOKEN>' \
--header 'accept: application/json'
Access users Items
Look below for an example of how you can access a users wallet.
curl --request GET \
--url 'https://api.fractal.is/sdk/v1/wallet/items' \
--header 'Authorization: Bearer <CLIENT_TOKEN>' \
--header 'accept: application/json'
Access users tokens
curl --request GET \
--url 'https://api.fractal.is/sdk/v1/wallet/coins' \
--header 'Authorization: Bearer <CLIENT_TOKEN>' \
--header 'accept: application/json'