API Documentation
Integrate 1001Social services into your application
Your API Key
sk_test_1001social_abc123xyz789⚠️ Keep your API key secret! Do not share it or commit it to version control.
Quick Start
Base URL
https://api.1001social.comAuthentication
Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEYAPI Endpoints
GET
/api/servicesGet all available services
curl -X GET https://api.1001social.com/api/services \
-H "Authorization: Bearer sk_test_1001social_abc123xyz789"POST
/api/ordersPlace a new order
curl -X POST https://api.1001social.com/api/orders \
-H "Authorization: Bearer sk_test_1001social_abc123xyz789" \
-H "Content-Type: application/json" \
-d '{
"serviceId": "service_123",
"link": "https://instagram.com/username",
"quantity": 1000
}'GET
/api/ordersGet your order history
curl -X GET https://api.1001social.com/api/orders \
-H "Authorization: Bearer sk_test_1001social_abc123xyz789"GET
/api/balanceGet your account balance
curl -X GET https://api.1001social.com/api/balance \
-H "Authorization: Bearer sk_test_1001social_abc123xyz789"Need Help?
Check out our complete API documentation or contact our support team for assistance.