How to list auth/secrets w/ curl?

I would like to do vault auth list and vault secrets list in curl.

I tried

curl --silent \
    --header "X-Vault-Token: $VAULT_TOKEN" \
    --request LIST \
    $VAULT_ADDR/v1/sys/auth

But I just get

{
  "errors": [
    "1 error occurred:\n\t* unsupported path\n\n"
  ]
}

I found how to do vault auth list:

curl --silent \
  --header "X-Vault-Token: $VAULT_TOKEN" \
  --request GET \
  $VAULT_ADDR/v1/sys/auth \

I found vault secrets list with

curl --silent \
  --header "X-Vault-Token: $VAULT_TOKEN" \
  --request GET \
  $VAULT_ADDR/v1/sys/mounts