Displaying 3rd Party API Results

I’m trying to create a simple postcode lookup tool using an api from Postcodes.io
I have no coding experience, but using the forums I believe I have done the backend fetch correctly- I just don’t know how to get the results to display in the front end? I’m wanting the user to be able to input their postcode and it return key information about that postcode: most importantly and if possible, only the “CCG” associated with that postcode.
The Backend looks like this;

Then, the picture below is how far I’ve got with the frontend…I have no idea how to write the code to only display the CCG information that is returned for a postcode submitted to the 3rd Party API.

Any help would be very welcomed. I don’t have any developer friends to help me with this, so any guidance would be amazing.

Hello,

Start from checking our tutorials on how to work with third-party services:
Corvid: Accessing Third-Party Services with the Fetch API

Below you can find some examples where you can see code that interfaces with an external API. You can load the examples in your Editor, play with them, learn, and apply to your own site and specific API that you are interested in using:

Expose and Access Site APIs
Use MyApi and MyApiClient to expose and access external APIs.

Send Email with SendGrid NPM Interface
Send an email using the SendGrid NPM library.

Send Email with SendGrid REST Interface
Send an email using the SendGrid REST API.

Stripe Payment Processing
Integrate the Stripe Payment processing system into a site. Three levels of user access are demonstrated: visitor, freemium (registered), and premium (paid).