const getFn = async () => {
const response = await axios.post(
`https://api.novaposhta.ua/v2.0/json/Address/getCities`,
{
headers: {
'Content-Type': 'application/json',
Host: 'api.novaposhta.ua',
},
data: {
apiKey: '210d780975bd32f4a027cb5eeb398026',
modelName: 'Address',
calledMethod: 'getCities',
},
},
);
console.log(response);
}
getFn() // status: 200 // {"success":false,"data":[],"errors":["Model is invalid"],"warnings":[],"info":[],"messageCodes":[],"errorCodes":[],"warningCodes":[],"infoCodes":[]}