Live
search_ingredients
ewg.orgSearches cosmetic ingredients in EWG Skin Deep at https://www.ewg.org and returns names, hazard score ranges, data availability ratings, IDs and canonical URLs.
Parameters2
Runs6
Updated1d ago
Degraded6 runs · 66.6% 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 search_ingredients?
Searches cosmetic ingredients in EWG Skin Deep at https://www.ewg.org and returns names, hazard score ranges, data availability ratings, IDs and canonical URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit and get the result back without maintaining a scraper.
Response
{
"query": "<string>",
"has_more": true,
"ingredients": [
{
"url": "<string>",
"name": "<string>",
"ingredient_id": "<string>",
"hazard_score_max": 0,
"hazard_score_min": 0,
"data_availability": "<string>"
}
],
"pages_fetched": 0,
"total_matches": 0,
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/e73822d6-3e09-4c01-8679-7368c5f81c12/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e73822d6-3e09-4c01-8679-7368c5f81c12",
"variables": {
"query": "water",
"limit": 20
}
}'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="e73822d6-3e09-4c01-8679-7368c5f81c12") — the "search_ingredients" function, which searches cosmetic ingredients in EWG Skin Deep at https://www.ewg.org and returns names, hazard score ranges, data availability ratings, IDs and canonical URLs.. It takes query (str), limit (int). Return the result as structured JSON.