Get request in post

Hello,
Is it possible to using rest-api in posts? I have API and want to call it for some information which will be added to post.

Everything is possible if you use the Fetch API from JavaScript :wink:

fetch('http://example.com/movies.json')
  .then(response => response.json())
  .then(data => console.log(data));