Skip to content

API Endpoints

All API endpoints for the ByteConnect payment platform.

https://quinix.byteconnect.us
MethodEndpointDescription
POST/authAuthenticate and get access token
MethodEndpointDescription
POST/create_transactionCreate a new payment transaction
POST/get_transaction_statusCheck status of a transaction
POST/get_transactionsList transaction history
MethodEndpointDescription
POST/get_account_infoGet account details and balances
MethodEndpointDescription
GET/crypto_pricesGet current cryptocurrency prices
MethodEndpointDescription
POST/request_payoutRequest a payout
POST/get_payout_statusCheck payout status

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
}

Create a new payment transaction.

Request:

{
"access_token": "your_token",
"amount": "25.00",
"crypto_selected": "BTC",
"email": "customer@example.com",
"label": "Order #123"
}

Check the status of a transaction.

Request:

{
"access_token": "your_token",
"transaction_id": "txn_abc123"
}

No authentication required. Returns current prices for all supported cryptocurrencies.

  • Authentication: 10 requests per minute
  • Transactions: 100 requests per minute
  • Prices: 60 requests per minute