Skip to main content
GET
/
api
/
v2
/
permanent
List permanent deposit addresses
curl --request GET \
  --url https://api.pawpayments.com/api/v2/permanent \
  --header 'x-api-key: <api-key>'
{
  "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"
    }
  ],
  "pagination": {
    "page": 1,
    "pages": 1,
    "per_page": 20,
    "total": 1
  }
}

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

Query Parameters

page
integer
default:1
Required range: x >= 1
per_page
integer
default:20
Required range: 1 <= x <= 100
user_id
string | null
family
enum<string> | null
Available options:
evm,
bitcoin,
litecoin,
bitcoincash,
tron,
solana,
xrp
active
boolean | null

Response

OK

ok
boolean
required
result
PermanentAddress · object[]
required
pagination
Pagination · object
required
Example:
{
  "page": 1,
  "pages": 1,
  "per_page": 20,
  "total": 1
}