I second this, MyVariant.info is a great tool. Once you got the variation IDs from MyVariant, you can further use them to fetch more data from Entrez itself. While on Python, if you have biopython installed, you can do:
from Bio import Entrez
Entrez.email = 'foo@bar.com' # your email here
# Supposing 1550 is your Clinvar Variation ID
handle = Entrez.efetch(db='clinvar', id='1550', rettype='variation')
response = handle.read()
print(response)
You will end up with the XML found in pages like these: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=clinvar&id=1550&rettype=variation
It's an ugly, unparsed XML, but it does provide some extra info that sometimes MyVariant.info doesn't include.