API
Integrate Cardience into your own applications with our powerful API.
Get Started with Our API
Example Code
// Example API call
fetch('https://api.cardience.io/v1/cards', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
}
})
.then(response => response.json())
.then(data => console.log(data));