Loading...
Loading...
Learn how to authenticate your API requests and manage API keys securely.
Simple bearer token authentication. Best for server-to-server integrations.
RecommendedToken-based auth for apps acting on behalf of users. Coming soon.
Coming SoonShort-lived tokens for enhanced security in sensitive operations.
Business Plan// Using API Key
const response = await fetch('https://api.signquick.app/v1/documents', {
headers: {
'Authorization': 'Bearer sq__your_api_key_here',
'Content-Type': 'application/json'
}
});
const data = await response.json();Use test keys during development. No real documents are created and no charges apply.
Use live keys in production. All operations create real documents and count toward your quota.
Get your API key from the dashboard and start building in minutes.