Skip to main content
GET
/
wallet
/
get
/
{groupId}
Get Address Group
curl --request GET \
  --url https://api.depo.to/wallet/get/{groupId} \
  --header 'x-api-key: <api-key>'
{
  "groupId": {
    "id": "1234567890",
    "createdAt": "2021-01-01T00:00:00Z",
    "targetChain": "ethereum",
    "targetAddress": "0x742d...",
    "targetAsset": "0x12ab..."
  },
  "addresses": {},
  "transactions": [
    {
      "id": "123",
      "status": "completed",
      "amount": "100",
      "asset": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3",
      "chain": "ethereum",
      "address": "0x1234..."
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key from depo.to dashboard

Path Parameters

groupId
string
required

The address group ID

Response

Address group details

groupId
object
addresses
object
transactions
object[]