'How to get Yoast data of product using API?

I am trying to get yoast data of the product using the below API.

$link = 'https://test.com/product/herbs-of-gold-elderberry-echinacea-and-olive-leaf-100ml-2/';
$url = "https://test.com/wp-json/yoast/v1/get_head?url=".$link;
$json_data1 = file_get_contents($url);
$json_data  =json_decode($json_data1);
$metaDataJson = $json_data->json;

But not getting data proper like og:title etc. But for Blog, I get all parameters



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source