Amazon Product Sustainability Features API
Amazon product pages may display Sustainability Features highlighting the product's environmental and social impact certifications. These include climate_pledge_friendly status, a summary, and detailed features with certification information.
When SerpApi encounters Sustainability Features, they are added to the JSON output as the sustainability_features object.
The API endpoint is https://serpapi.com/search?engine=amazon_product
Head to the playground for a live and interactive demo.
API Examples
Sustainability Features overview
{
...
"sustainability_features": {
"summary": "This product has sustainability features recognized by trusted certifications.",
"climate_pledge_friendly": true,
"learn_more_link": "https://www.amazon.com/climatepledgefriendly",
"features": [
{
"position": 1,
"title": "Farming practices",
"text": "Made with materials harvested from responsibly managed farms.",
"certified_by": [
{
"name": "Rainforest Alliance",
"logo": "https://m.media-amazon.com/images/I/512wYW170mL._SS144_.png",
"description": "Rainforest Alliance certified products help farmers follow more sustainable, climate-smart farming practices that protect natural resources and the environment based on land, water, and energy use. These practices also safeguard carbon-storing forests and help farmers mitigate and adapt to climate change.",
"link": "https://www.rainforest-alliance.org/faqs/what-does-rainforest-alliance-certified-mean"
}
]
},
{
"position": 2,
"title": "Biodiversity",
"text": "Made with materials harvested in a way that helps protect animals, plants, and a healthy ecosystem.",
"certified_by": [
{
"name": "Rainforest Alliance",
"logo": "https://m.media-amazon.com/images/I/512wYW170mL._SS144_.png",
"description": "Rainforest Alliance certified products help farmers follow more sustainable, climate-smart farming practices that protect natural resources and the environment based on land, water, and energy use. These practices also safeguard carbon-storing forests and help farmers mitigate and adapt to climate change.",
"link": "https://www.rainforest-alliance.org/faqs/what-does-rainforest-alliance-certified-mean"
}
]
},
{
"position": 3,
"title": "Forestry practices",
"text": "Made with materials harvested from responsibly managed forests.",
"certified_by": [
{
"name": "Rainforest Alliance",
"logo": "https://m.media-amazon.com/images/I/512wYW170mL._SS144_.png",
"description": "Rainforest Alliance certified products help farmers follow more sustainable, climate-smart farming practices that protect natural resources and the environment based on land, water, and energy use. These practices also safeguard carbon-storing forests and help farmers mitigate and adapt to climate change.",
"link": "https://www.rainforest-alliance.org/faqs/what-does-rainforest-alliance-certified-mean"
}
]
},
...
]
},
...
}
JSON structure overview
{
"sustainability_features": {
"summary": "String - Summary of sustainability features",
"climate_pledge_friendly": "Boolean - Whether product is Climate Pledge Friendly",
"learn_more_link": "String - Link to Climate Pledge Friendly information",
"features": [
{
"title": "String - Sustainability feature title (e.g., 'Farming practices', 'Biodiversity')",
"text": "String - Feature description",
"certified_by": [
{
"name": "String - Certification body name (e.g., 'Rainforest Alliance')",
"logo": "String - Certification logo URL",
"description": "String - Certification description",
"link": "String - Link to certification information"
}
]
}
]
}
}