Get verification info for a transaction (public)
GET
/api/v1/verify/{transactionId}PublicPath parameters
- transactionIdstringrequired
Transaction UUID from SMS link
Responses
200Verification info returned
Response follows the unified success / data / meta / error envelope.
404Transaction not found
Response follows the unified success / data / meta / error envelope.
curl https://api-staging.coinbax.com/api/v1/verify/<transactionId>const response = await fetch('https://api-staging.coinbax.com/api/v1/verify/<transactionId>', {
});
const result = await response.json();