Skip to main content
POST
/
api
/
v2
/
permanent
Get-or-create a permanent deposit address
curl --request POST \
  --url https://api.pawpayments.com/api/v2/permanent \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "user_id": "<string>",
  "family": "evm",
  "asset": "<string>",
  "notify_url": "<string>",
  "metadata": {}
}
'
{
  "ok": true,
  "result": {
    "active": true,
    "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
    "created_at": 1763398900,
    "deactivated_at": null,
    "family": "evm",
    "id": "65f1c3a4e8b1c2d3a4b5c6f0",
    "metadata": {
      "label": "main wallet"
    },
    "notify_url": "https://shop.example.com/webhook/paw",
    "user_id": "u_42"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.pawpayments.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Body

application/json
user_id
string
required
Required string length: 1 - 128
family
enum<string> | null
Available options:
evm,
bitcoin,
litecoin,
bitcoincash,
tron,
solana,
xrp,
ton
asset
string | null

Asset ticker (e.g. usdt_trc20). Used to infer family when family is omitted.

notify_url
string | null
Maximum string length: 500
metadata
Metadata · object

Response

Created

ok
boolean
required
result
PermanentAddress · object
required
Example:
{
  "active": true,
  "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
  "created_at": 1763398900,
  "deactivated_at": null,
  "family": "evm",
  "id": "65f1c3a4e8b1c2d3a4b5c6f0",
  "metadata": { "label": "main wallet" },
  "notify_url": "https://shop.example.com/webhook/paw",
  "user_id": "u_42"
}