Magento 2 – Featured and Related Products REST API

apimagento2product-linksrest

Is there is a built in REST APIs for both Featured and Related products in Magento because I looked in the reference and couldn't find?

Best Answer

API for the product Links: related, crosssell, upsell. We can try with some APIs:

GET    /V1/products/links/types
GET    /V1/products/links/:type/attributes
GET    /V1/products/:sku/links/:type
POST   /V1/products/:sku/links
DELETE /V1/products/:sku/links/:type/:linkedProductSku
PUT    /V1/products/:sku/links

Swagger and List: