🔌 API

API Endpoints

REST API documentation - requests, responses, integration examples|


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

ParameterValue
Base URLhttps://api.ispy.services/api/v1
AuthorizationX-API-Key: sk_live_xxx header
FormatJSON
Documentationhttps://api.ispy.services

Main Endpoints

MethodEndpointDescription
GET/servicesList of available services with prices
GET/balanceCurrent account balance
POST/ordersCreate a check order
GET/ordersList 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.