JavaScript
const options = {method: 'GET'}; fetch('https://gp-auth-module.prod.gnosispay.com/cards/{cardId}/details', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "pan": "<string>", "cvv": "<string>", "expirationDate": "<string>" }
Retrieves sensitive card details (full card number, CVV, expiration). Sandbox only. The card must belong to the authenticated user’s cardholder.
Card details retrieved successfully