API Documentation
Integrate SociapexPro services into your applications
Version 1.0
Get all available services with pricing.
Example Request:
curl -X GET "https://sociapexx.pxxl.click/api/v1/services" \
-H "x-api-key: YOUR_API_KEY"
Response:
{
"success": true,
"user": {
"name": "John Doe",
"balance": 50000
},
"services": [
{
"id": "7997",
"name": "TikTok Followers",
"price_per_1000": "2780.72",
"min": 10,
"max": 1000000
}
]
}
Get details for a specific service.
Example Request:
curl -X GET "https://sociapexx.pxxl.click/api/v1/service/7997" \
-H "x-api-key: YOUR_API_KEY"
Response:
{
"success": true,
"service": {
"id": "7997",
"name": "TikTok Followers",
"price_per_1000": "2780.72",
"min": 10,
"max": 1000000
}
}
Place an order. Amount will be deducted from your balance.
Parameters:
| Parameter | Type | Required | Description |
|---|
| service_id | string | Yes | Service ID from /services endpoint |
| link | string | Yes | Instagram/TikTok/YouTube profile or video link |
| quantity | integer | Yes | Number of followers/likes/views |
Example Request:
curl -X POST "https://sociapexx.pxxl.click/api/v1/order" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"service_id": "7997",
"link": "https://tiktok.com/@username",
"quantity": 1000
}'
Response:
{
"success": true,
"order": {
"order_id": "123456789",
"service": "TikTok Followers",
"quantity": 1000,
"total_cost": "2780.72",
"status": "processing"
},
"new_balance": 47219.28
}
Check the status of an order.
Example Request:
curl -X GET "https://sociapexx.pxxl.click/api/v1/order/123456789" \
-H "x-api-key: YOUR_API_KEY"
Response:
{
"success": true,
"order": {
"order_id": "123456789",
"service": "TikTok Followers",
"quantity": 1000,
"cost": 2780.72,
"status": "completed",
"created_at": "2024-01-15T10:30:00Z"
}
}
Get your balance and order statistics.
Example Request:
curl -X GET "https://sociapexx.pxxl.click/api/v1/stats" \
-H "x-api-key: YOUR_API_KEY"
Response:
{
"success": true,
"user": {
"name": "John Doe",
"balance": 47219.28
},
"stats": {
"total_orders": 15,
"completed_orders": 12,
"processing_orders": 3,
"total_spent": 55780.72
}
}
Need Help?
Our support team is ready to assist you