Live
get_ingredient_details
ewg.orgReturns comprehensive EWG Skin Deep ingredient safety data from https://www.ewg.org, including scores, concerns, synonyms, references and VERIFIED criteria.
Parameters1
Runs6
Updated1d ago
Operational6 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_ingredient_details?
Returns comprehensive EWG Skin Deep ingredient safety data from https://www.ewg.org, including scores, concerns, synonyms, references and VERIFIED criteria. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass ingredient_url and get the result back without maintaining a scraper.
Response
{
"url": "<string>",
"name": "<string>",
"synonyms": [
"<string>"
],
"image_url": "<string>",
"description": "<string>",
"data_sources": [
{
"name": "<string>"
}
],
"image_source": {
"url": "<string>",
"name": "<string>"
},
"products_url": "<string>",
"ingredient_id": "<string>",
"other_concerns": [
"<string>"
],
"common_concerns": [
{
"concern": "<string>",
"severity": "<string>"
}
],
"assessment_notes": [
"<string>"
],
"hazard_score_max": 0,
"hazard_score_min": 0,
"data_availability": "<string>",
"detailed_concerns": [
{
"category": "<string>",
"assessments": [
{
"concern": "<string>",
"reference": "<string>"
}
]
}
],
"score_explanation": {
"title": "<string>",
"assessment": "<string>"
},
"product_categories": [
{
"url": "<string>",
"category": "<string>",
"product_count": 0
}
],
"ewg_verified_criteria": {
"status": "<string>",
"statement": "<string>"
}
}Call it
curl --location 'https://us-prod.notte.cc/functions/6fa11af2-644e-4764-af0f-0a1983cbcc86/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "6fa11af2-644e-4764-af0f-0a1983cbcc86",
"variables": {
"ingredient_url": "https://www.ewg.org/skindeep/ingredients/705545-RETINYL_PALMITATE_VITAMIN_A_PALMITATE/"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="6fa11af2-644e-4764-af0f-0a1983cbcc86") — the "get_ingredient_details" function, which returns comprehensive EWG Skin Deep ingredient safety data from https://www.ewg.org, including scores, concerns, synonyms, references and VERIFIED criteria.. It takes ingredient_url (str). Return the result as structured JSON.