GET /api/v1/users/:address/unclaimed-deposits
Check for unclaimed ENS old registrar deposits (Vickrey auction deeds) for the given address.
Authentication: None
Cache: None
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
address | string | Yes | Ethereum address (0x + 40 hex chars) |
Sample Request
curl https://api.grails.app/api/v1/users/0x1234.../unclaimed-depositsResponse
// 200 OK
{
"success": true,
"data": {
"address": "0x983110309620d911731ac0932219af06091b6744",
"deeds": [
{
"deedAddress": "0xabcdef1234567890abcdef1234567890abcdef12",
"balance": "0.01"
}
],
"totalUnclaimedEth": "0.01",
"totalUnclaimedWei": "10000000000000000"
},
"meta": {
"timestamp": "2026-04-07T12:00:00.000Z",
"version": "1.0.0"
}
}Error Responses
| Status | Code | Description |
|---|---|---|
| 400 | VALIDATION_ERROR | Invalid address format |
| 500 | INTERNAL_ERROR | Failed to fetch unclaimed deposits |
Last updated on