Thanks a lot. Thats was very helpful. So I found three ways to query a bibtex information
curl -LH "Accept: text/x-bibliography; style=bibtex" https://0-doi-org.libus.csd.mu.edu/10.1021/acs.jpca.2c01209
Gives bibtex format with proper title format
@article{2022, title={Accurate Calculation of Rate Constant and Isotope Effect for the F + H2 Reaction by the Coupled 3D Time-Dependent Wave Packet Method on the Newly Constructed Ab Initio Ground Potential Energy Surface}, volume={126}, ISSN={1520-5215}, url={http://0-dx-doi-org.libus.csd.mu.edu/10.1021/acs.jpca.2c01209}, DOI={10.1021/acs.jpca.2c01209}, number={21}, journal={The Journal of Physical Chemistry A}, publisher={American Chemical Society (ACS)}, author={Naskar, Koushik and Ghosh, Sandip and Adhikari, Satrajit}, year={2022}, month={May}, pages={3311–3328} }
But this method
curl -LH "Accept: application/x-bibtex" https://0-doi-org.libus.csd.mu.edu/10.1021/acs.jpca.2c01209
and this
curl http://0-api-crossref-org.libus.csd.mu.edu/works/https://0-doi-org.libus.csd.mu.edu/10.1021/acs.jpca.2c01209/transform/application/
x-bibtex
gives the bibtex in the following fomat where the title is not properly formatted
@article{Naskar_2022,
doi = {10.1021/acs.jpca.2c01209},
url = {https://0-doi-org.libus.csd.mu.edu/10.1021%2Facs.jpca.2c01209},
year = 2022,
month = {may},
publisher = {American Chemical Society ({ACS})},
volume = {126},
number = {21},
pages = {3311--3328},
author = {Koushik Naskar and Sandip Ghosh and Satrajit Adhikari},
title = {Accurate Calculation of Rate Constant and Isotope Effect for the F $\mathplus$ H$\less$sub$\greater$2$\less$/sub$\greater$ Reaction by the Coupled 3D Time-Dependent Wave Packet Method on the Newly Constructed $\less$i$\greater$Ab Initio$\less$/i$\greater$ Ground Potential Energy Surface},
journal = {The Journal of Physical Chemistry A}
I think I will use the first one as that one gives proer fomatted title. Is there any advantages/ disadvantages to using one over the others?