Marketplace
No threads yet
Live

get_india_gold_price_trend

goodreturns.in

Returns 22K and 24K India gold rates in INR for each of the last 10 days, with daily changes, from https://goodreturns.in. Use it for short-term gold-price trend analysis.

Parameters1
Runs11
Updated10d ago
Operational11 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_india_gold_price_trend?

Returns 22K and 24K India gold rates in INR for each of the last 10 days, with daily changes, from https://goodreturns.in. Use it for short-term gold-price trend analysis. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass days and get the result back without maintaining a scraper.

Response

{
  "rates": [
    {
      "date": "<string>",
      "currency": "<string>",
      "gold_22k": {
        "rate_inr": 0,
        "purity_karat": 0,
        "change_direction": "<string>",
        "daily_change_inr": 0
      },
      "gold_24k": {
        "rate_inr": 0,
        "purity_karat": 0,
        "change_direction": "<string>",
        "daily_change_inr": 0
      },
      "date_label": "<string>",
      "weight_grams": 0
    }
  ],
  "location": "<string>",
  "source_url": "<string>",
  "days_returned": 0,
  "days_requested": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e841f17e-779e-417c-8471-d50aec0faec0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e841f17e-779e-417c-8471-d50aec0faec0",
    "variables": {
        "days": 10
    }
}'

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="e841f17e-779e-417c-8471-d50aec0faec0") — the "get_india_gold_price_trend" function, which returns 22K and 24K India gold rates in INR for each of the last 10 days, with daily changes, from https://goodreturns.in. Use it for short-term gold-price trend analysis..

It takes days (int). Return the result as structured JSON.