Loading...
Loading...
Learn how to authenticate your API requests and manage API keys securely.
Simple bearer token authentication. Best for server-to-server integrations.
Recommended// Using your API key
const response = await fetch('https://signquick.app/api/v1/documents', {
headers: {
'Authorization': 'Bearer sq_your_api_key_here',
'Content-Type': 'application/json'
}
});
const data = await response.json();Every key starts with sq_ and is shown once, at creation. Generate and revoke keys at Settings → Developer, then send it as the Authorization: Bearer header. Keep it secret: it grants full access to your account.
Get your API key from the dashboard and start building in minutes.