Skip to main content
GET
/
vault
/
lookup_by_address
TypeScript
const response: Promise<FireblocksResponse<AddressReverseLookupResponse>> = fireblocks.vaults.lookupVaultByAddress(vaultsApiLookupVaultByAddressRequest);
{
  "address": "<string>",
  "type": "VAULT_ACCOUNT",
  "vaultAccountId": "0",
  "blockchains": [
    "ETH",
    "MATIC"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.fireblocks.com/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

address
string
required

The blockchain address to resolve.

Response

Vault account that owns the address, with associated blockchains.

Reverse-lookup result mapping a blockchain address to its owning vault account.

address
string
required

The queried blockchain address.

type
enum<string>
required

Source type of the resolved address.

Available options:
VAULT_ACCOUNT
Example:

"VAULT_ACCOUNT"

vaultAccountId
string
required

Vault account ID that owns the address.

Example:

"0"

blockchains
string[]
required

Blockchain assets associated with this address in the vault account.

Example:
["ETH", "MATIC"]