get https://api.sbgenomics.com/v2/projects
Path for Seven Bridges Platform EU
If you are using Seven Bridges Platform EU, please use the following endpoint:
https://eu-api.sbgenomics.com/v2/projects
Response
Path for Seven Bridges Platform EU
If you are using Seven Bridges Platform EU, please use the following endpoint:
https://eu-api.sbgenomics.com/v2/projects
xxxxxxxxxx
10from sevenbridges import Api
​
api = Api(url='https://api.sbgenomics.com/v2',
token='3210a98c1db9318fa9d9273156740f74')
​
# send GET request to SB API
all_projects = api.projects.query()
​
for project in all_projects:
print(project.name)