get_meidb_monthly_commodity_report
tradestat.commerce.gov.inFetches Monthly Export Import Data Bank (MEIDB) commodity-wise report data from https://tradestat.commerce.gov.in for a selected month and year comparison period. Returns dynamic report columns and row-level trade statistics, with optional filtering to one HS code.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_meidb_monthly_commodity_report?
Fetches Monthly Export Import Data Bank (MEIDB) commodity-wise report data from https://tradestat.commerce.gov.in for a selected month and year comparison period. Returns dynamic report columns and row-level trade statistics, with optional filtering to one HS code. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass month, year, trade_type, hs_level, hs_code, value_type, year_type, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"records": [
{}
],
"record_columns": [
"<string>"
],
"source_columns": [
"<string>"
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/d52a8ae9-849e-4010-9b8a-635600ef587a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d52a8ae9-849e-4010-9b8a-635600ef587a",
"variables": {
"month": 6,
"year": 2026,
"trade_type": "export",
"hs_level": 2,
"hs_code": "",
"value_type": "usd_million",
"year_type": "financial",
"timeout_seconds": 60
}
}'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="d52a8ae9-849e-4010-9b8a-635600ef587a") — the "get_meidb_monthly_commodity_report" function, which fetches Monthly Export Import Data Bank (MEIDB) commodity-wise report data from https://tradestat.commerce.gov.in for a selected month and year comparison period. Returns dynamic report columns and row-level trade statistics, with optional filtering to one HS code.. It takes month (int), year (int), trade_type (str), hs_level (int), hs_code (str), value_type (str), year_type (str), timeout_seconds (int). Return the result as structured JSON.