# Germany Machinery Trade Data Extractor

**Use case:** 

Extract Germany UN Comtrade machinery import and export rows for HS 84 and 85 with values and quantities.

## Input

```json
{
  "reporterCodes": [
    "276"
  ],
  "partnerCodes": [
    "0"
  ],
  "periods": [
    "2023",
    "2022",
    "2021"
  ],
  "commodityCodes": [
    "84",
    "85"
  ],
  "flowCodes": [
    "M",
    "X"
  ],
  "frequency": "A",
  "classification": "HS",
  "tradeType": "C",
  "includeDescriptions": true,
  "maxRows": 20,
  "requestDelayMillis": 250,
  "failOnApiError": false
}
```

## Output

```json
{
  "period": {
    "label": "Period"
  },
  "reporterName": {
    "label": "Reporter"
  },
  "partnerName": {
    "label": "Partner"
  },
  "flowName": {
    "label": "Flow"
  },
  "commodityCode": {
    "label": "HS code"
  },
  "commodityName": {
    "label": "Commodity"
  },
  "tradeValueUsd": {
    "label": "Trade value USD"
  },
  "cifValueUsd": {
    "label": "CIF value USD"
  },
  "fobValueUsd": {
    "label": "FOB value USD"
  },
  "quantity": {
    "label": "Quantity"
  },
  "quantityUnit": {
    "label": "Unit"
  },
  "netWeightKg": {
    "label": "Net weight kg"
  },
  "sourceUrl": {
    "label": "Source URL"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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