i try to consume elastic document api using javascript, but when i try to consume it there is error that show no handler found for uri [meikel-index/_doc/1/_source] and method GET
but if i consume the api without _souce, it shows the api as it should, but with _source it brings the error how to consume it properly
here is the javascript code:
fetch('http://192.168.20.47:9200/meikel-index/_doc/1/_source')
.then(response => response.json())
.then(data => console.log(data));
picture the code works without _source at the end : enter image description here
how to properly consume it with javascript, do i miss something?