Comment on APIs.io – The API search engineComments−pgroves11yIf you just want the list of names of the apis: curl "http://apis.io/api/apis?limit=1000" -s |python -m json.tool |grep "\"name\"\:"−finnn11ycurl "http://apis.io/api/apis?limit=1000" -s | jq .data\[\].namejq FTW−picsoungOP11yor you can do curl "http://apis.io/api/apis?limit=1000&fields=name" -s |python -m json.tool
Comments
If you just want the list of names of the apis:
curl "http://apis.io/api/apis?limit=1000" -s | jq .data\[\].name
jq FTW
or you can do