Get the public key associated with the entity.
1from circle.web3 import configurations
2from circle.web3 import utils
3
4client = utils.init_configurations_client(api_key=key)
5api_instance = configurations.DeveloperAccountApi(client)
6
7response = api_instance.get_public_key()
8print(response.json())
9
1{
2 "data": {
3 "public_key": ""
4 }
5}