POST/v1/address-groups/{chainId}/{groupId}/addresses

Add Addresses to Group

Add multiple addresses to an existing address group. All addresses will be normalized to lowercase and duplicates will be handled automatically. The response includes the updated group with all current addresses.

Endpoint Details

POST

https://api.monitor.getfailsafe.com/server

https://api.monitor.getfailsafe.com/server/v1/address-groups/{chainId}/{groupId}/addresses

Request Body Schema

Array of addresses to add to the group

{
  "addresses": [
    "0x1234567890123456789012345678901234567890",
    "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd"
  ]
}