Skip to main content
GET
/
api
/
v2
/
permanent
/
{address_id}
Get a permanent address by id
curl --request GET \
  --url https://api.pawpayments.com/api/v2/permanent/{address_id} \
  --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"
  }
}

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

Path Parameters

address_id
string
required

Unique 24-character hex permanent address id.

Response

OK

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"
}