# Scrape India-China Import Trade Data

**Use case:** 

Extract bilateral import trade data between India and China from UN Comtrade — HS commodity codes, product descriptions, trade value (USD), net weight, quantity

## Input

```json
{
  "reporterCountry": "India",
  "partnerCountry": "China",
  "hsCode": "",
  "flow": "imports",
  "years": "2023",
  "frequency": "annual",
  "maxResults": 25
}
```

## Output

```json
{
  "reporter_country": {
    "label": "Reporter",
    "format": "text"
  },
  "partner_country": {
    "label": "Partner",
    "format": "text"
  },
  "hs_code": {
    "label": "HS Code",
    "format": "text"
  },
  "hs_description": {
    "label": "Description",
    "format": "text"
  },
  "trade_value_usd": {
    "label": "Trade Value (USD)",
    "format": "text"
  },
  "net_weight_kg": {
    "label": "Net Weight (kg)",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "text"
  },
  "flow": {
    "label": "Flow",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [UN Comtrade Trade Data Scraper - Bilateral Trade by HS Code](https://apify.com/thirdwatch/trade-data-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/thirdwatch/trade-data-scraper) to learn more, explore other use cases, and run it yourself.