API Key
How to get API key?
API key is a unique identifier required for API requests. Below you will find instructions on how to use the API key.
You will need to contact our sales team to obtain an API access key.
Usage
import requests
# Insert your API key
API_KEY = 'YOUR API KEY'
# API request
res = requests.get('https://api.cherry-pick.xyz/v1/metrics/sopr',
params={'a': 'LDO', 'api_key': API_KEY, })
# Get result in json format
print(res.json())Last updated
Was this helpful?