SellAuth

Crypto Wallet

Get Payouts

Retrieves the crypto wallets payout history.

GET
/v1/shops/{shopId}/payouts

Authorization

AuthorizationRequiredBearer <token>

You can retrieve your API key by visiting your dashboard and clicking Account > API.

In: header

Path Parameters

shopIdRequiredinteger
curl -X GET "https://api.sellauth.com/v1/shops/{shopId}/payouts" \
  -H "Authorization: Bearer <token>"

{
  "message": "No query results for model [App\\Models\\Shop] 1"
}

Get Balances

Retreive the current balances of the crypto wallets.

GET
/v1/shops/{shopId}/payouts/balances

Authorization

AuthorizationRequiredBearer <token>

You can retrieve your API key by visiting your dashboard and clicking Account > API.

In: header

Path Parameters

shopIdRequiredinteger
curl -X GET "https://api.sellauth.com/v1/shops/{shopId}/payouts/balances" \
  -H "Authorization: Bearer <token>"

{
  "message": "No query results for model [App\\Models\\Shop] 1"
}

Payout

Payout the crypto from the wallet.

POST
/v1/shops/{shopId}/payouts/payout

Authorization

AuthorizationRequiredBearer <token>

You can retrieve your API key by visiting your dashboard and clicking Account > API.

In: header

Request Body

application/jsonRequired
currencyRequiredstring
Value in: "btc" | "ltc"
addressRequiredstring
amountRequirednumber

Path Parameters

shopIdRequiredinteger
curl -X POST "https://api.sellauth.com/v1/shops/{shopId}/payouts/payout" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "currency": "ltc",
    "address": "magnam",
    "amount": 188825.277
  }'

Get Transactions

Retrieves the transaction history for the crypto wallets.

GET
/v1/shops/{shopId}/payouts/transactions

Authorization

AuthorizationRequiredBearer <token>

You can retrieve your API key by visiting your dashboard and clicking Account > API.

In: header

Path Parameters

shopIdRequiredinteger
curl -X GET "https://api.sellauth.com/v1/shops/{shopId}/payouts/transactions" \
  -H "Authorization: Bearer <token>"

{
  "message": "No query results for model [App\\Models\\Shop] 1"
}