Create product page where products get through an api

Hello All
I have created collection page using API call.
Here is url and password for page.
https://ganesh1725.myshopify.com/collections/all
Password : chiyod

The thing I want is to create a product page for each product which I have rendered from outside source like graphql API.

Is that possible using inside shopify theme files?
How can I do that?
Is there any suggestions or steps I need to follow or if there any documentation please share it with me…

hi,

you can create a custom product page template.

Example of code you can use

# {{ product.title }}

{{ product.description }}

Price: {{ product.price | money }}

Fetch external product data using javascript and assign your template to products

Hello @Small_Task_Help

Actually products are not setup at backend of shopify.
We can use this objects to show product info if the product is present at backend.
But I have get products from another store and showing them at the collection page.
What I want is how can I show them as a single product page which I have get from another store through API