Getting an address

By using this method you can:

  • Get the address for the user in the specified coin and network. When the request is repeated, the previously created address is returned, which will have isActive: true

  • Generate a new address for the user in the specified coin and network, when specifying the parameter renewAddress. The new address will have isActive: true, previously generated addresses with the same coin and network will have isActive: false

Note: At any time, a user can have only one active address in particular coin and network. Deposits and withdrawals work at all addresses, regardless of the parameter isActive

Getting an address

post
Header parameters
x-api-public-keystringoptional

Public API-key

x-api-signaturestringoptional

Signing the request body with a private API-key

Content-typestringoptional

Request content type

Example: application/json
Body

Request body to get or regenerate the address for the user

idstringrequired

User ID

Example: 04c05fe4-89d8-41ba-b600-2693adcd3206
currencystringrequired

Address coin

Example: USDT
networkstringrequired

Address network

Example: ethereum
renewAddressbooleanoptional

If set to true a new address will be issued to the user, the old one will become inactive

Responses
curl -L \
  --request POST \
  --url 'https://ocp.onchainpay.io/api-gateway/personal-addresses/get-user-address' \
  --header 'Content-Type: application/json' \
  --data '{
    "id": "04c05fe4-89d8-41ba-b600-2693adcd3206",
    "currency": "USDT",
    "network": "ethereum",
    "renewAddress": true
  }'
{
  "success": true,
  "response": {
    "id": "2361c9b9-8c89-40b0-ab90-1ade882cf756",
    "userId": "a4aaa006-0fd1-4413-8433-d0fe45c15f89",
    "currency": "USDT",
    "network": "ethereum",
    "address": "0x515b72ed8a97f42c568d6a143232775018f133c8",
    "tag": null,
    "balance": "1234.1234",
    "isActive": true
  }
}

Last updated