# Cheapest Way to Send Money to India: Compare Fees and Rates

**Use case:** 

Find the cheapest way to send money to India. Compare the true cost of sending US dollars, British pounds, euros, Canadian dollars and Australian dollars to Indian rupees across Wise, Remitly, WorldRemit, Western Union, Instarem, OFX, State Bank of India and major banks. See fees, hidden exchange rate markups, rupees received and delivery time, ranked cheapest first.

## Input

```json
{
  "sourceCurrencies": [
    "USD",
    "GBP",
    "EUR",
    "CAD",
    "AUD"
  ],
  "targetCurrencies": [
    "INR"
  ],
  "amounts": [
    1000
  ],
  "amountType": "send",
  "bestQuotePerProvider": true
}
```

## Output

```json
{
  "route": {
    "label": "Route"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "provider": {
    "label": "Provider"
  },
  "providerType": {
    "label": "Type"
  },
  "sendAmount": {
    "label": "You send",
    "format": "number"
  },
  "receivedAmount": {
    "label": "Recipient gets",
    "format": "number"
  },
  "fee": {
    "label": "Fee",
    "format": "number"
  },
  "markupPercent": {
    "label": "Rate markup %",
    "format": "number"
  },
  "totalCost": {
    "label": "Total cost",
    "format": "number"
  },
  "totalCostPercent": {
    "label": "Total cost %",
    "format": "number"
  },
  "extraCostVsCheapest": {
    "label": "Extra vs cheapest",
    "format": "number"
  },
  "deliveryEstimate": {
    "label": "Delivery"
  },
  "isCheapest": {
    "label": "Cheapest",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Money Transfer Cost Comparison](https://apify.com/precious_bathmat/money-transfer-cost-comparison.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/precious_bathmat/money-transfer-cost-comparison.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/precious_bathmat/money-transfer-cost-comparison.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
