YTStore Provider API
Complete API documentation for integrating with YTStore SMM Provider services.
API Endpoint:
https://ytstore.red/api/v2Getting Started
All API requests are made via HTTP POST. Include your API key in every request.
Authentication
Include the key parameter in all requests.
Example
curl -X POST https://ytstore.red/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=services"
Services
POST/api/v2
Get all available services.
| Parameter | Type | Required |
|---|---|---|
| key | string | Required |
| action | string | services |
Response
[{"service": 1, "name": "YouTube Views", "type": "Default", "rate": 0.50, "min": 100, "max": 100000}]Add Order
POST/api/v2
Create a new order.
| Parameter | Type | Required |
|---|---|---|
| key | string | Required |
| action | string | add |
| service | integer | Required |
| link | string | Required |
| quantity | integer | Required |
| keywords | string | Optional |
Response
{"order": 12345}Order Status
POST/api/v2
Check order status. Use order for single or orders for multiple (comma-separated).
| Parameter | Type | Required |
|---|---|---|
| key | string | Required |
| action | string | status |
| order | integer | Single order |
| orders | string | Multiple orders |
Response
{"charge": "0.50", "start_count": "1500", "status": "Completed", "remains": "0"}Balance
POST/api/v2
| Parameter | Type | Required |
|---|---|---|
| key | string | Required |
| action | string | balance |
Response
{"balance": "150.50", "currency": "USD"}Error Handling
| Error | Description |
|---|---|
Invalid key | API key is invalid or missing |
Incorrect request | Invalid action or parameters |
Invalid service | Service ID not found |
Incorrect order ID | Order not found |
Order Statuses
Pending
Processing
In progress
Completed
Partial
Canceled