API

Integrate Cardience into your own applications with our powerful API.

Get Started with Our API

API Documentation

Explore our complete API documentation.

View Docs

Get API Key

Sign up to get your API key.

Get Started

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));