Address generation

We parse blockchain, watching our address transaction. When your user sends money, we send money to your balance and send callback to your server.

Generate address

POST https://my.cryptopayments.pro/api/v2/addresses/take

Headers

Request Body

{
    "data":{
        "id":800,
        "address":"39Cng5Xpse7Fd9v9MTgTiKgPesu5M2nXub",
        "currency":"BTC",
        "foreign_id":"your-first-user",
        "tag":""
    }
}

CURL Example

curl -X POST https://my.cryptopayments.proapi/v2/addresses/take \
    -H 'Content-type: application/json' \
    -H 'X-Processing-Key: zyj0tEv...FQlO5OArdQD' \
    -H 'X-Processing-Signature: d92754031f8a2b1...5c9590e79ffb4a3fb3d' \
    -d '{"foreign_id":"your-first-user","currency":"BTC"}'

Last updated