# Inspect Address **GET /addresses/{addressId}**

status: stable

Give useful information about the structure of a given address. ## Servers - https://localhost:8090/v2: https://localhost:8090/v2 () ## Parameters #### Path parameters - **addressId** (string(base58)) ## Responses ### 400: Bad Request #### Body Parameters: application/json (object) - **message** (string) May occur when a request is not well-formed; that is, it fails to parse successfully. This could be the case when some required parameters are missing or, when malformed values are provided. - **code** (string) ### 200: Ok #### Body Parameters: application/json (object) - **address_style** (string) - **stake_reference** (string) - **network_tag** (integer) Can be null for 'Icarus' and 'Byron' styles. - **spending_key_hash** (string(base16)) - **spending_key_bech32** (string(bech32)) - **stake_key_hash** (string(base16)) - **stake_key_bech32** (string(bech32)) - **script_hash** (string(base16)) - **script_hash_bech32** (string(bech32)) - **pointer** (object) - **address_root** (string(base16)) Only for 'Icarus' and 'Byron' styles. - **derivation_path** (string(base16)) Only for 'Byron' style. - **address_type** (integer) The raw type field of the address. Details about possible address types are following (refer also to [cddl](https://github.com/IntersectMBO/cardano-ledger/blob/master/eras/alonzo/test-suite/cddl-files/alonzo.cddl)). | address_type | binary prefix | Meaning | | ------------ |:--------------:|:--------------------------------------------------------:| | 0 | 0000 | base address: keyhash28,keyhash28 | | 1 | 0001 | base address: scripthash28,keyhash28 | | 2 | 0010 | base address: keyhash28,scripthash28 | | 3 | 0011 | base address: scripthash28,scripthash28 | | 4 | 0100 | pointer address: keyhash28, 3 variable length uint | | 5 | 0101 | pointer address: scripthash28, 3 variable length uint | | 6 | 0110 | enterprise address: keyhash28 | | 7 | 0111 | enterprise address: scripthash28 | | 8 | 1000 | byron/icarus | | 14 | 1110 | reward account: keyhash28 | | 15 | 1111 | reward account: scripthash28 | [Powered by Bump.sh](https://bump.sh)