Create Receiving Address

Generate a cryptocurrency receiving address for a customer

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Generate a unique cryptocurrency receiving address for a customer. Funds sent to this address will be credited to the customer's account.

Request

POST /customers/{customer_id}/receiving-addresses

Path Parameters

ParameterTypeRequiredDescription
customer_idstringYesCustomer ID

Request Body

FieldTypeRequiredDescription
currencystringYesCryptocurrency code (e.g., BTC, ETH)
networkstringNoBlockchain network (required for multi-network currencies)

Example Request

{
  "currency": "BTC"
}

Example Response

{
  "id": "addr_abc123",
  "customer_id": "cust_xyz789",
  "currency": "BTC",
  "network": "bitcoin",
  "address": "bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh",
  "created_at": "2025-01-05T12:00:00Z"
}

Notes

  • If an address already exists for the customer and currency combination, the existing address is returned
  • Addresses are permanent and do not expire
  • All incoming transactions to the address will generate receive orders
  • Use List Receiving Addresses to retrieve existing addresses
Path Params
string
required
Body Params
string
string
Headers
string
enum
Defaults to application/json

Generated from available response content types

Allowed:
Responses

Language
Credentials
Header
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json
text/plain