get_ftspcc_monthly_commodity_country_report
tradestat.commerce.gov.inFetches the FTSPCC Commodity x Country wise (Monthly) report from https://tradestat.commerce.gov.in for export or import trade. Returns month-wise records with all table fields, including Rs. Crores and US$ Millions values for the selected commodity-country pair and date range.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_ftspcc_monthly_commodity_country_report?
Fetches the FTSPCC Commodity x Country wise (Monthly) report from https://tradestat.commerce.gov.in for export or import trade. Returns month-wise records with all table fields, including Rs. Crores and US$ Millions values for the selected commodity-country pair and date range. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass trade_type, from_month, from_year, to_month, to_year, commodity, country, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"country": "<string>",
"records": [
{}
],
"commodity": "<string>",
"trade_type": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/8918566c-3c57-4656-bd3e-61756a1976d7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8918566c-3c57-4656-bd3e-61756a1976d7",
"variables": {
"trade_type": "export",
"from_month": 1,
"from_year": 2026,
"to_month": 6,
"to_year": 2026,
"commodity": "AC, REFRIGERATION MACHNRY ETC",
"country": "AFGHANISTAN",
"timeout_seconds": 45
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="8918566c-3c57-4656-bd3e-61756a1976d7") — the "get_ftspcc_monthly_commodity_country_report" function, which fetches the FTSPCC Commodity x Country wise (Monthly) report from https://tradestat.commerce.gov.in for export or import trade. Returns month-wise records with all table fields, including Rs. Crores and US$ Millions values for the selected commodity-country pair and date range.. It takes trade_type (str), from_month (int), from_year (int), to_month (int), to_year (int), commodity (str), country (str), timeout_seconds (int). Return the result as structured JSON.