Bitstech API docs
  1. Auth Endpoints
Bitstech API docs
  • Auth Endpoints
    • Auth
      POST
  • Vault Endpoints
    • Create Vault(multiple wallets)
      POST
    • Get Wallet
      GET
    • Get Asset
      GET
  • Transaction Endpoints
    • Transaction Create
      POST
    • Internal transaction create
      POST
    • Get Transaction
      GET
  • WebHooks
    • Incoming payment notification
      POST
  1. Auth Endpoints

Auth

POST
/api/Auth/login
Authenticates a user and returns a JWT token
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/Auth/login' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "string",
    "password": "string"
}'
Response Response Example
{
    "token": "string",
    "expiresAt": "string"
}

Request

Body Params application/json
username
string 
required
password
string 
required
Examples

Responses

🟢200Success
application/json
Body
token
string 
required
expiresAt
string 
required
Next
Create Vault(multiple wallets)
Built with