Bitycle Business
  1. Wallet as a Service(WaaS)
Bitycle Business
  • Getting started
  • Bitycle Lab
    • introduction
    • Wallet as a Service(WaaS)
      • introduction
      • request Wallet(Temporary)
        POST
      • request Wallet(Permanent)
        POST
      • inquiry payment
        POST
    • Blockchain Indexer
      • introduction
      • Blockchain List
      • Contract Info
      • Get Balances
    • Security&Privacy
      • introduction
      • Check USDT Wallets Blocked
      • Get USDT blocked History
    • Node as a Service(NaaS)
      • introduction
    • Tokenization
      • introduction
    • Decentralized Storage(IPFS)
      • introduction
    • Hyperledger Services
      • introduction
  • Bitycle Cap
    • introduction
    • Coins
      • introduction
      • Coin List
      • Coin Info
      • Coin Price
      • coin exchange listings
    • Markets
      • introduction
      • Market Price
      • Markets List
      • Market Info
      • market sparklines
    • exchanges
      • introduction
      • CEX Aggregator(Buy&Sell)
        • introduction
        • get tradable markets
        • get tradable markets price
        • send otc order
        • get orders
        • get balances
      • Exchanges List
      • Exchange Info
      • Exchange Coins Listing
      • Exchange Markets Listing
  1. Wallet as a Service(WaaS)

request Wallet(Temporary)

POST
/pg/v1/requestPay
دریافت آدرس پرداخت برای مشتری
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://chainhub.bitycle.com/pg/v1/requestPay' \
--header 'Authorization: Token xxx' \
--header 'Content-Type: application/json' \
--data-raw '{
    "description": "Hello",
    "email": "customeremail@gmail.com",
    "callback_url": "https://mysite.ir/callback/",
    "token": "POL"
}'
Response Response Example
{
  "terminalId": "23",
  "token": "POL",
  "addresses": [
    {
      "address": "0x5C0ea8929E8fD992C4b15D3Efa79237A4bE50807",
      "displayName": "POL",
      "chainId": "1801",
      "chainName": "Amoy"
    },
    {
      "address": "0x5C0ea8929E8fD992C4b15D3Efa79237A4bE50807",
      "displayName": "POL",
      "chainId": "1137",
      "chainName": "Polygon"
    },
    {
      "address": "0x5C0ea8929E8fD992C4b15D3Efa79237A4bE50807",
      "displayName": "POL",
      "chainId": "1001",
      "chainName": "Ethereum"
    }
  ]
}

Request

Header Params
Authorization
string 
required
Example:
{{labs_token}}
Body Params application/json
description
string 
required
email
string 
required
callback_url
string 
required
token
string 
required
Examples

Responses

🟢200success
application/json
Body
terminalId
string 
required
token
string 
required
addresses
array [object {4}] 
required
address
string 
required
displayName
string 
required
chainId
string 
required
chainName
string 
required
Previous
introduction
Next
request Wallet(Permanent)
Built with