Shopify API返回所有产品而不是单个产品

I am calling the Shopify API with the following:

nameofmystore.myshopify.com/admin/products.json/#410319192096?fields=id,images,title

It is returning a list of all products and all fields on my store instead of just the product with the ID 410319192096 and the fields I require.

According to the documentation I am calling it correctly, does anyone know if I'm making an incorrect call?

Wrong placement of .json in your url, if you only want to select single product, not all list (info here).

Correct url for single product should be: nameofmystore.myshopify.com/admin/products/410319192096.json?fields=id,images,title