System Documentation
API Infrastructure
Technical specifications for ShieldPay Engine. A robust backend architecture for real-time asset management and high-frequency peer-to-peer financial operations.
Production Endpoint
http://shield-pay.adhameldouh.com/api/v1
Security Protocol
Bearer Token {ACCESS_TOKEN}
GET
Root Welcome
The entry point of the ShieldPay Engine. Use this to verify server health, check the current version, and discover available functional modules.
Endpoint
http://shield-pay.adhameldouh.com/api/v1/api/
Response
200 OK
{
"success": true,
"application": "ShieldPay Engine",
"version": "1.0.0",
"available_modules":
["auth", "cards", "banks", "transfers",
"transactions"]
}
GET
Module Information
These endpoints provide dynamic metadata for each specific module. They help developers understand the capabilities and constraints of the module before making transactional requests.
| Method | Endpoint | Description |
|---|---|---|
| GET | $base_url/api/info/auth | Authentication workflows and OTP rules. |
| GET | $base_url/api/info/cards | Card binding formats and supported issuers. |
| GET | $base_url/api/info/transfer | Limits, fees, and transfer status definitions. |
| GET | $base_url/api/info/transactions | Pagination info and history query parameters. |