get https://client.apimetrics.io/api/2/workflows/
Use this API to list the Workflows in your account.
import APImetrics
apimetrics = APImetrics.APImetricsAPI(apimetrics_key="your_api_key")
cursor = None
more = False
while more:
resp = apimetrics.list_workflows(cursor=cursor, limit=200)
more = resp['meta']['more']
cursor = resp['meta']['cursor']
for result in resp['results']
print result['name']