iSpy Bot provides a REST API for integrating checks into your systems. Full interactive documentation is available at api.ispy.services.
API is available only to users with the ULTIMATE category. To get access, contact the administrator @ninja_unlocker.
Connection
| Parameter | Value |
|---|---|
| Base URL | https://api.ispy.services/api/v1 |
| Authorization | X-API-Key: sk_live_xxx header |
| Format | JSON |
| Documentation | https://api.ispy.services |
Main Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /services | List of available services with prices |
| GET | /balance | Current account balance |
| POST | /orders | Create a check order |
| GET | /orders | List of orders (with pagination and filtering) |
| GET | /orders/{id} | Details of a specific order with result |
Creating an Order (POST /orders)
To create an order, send a POST request with a JSON body:
{
"service_id": 123,
"input_data": "352099001234567",
"telegram_id": 123456789
}
The response contains the order ID and its status. The result can be retrieved via GET /orders/{id}.
Full Documentation
Detailed descriptions of all endpoints, parameters, response formats, and integration examples are available in the interactive documentation.