Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

coinbase api

from coinbase.wallet.client import Client

client = Client('xxxxxxxxxxx', 'xxxxxxxxxxxxxxxx') # set your api and secret keys here

# use this to create a deposit address for your coinbase account

account_id = 'xxxxx-xxx-xxx-xxxx-xxxxxxxxx' # the account is of the currency for which u want the address for

address = client.create_address(account_id)

print(str(address))
Source by developers.coinbase.com #
 
PREVIOUS NEXT
Tagged: #coinbase #api
ADD COMMENT
Topic
Name
3+3 =