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.com

Authentication

Include your API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY

API Endpoints

GET/api/services

Get all available services

curl -X GET https://api.1001social.com/api/services \
  -H "Authorization: Bearer sk_test_1001social_abc123xyz789"
POST/api/orders

Place 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/orders

Get your order history

curl -X GET https://api.1001social.com/api/orders \
  -H "Authorization: Bearer sk_test_1001social_abc123xyz789"
GET/api/balance

Get 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.