Developers
Developer API
Build custom solutions and extend the power of Qaio with our robust API.
Powerful, Flexible, and Easy to Use.
Our developer-first API gives you programmatic access to your Qaio data. Automate workflows, build custom integrations, and create unique experiences on top of the Qaio platform.
example.js
const Qaio = require('qaio-sdk');
const qaio = new Qaio({ apiKey: 'YOUR_API_KEY' });
async function createContact() {
try {
const contact = await qaio.contacts.create({
email: 'new.lead@example.com',
firstName: 'John',
lastName: 'Doe',
tags: ['website-lead', 'api-test']
});
console.log('Contact created:', contact);
} catch (error) {
console.error('Error:', error);
}
}
createContact();