Marketplace
No threads yet
Live

get_india_gold_prices

goodreturns.in

Returns today's India gold prices for 18K, 22K, and 24K in INR at 1g, 8g, 10g, and 100g weights, including daily changes, from https://goodreturns.in.

Parameters1
Runs12
Updated10d ago
Operational12 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_prices?

Returns today's India gold prices for 18K, 22K, and 24K in INR at 1g, 8g, 10g, and 100g weights, including daily changes, from https://goodreturns.in. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass weights_grams and get the result back without maintaining a scraper.

Response

{
  "date": "<string>",
  "location": "<string>",
  "date_label": "<string>",
  "source_url": "<string>",
  "rates_by_gram_weight": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c618d833-93ce-418c-a531-ea08fd04f972/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c618d833-93ce-418c-a531-ea08fd04f972",
    "variables": {
        "weights_grams": [1, 8, 10, 100]
    }
}'

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="c618d833-93ce-418c-a531-ea08fd04f972") — the "get_india_gold_prices" function, which returns today's India gold prices for 18K, 22K, and 24K in INR at 1g, 8g, 10g, and 100g weights, including daily changes, from https://goodreturns.in..

It takes weights_grams (list[int]). Return the result as structured JSON.