Retrieve a Card's Details
Fetch a Card
GET
https://spendit.finance/api/cards/:uuid
Path Parameters
uuid*
String
Headers
Authorization*
String
Bearer API_TOKEN
1st scenario; the card is not generated yet
This is a result of the funds not being sent, or detected yet on the blockchain.
You'll a response like this one:
Notice the `status` property that tells you the card is awaiting payment.
2nd scenario; the card is ready!
This is a result of the funds being detected and confirmed on the blockchain; your card is ready to be used!
You'll a response like this one:
Notice the `status` property that tells you the card is generated.
Card's Credentials
As you can see, you get the card's details directly in the JSON payload, so be careful not to leak this information as any intruder may use your card.
You'll also notice that with the card's details, you get a `url` and a `url_password` properties. Those will help you log in to the official Visa website (https://www.yourrewardcard.com) and check your card's balance and transactions in real-time.
Be sure not to share the URL and the URL password with anyone as they'll be able to access your card's credentials.
Last updated