Developer Resources
Get started in minutes with clear guides and comprehensive documentation.
Quick Start Guide
1
Get API Key
Sign up and generate your API key
2
Install SDK
Choose your language and install the SDK
3
Test Authentication
Use our sandbox to test endpoints
4
Deploy
Go live with your application
Choose Your SDK
Installation command:
npm install @SureID/php
Quick example:
const SureID = require('@SureID/php');
const client = new SureID({
apiKey: 'your_api_key'
});
// Register user
await client.auth.register({
email: 'user@example.com',
password: 'secure_password'
});