| title | Payee Destinations |
|---|---|
| description | Register and manage receiving routes using ERC-7828 interop addresses |
Payee destinations define where payments are received. Each destination encodes a wallet address, chain, and token into a single ERC-7828 interop address, creating a unique receiving route.
Destinations are used by:
- Secure payments — to resolve the payee, chain, and token from a
destinationId - Client IDs — to bind a receiving route to a client ID for orchestrator flows
A destination ID combines the interop address with the token address:
{walletAddress}@eip155:{chainId}#{checksum}:{tokenAddress}
Example:
0x6923831ACf5c327260D7ac7C9DfF5b1c3cB3C7D7@eip155:8453#ABCD1234:0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
This encodes:
- Wallet:
0x6923831ACf5c327260D7ac7C9DfF5b1c3cB3C7D7 - Chain: Base (chainId
8453) - Checksum:
ABCD1234(auto-generated by the API for address verification) - Token: USDC (
0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)
```bash
curl -X POST "https://auth.request.network/v1/payee-destination" \
-H "Cookie: session=YOUR_SESSION_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"tokenAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"chainId": 8453
}'
```
All endpoints require a SIWE wallet session (httpOnly cookie).
Create a new payee destination or reactivate an existing one.
ERC20 token contract address (EVM `0x...` or Tron `T...` format). Chain ID for the receiving network (e.g., `8453` for Base, `1` for Ethereum).{
"id": "01HXEXAMPLE123",
"destinationId": "0x6923...C7D7@eip155:8453#ABCD1234:0x8335...2913",
"walletAddress": "0x6923831ACf5c327260D7ac7C9DfF5b1c3cB3C7D7",
"tokenAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"chainId": 8453,
"binaryInteropAddress": "0x...",
"humanReadableInteropAddress": "0x6923...C7D7@eip155:8453#ABCD1234",
"claimed": true,
"active": true,
"createdAt": "2026-03-15T10:00:00.000Z"
}Update the token address and/or chain on the active destination.
New ERC20 token contract address. New chain ID.Returns the updated destination object (same format as POST response).
Returns the active payee destination for the authenticated wallet, or null if none exists.
Lookup a destination by its composite ID.
The full destination ID in ERC-7828 format.Deactivate the current destination.
The destination ID to deactivate.{
"success": true,
"message": "Destination deactivated"
}