POST
/
rewards
/
monitor
/
address
curl --request POST \
--url https://api.paxos.com/v2/rewards/monitor/address \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"crypto_network": "ETHEREUM",
"address": "0x2D2849217C027494ae0D7Af2fC7f9b798Ddd5aB9",
"name": "New Address"
}'
{
"address": {
"address": "0x2D2849217C027494ae0D7Af2fC7f9b798Ddd5aB9",
"crypto_network": "ETHEREUM",
"name": "New Address",
"created_at": "2025-03-21T15:22:05.474383Z"
}
}
OAuth Scope
rewards:write_monitoring_address

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Body

application/json
crypto_network
enum<string>

A CryptoNetwork is a blockchain transmitting cryptocurrencies.

Available options:
BITCOIN,
ETHEREUM,
BITCOIN_CASH,
LITECOIN,
SOLANA,
POLYGON_POS,
BASE,
ARBITRUM_ONE,
INK
address
string

On-chain address Paxos will monitor for eligible reward activity. Must be valid for the specified network and not be registered to another customer. For SOLANA specify the wallet account (ie: not a derived/token account like an ATA).

name
string

Optional display name. Useful for grouping or reporting.

Response

A successful response.

address
object