RESTful API with comprehensive SDKs for seamless integration
Get started with the Queeble API in minutes
npm install @queeble/sdkpip install queeblecomposer require queeble/sdkgem install queebleconst Queeble = require('@queeble/sdk');
const client = new Queeble({
apiKey: 'your_api_key'
});
// Send a message
const response = await client.messages.send({
to: '+1234567890',
type: 'text',
text: {
body: 'Hello from Queeble!'
}
});
console.log(response.messageId);Core endpoints for interacting with the Queeble platform
All API requests require authentication using your API key. Include your API key in the Authorization header of every request.
Authorization: Bearer YOUR_API_KEYAPI rate limits vary by plan. Standard plans allow 100 requests per minute, while enterprise plans have higher or unlimited limits.