Comprehensive guide to integrating QikCard into your applications. From quick start to advanced implementations.
// Available in your dashboard
const apiKey = 'qk_test_...';
npm install @qikcard/sdk
# or
pip install qikcard
import { QikCard } from '@qikcard/sdk';
const qikcard = new QikCard({
apiKey: 'qk_test_...',
environment: 'test'
});
const event = await qikcard.events.create({
name: 'My First Event',
startDate: '2025-03-15T09:00:00Z',
endDate: '2025-03-15T17:00:00Z'
});
// Create a comprehensive event
const event = await qikcard.events.create({
name: 'Web3 Developer Conference 2025',
description: 'The premier Web3 development conference',
startDate: '2025-03-15T09:00:00Z',
endDate: '2025-03-17T18:00:00Z',
location: {
name: 'San Francisco Convention Center',
address: '747 Howard St, San Francisco, CA 94103',
coordinates: {
lat: 37.7849,
lng: -122.4094
}
},
settings: {
requireRegistration: true,
enableNFTRewards: true,
maxParticipants: 2500,
checkInRequired: true
},
branding: {
primaryColor: '#3B82F6',
logo: 'https://example.com/logo.png'
}
});
console.log('Event created:', event.id);
Join our developer community and get help from our team and other developers building with QikCard.