Hey, of course, the 1000 Genomes Phase III data also contains the allele frequencies. However, Pierre's answer and link are old; so, follow Step 1 here, and you will be able to download all of the most recent release from 2013: Produce PCA bi-plot for 1000 Genomes Phase III - Version 2
I just checked the data on my disk and indeed it contains (copied from header):
##INFO=<ID=EAS_AF,Number=A,Type=Float,Description="Allele frequency in the EAS populations calculated from AC and AN, in the range (0,1)">
##INFO=<ID=EUR_AF,Number=A,Type=Float,Description="Allele frequency in the EUR populations calculated from AC and AN, in the range (0,1)">
##INFO=<ID=AFR_AF,Number=A,Type=Float,Description="Allele frequency in the AFR populations calculated from AC and AN, in the range (0,1)">
##INFO=<ID=AMR_AF,Number=A,Type=Float,Description="Allele frequency in the AMR populations calculated from AC and AN, in the range (0,1)">
##INFO=<ID=SAS_AF,Number=A,Type=Float,Description="Allele frequency in the SAS populations calculated from AC and AN, in the range (0,1)">
Via biomaRt in R, you can obtain the global MAF ( A: How to retrieve Gene name from SNP ID using biomaRt ), however, this is not what you need.
If I were you, I would take time to set up an ANNOVAR installation on your computer. With this, you can easily annotate genetics data in many ways, including MAFs for all global populations from projects that include both 1000 Genomes and GME (Greater Middle East), and others. Take a look: https://doc-openbio.readthedocs.io/projects/annovar/en/latest/
Another option, of course, is Ensembl's VEP (Variant Effect Predictor).
Kevin
Thank you very much for your response first. I would have them a look.