Acctwave
Loading...
Loading...
Integrate Acctwave's powerful SMM services directly into your applications. Automate orders, check status, and manage your account programmatically.
The Acctwave API is built on REST principles. We enforce HTTPS in every request to improve data security, integrity, and privacy. The API does not support HTTP requests.
All responses are returned in JSON format.
Optimized for speed with 99.9% uptime guarantee.
Bank-grade encryption and secure token authentication.
Authenticate your API requests by including your API key in the Authorization header of every request. You can manage your API keys in the Dashboard Settings.
/api/v1/orderPlace a new order for a service.
| Parameter | Type | Description |
|---|---|---|
| service | integer | Service ID (see Services list) |
| link | string | Link to the target (post, profile, etc.) |
| quantity | integer | Amount to order |
/api/v1/statusCheck the status of an existing order.
| Parameter | Type | Description |
|---|---|---|
| order | integer | Order ID returned from order creation |
const axios = require('axios');
async function placeOrder() {
try {
const response = await axios.post('https://acctwave.com/api/v1/order', {
service: 123,
link: 'https://instagram.com/user',
quantity: 1000
}, {
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
}
});
console.log(response.data);
} catch (error) {
console.error(error);
}
}
placeOrder();