v1

latestOpenAPI 3.0.02026-07-267331140.7 KB
Safe Management

Retrieve Safe migration status

Returns the current safe, previous safe (if migrated), and migration status for the authenticated user.

get/api/v1/safe/migration

Query parameters

migrationIdstring

Migration identifier to look up.

Response

Successfully retrieved safe migration info.

migrationIdstring required
status'PENDING' | 'IN_PROGRESS' | 'COMPLETED' | 'FAILED' nullable

Migration status, or null if the user has not started this migration.

hasOldSafeboolean required

Whether a previous safe was recorded for this migration.

Example response

{
  "migrationId": "safe-replacement-2026-06",
  "newSafe": {
    "address": "0xabcdef1234567890abcdef1234567890abcdef12",
    "chainId": "100",
    "tokenSymbol": "EURe"
  },
  "oldSafe": {
    "address": "0x1234567890abcdef1234567890abcdef12345678",
    "chainId": "100",
    "recordedAt": "2026-06-03T12:00:00.000Z"
  }
}