Skip to main content
POST
/
api
/
v2
/
addresses
/
generate
Generate Address V2
curl --request POST \
  --url https://sandbox.oumla.com/api/v2/addresses/generate \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "reference": "user-123",
  "network": "tBTC",
  "clientShare": "<string>"
}
'
{
"data": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
"message": "Address created successfully"
}

Authorizations

x-api-key
string
header
required

API key for authentication. Obtain your API key from the dashboard.

Headers

x-sdk-version
string
default:1.0.0

SDK version header

Body

application/json

Request body for generate address v2

Create address request object

reference
string
required

Profile reference

Example:

"user-123"

network
enum<string>
required

Blockchain network

Available options:
tBTC,
tETH,
AVAX,
FUJI,
SANDBOX
clientShare
string
required

Client share for wallet derivation

Minimum string length: 1

Response

Address created successfully

Create address response object

data
string

Generated address

Example:

"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb"

message
string
Example:

"Address created successfully"