API Endpoints
All API endpoints for the ByteConnect payment platform.
Base URL
Section titled “Base URL”https://quinix.byteconnect.usAuthentication
Section titled “Authentication”| Method | Endpoint | Description |
|---|---|---|
| POST | /auth | Authenticate and get access token |
Transactions
Section titled “Transactions”| Method | Endpoint | Description |
|---|---|---|
| POST | /create_transaction | Create a new payment transaction |
| POST | /get_transaction_status | Check status of a transaction |
| POST | /get_transactions | List transaction history |
Account
Section titled “Account”| Method | Endpoint | Description |
|---|---|---|
| POST | /get_account_info | Get account details and balances |
Prices
Section titled “Prices”| Method | Endpoint | Description |
|---|---|---|
| GET | /crypto_prices | Get current cryptocurrency prices |
Payouts
Section titled “Payouts”| Method | Endpoint | Description |
|---|---|---|
| POST | /request_payout | Request a payout |
| POST | /get_payout_status | Check payout status |
Endpoint Details
Section titled “Endpoint Details”POST /auth
Section titled “POST /auth”Authenticate with your credentials to receive an access token.
Request:
{ "username": "your_username", "password": "your_password"}Response:
{ "success": true, "access_token": "eyJ...", "expires_in": 3600}POST /create_transaction
Section titled “POST /create_transaction”Create a new payment transaction.
Request:
{ "access_token": "your_token", "amount": "25.00", "crypto_selected": "BTC", "email": "customer@example.com", "label": "Order #123"}POST /get_transaction_status
Section titled “POST /get_transaction_status”Check the status of a transaction.
Request:
{ "access_token": "your_token", "transaction_id": "txn_abc123"}GET /crypto_prices
Section titled “GET /crypto_prices”No authentication required. Returns current prices for all supported cryptocurrencies.
Rate Limits
Section titled “Rate Limits”- Authentication: 10 requests per minute
- Transactions: 100 requests per minute
- Prices: 60 requests per minute