Live
get_monthly_gold_history
goodreturns.inReturns recent monthly 22K and 24K gold summaries for a selected Indian city from https://goodreturns.in, including open, close, highs, lows, dates, and trend percentages.
Parameters3
Runs5
Updated3d ago
Operational5 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_monthly_gold_history?
Returns recent monthly 22K and 24K gold summaries for a selected Indian city from https://goodreturns.in, including open, close, highs, lows, dates, and trend percentages. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city, months, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"city": "<string>",
"currency": "<string>",
"city_slug": "<string>",
"summaries": [
{
"month": "<string>",
"gold_22k": {
"lowest_date": "<string>",
"closing_date": "<string>",
"highest_date": "<string>",
"opening_date": "<string>",
"purity_karat": 0,
"trend_percent": 0,
"trend_direction": "<string>",
"lowest_rate_inr_per_gram": 0,
"closing_rate_inr_per_gram": 0,
"highest_rate_inr_per_gram": 0,
"opening_rate_inr_per_gram": 0
},
"gold_24k": {
"lowest_date": "<string>",
"closing_date": "<string>",
"highest_date": "<string>",
"opening_date": "<string>",
"purity_karat": 0,
"trend_percent": 0,
"trend_direction": "<string>",
"lowest_rate_inr_per_gram": 0,
"closing_rate_inr_per_gram": 0,
"highest_rate_inr_per_gram": 0,
"opening_rate_inr_per_gram": 0
},
"month_label": "<string>"
}
],
"source_url": "<string>",
"weight_grams": 0,
"months_returned": 0,
"months_requested": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ccfc05c9-af4f-4ffd-a208-52426d88bfff/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ccfc05c9-af4f-4ffd-a208-52426d88bfff",
"variables": {
"city": "chennai",
"months": 7,
"timeout_seconds": 30
}
}'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="ccfc05c9-af4f-4ffd-a208-52426d88bfff") — the "get_monthly_gold_history" function, which returns recent monthly 22K and 24K gold summaries for a selected Indian city from https://goodreturns.in, including open, close, highs, lows, dates, and trend percentages.. It takes city (str), months (int), timeout_seconds (int). Return the result as structured JSON.