# Exchange Rate & Currency Converter (`moving_beacon-owner1/my-actor-82`) Actor

Fetch live and historical foreign exchange rates for 160+ world currencies. Convert amounts, build time-series charts, and compare rates across base currencies — all powered by central bank data from the ECB, Federal Reserve, BOJ, and 30+ official sources.

- **URL**: https://apify.com/moving\_beacon-owner1/my-actor-82.md
- **Developed by:** [Jamshaid Arif](https://apify.com/moving_beacon-owner1) (community)
- **Categories:** Automation, Developer tools, Integrations
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## 💱 Exchange Rate & Currency Converter

**Fetch live and historical foreign exchange rates for 160+ world currencies.** Convert amounts, build time-series charts, and compare rates across base currencies — all powered by central bank data from the ECB, Federal Reserve, BOJ, and 30+ official sources.

Free. No API key. No login needed.

---

### What does this actor do?

This actor fetches exchange rate data from two free, open APIs — [Frankfurter](https://frankfurter.dev) and [Open Exchange Rates](https://open.er-api.com). Both source data from central banks and are completely free with no authentication required.

**Use it to:**

- Get real-time exchange rates for any currency pair
- Convert amounts between currencies (e.g., 1000 USD → EUR, GBP, JPY)
- Fetch historical rates for any date back to January 1999
- Build time-series data for currency trend analysis
- Compare how different base currencies perform against targets
- Power pricing engines, dashboards, and financial apps

---

### Scrape modes

| Mode | What it does | Required input |
|------|-------------|----------------|
| **Latest Rates** | Current exchange rates for a base currency | `base_currency` |
| **Historical Rates** | Rates on a specific past date | `base_currency`, `date` |
| **Time Series** | Rates over a date range (daily/weekly/monthly) | `base_currency`, `date_from` |
| **Convert Amount** | Convert a specific amount to target currencies | `base_currency`, `amount`, `target_currencies` |
| **Multi-Base Comparison** | Latest rates from multiple base currencies side-by-side | `multi_bases` |
| **List Currencies** | All 160+ available currency codes and names | None |

---

### Input examples

#### Example 1: Get latest USD rates for major currencies

```json
{
    "scrape_mode": "latest",
    "base_currency": "USD",
    "target_currencies": "EUR, GBP, JPY, CNY, INR, PKR, CAD, AUD, CHF, BRL"
}
````

#### Example 2: Historical rates on a specific date

```json
{
    "scrape_mode": "historical",
    "base_currency": "EUR",
    "target_currencies": "USD, GBP, JPY",
    "date": "2024-01-15"
}
```

#### Example 3: Monthly EUR/USD time series for 2024

```json
{
    "scrape_mode": "time_series",
    "base_currency": "EUR",
    "target_currencies": "USD",
    "date_from": "2024-01-01",
    "date_to": "2024-12-31",
    "group_by": "month"
}
```

#### Example 4: Convert 5000 USD to multiple currencies

```json
{
    "scrape_mode": "convert",
    "base_currency": "USD",
    "target_currencies": "EUR, GBP, JPY, INR, PKR, AED",
    "amount": 5000
}
```

#### Example 5: Compare USD vs EUR vs GBP as base currencies

```json
{
    "scrape_mode": "multi_base",
    "multi_bases": "USD, EUR, GBP, JPY, CNY",
    "target_currencies": "CAD, AUD, CHF, INR, PKR"
}
```

#### Example 6: List all available currencies

```json
{
    "scrape_mode": "currencies"
}
```

***

### Output format

#### Latest / Historical rate record

```json
{
    "type": "exchange_rate",
    "base": "USD",
    "target": "EUR",
    "rate": 0.9215,
    "rate_open_er": 0.9218,
    "inverse_rate": 1.085187,
    "date": "2026-04-04",
    "scraped_at": "2026-04-05T12:00:00+00:00"
}
```

#### Conversion record

```json
{
    "type": "conversion",
    "from_currency": "USD",
    "to_currency": "EUR",
    "amount": 5000,
    "rate": 0.9215,
    "converted_amount": 4607.5,
    "formatted": "5,000.00 USD = 4,607.50 EUR",
    "date": "2026-04-04"
}
```

#### Time series record

```json
{
    "type": "time_series_rate",
    "base": "EUR",
    "target": "USD",
    "rate": 1.0856,
    "date": "2024-01-01",
    "period": "2024-01-01 to 2024-12-31",
    "group_by": "month",
    "total_data_points": 12
}
```

#### Multi-base comparison record

```json
{
    "type": "multi_base_rate",
    "base": "USD",
    "date": "2026-04-04",
    "CAD": 1.3542,
    "AUD": 1.5231,
    "CHF": 0.8876,
    "INR": 83.42,
    "PKR": 278.50
}
```

#### Currency list record

```json
{
    "type": "currency",
    "code": "USD",
    "name": "United States Dollar",
    "total_currencies": 160
}
```

***

### Popular currency codes

| Code | Currency | | Code | Currency |
|------|----------|-|------|----------|
| `USD` | US Dollar | | `INR` | Indian Rupee |
| `EUR` | Euro | | `PKR` | Pakistani Rupee |
| `GBP` | British Pound | | `BRL` | Brazilian Real |
| `JPY` | Japanese Yen | | `MXN` | Mexican Peso |
| `CNY` | Chinese Yuan | | `KRW` | South Korean Won |
| `CAD` | Canadian Dollar | | `TRY` | Turkish Lira |
| `AUD` | Australian Dollar | | `ZAR` | South African Rand |
| `CHF` | Swiss Franc | | `AED` | UAE Dirham |
| `SGD` | Singapore Dollar | | `SAR` | Saudi Riyal |
| `HKD` | Hong Kong Dollar | | `BTC` | Bitcoin (Open ER) |

Use **List Currencies** mode to see all 160+ supported codes.

***

### Data sources

This actor uses two complementary APIs for maximum reliability:

| API | Source | Currencies | Historical | Key Required |
|-----|--------|-----------|-----------|-------------|
| **Frankfurter** | 30+ central banks (ECB, Fed, BOJ…) | 160+ | From 1999 | No |
| **Open ER API** | Central banks + commercial sources | 160+ | Limited | No |

Frankfurter is the primary source. Open ER API is used as a fallback and for cross-validation on latest rates.

***

### Time series grouping

When fetching time series data, use `group_by` to downsample:

| Group | Returns | Best for |
|-------|---------|----------|
| `daily` | Every business day | Short ranges (1-3 months) |
| `week` | Weekly averages | Medium ranges (3-12 months) |
| `month` | Monthly averages | Long ranges (1-5 years) |
| `quarter` | Quarterly averages | Multi-year analysis |
| `year` | Yearly averages | Decade-scale trends |

> **Tip:** For large date ranges, use `month` or `quarter` to keep response sizes manageable.

***

### Cost and performance

| Mode | Records | Time | Credits |
|------|---------|------|---------|
| Latest (10 currencies) | 10 | ~3 sec | < $0.01 |
| Latest (all currencies) | 160 | ~3 sec | < $0.01 |
| Historical (1 date) | 10 | ~3 sec | < $0.01 |
| Time series (1 year, monthly) | 12 | ~5 sec | < $0.01 |
| Convert (10 targets) | 10 | ~3 sec | < $0.01 |
| Multi-base (5 bases) | 5 | ~8 sec | < $0.01 |

***

### Scheduling ideas

#### Daily rate tracker

Schedule a daily run to build a rate history database:

```json
{
    "scrape_mode": "latest",
    "base_currency": "USD",
    "target_currencies": "EUR, GBP, JPY, CNY, INR, PKR"
}
```

→ Connect to Google Sheets for an auto-updating exchange rate dashboard.

#### Weekly currency report

```json
{
    "scrape_mode": "time_series",
    "base_currency": "USD",
    "target_currencies": "EUR, GBP",
    "date_from": "auto_last_7_days",
    "group_by": "daily"
}
```

***

### Tips

- **Leave `target_currencies` empty** to get rates for all 160+ currencies at once.
- **Use `inverse_rate`** to quickly see how much 1 unit of the target buys in the base currency.
- **Cross-validate** — latest rates include both Frankfurter and Open ER values for comparison.
- **Historical data** goes back to January 4, 1999 (start of ECB data).
- **Weekend dates** return the most recent Friday's rates (forex markets are closed on weekends).
- **Crypto rates** (BTC, ETH) are available through Open ER API but not Frankfurter.
- **The APIs are free** but please don't schedule runs more often than every 15 minutes.

***

### Limitations

- Exchange rates are indicative midpoint rates, not live trading rates.
- Not suitable for forex trading or cross-currency settlement processing.
- No buy/sell spread data — only midpoint rates.
- Historical data starts from 1999-01-04 (ECB inception date).
- Weekend and holiday dates return the most recent business day's rates.
- Cryptocurrency support is limited to the Open ER API fallback.
- Rates update daily (Frankfurter) or hourly (Open ER).

***

### Changelog

#### v1.0.0 (2026-04-05)

- Initial release
- 6 scrape modes: latest, historical, time series, convert, multi-base comparison, currency list
- Dual API sourcing (Frankfurter + Open ER) with automatic fallback
- Cross-validation on latest rates
- Time series grouping (daily/weekly/monthly/quarterly/yearly)
- Inverse rate calculation
- Formatted conversion strings
- 160+ currencies supported

# Actor input Schema

## `scrape_mode` (type: `string`):

What type of exchange rate data to fetch.

## `base_currency` (type: `string`):

Base currency code (3-letter ISO 4217). Examples: USD, EUR, GBP, JPY, CNY, INR, PKR.

## `target_currencies` (type: `string`):

Comma-separated target currency codes. Leave empty for all available currencies. Examples: EUR,GBP,JPY,CNY,INR,PKR,CAD,AUD.

## `date` (type: `string`):

Specific date for historical rates (YYYY-MM-DD). Used in Historical mode. Example: 2025-01-15.

## `date_from` (type: `string`):

Start date for time series (YYYY-MM-DD). Used in Time Series mode. Data available from 1999-01-04.

## `date_to` (type: `string`):

End date for time series (YYYY-MM-DD). Used in Time Series mode. Leave empty for today.

## `group_by` (type: `string`):

Downsample time series data (Time Series mode only).

## `amount` (type: `number`):

Amount to convert (Convert mode). Example: 1000.

## `multi_bases` (type: `string`):

Comma-separated base currencies for Multi-Base mode. Example: USD,EUR,GBP,JPY — fetches latest rates for each as base.

## `proxy_configuration` (type: `object`):

Proxy settings. The APIs are free and rarely block.

## Actor input object example

```json
{
  "scrape_mode": "latest",
  "base_currency": "USD",
  "target_currencies": "",
  "date": "",
  "date_from": "",
  "date_to": "",
  "group_by": "daily",
  "amount": 1,
  "multi_bases": ""
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "base_currency": "USD"
};

// Run the Actor and wait for it to finish
const run = await client.actor("moving_beacon-owner1/my-actor-82").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "base_currency": "USD" }

# Run the Actor and wait for it to finish
run = client.actor("moving_beacon-owner1/my-actor-82").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "base_currency": "USD"
}' |
apify call moving_beacon-owner1/my-actor-82 --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=moving_beacon-owner1/my-actor-82",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Exchange Rate & Currency Converter",
        "description": "Fetch live and historical foreign exchange rates for 160+ world currencies. Convert amounts, build time-series charts, and compare rates across base currencies — all powered by central bank data from the ECB, Federal Reserve, BOJ, and 30+ official sources.",
        "version": "0.0",
        "x-build-id": "GSi3GNymCRNvV6Z1o"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/moving_beacon-owner1~my-actor-82/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-moving_beacon-owner1-my-actor-82",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/moving_beacon-owner1~my-actor-82/runs": {
            "post": {
                "operationId": "runs-sync-moving_beacon-owner1-my-actor-82",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/moving_beacon-owner1~my-actor-82/run-sync": {
            "post": {
                "operationId": "run-sync-moving_beacon-owner1-my-actor-82",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "scrape_mode"
                ],
                "properties": {
                    "scrape_mode": {
                        "title": "Scrape Mode",
                        "enum": [
                            "latest",
                            "historical",
                            "time_series",
                            "convert",
                            "multi_base",
                            "currencies"
                        ],
                        "type": "string",
                        "description": "What type of exchange rate data to fetch.",
                        "default": "latest"
                    },
                    "base_currency": {
                        "title": "Base Currency",
                        "type": "string",
                        "description": "Base currency code (3-letter ISO 4217). Examples: USD, EUR, GBP, JPY, CNY, INR, PKR.",
                        "default": "USD"
                    },
                    "target_currencies": {
                        "title": "Target Currencies",
                        "type": "string",
                        "description": "Comma-separated target currency codes. Leave empty for all available currencies. Examples: EUR,GBP,JPY,CNY,INR,PKR,CAD,AUD.",
                        "default": ""
                    },
                    "date": {
                        "title": "Date",
                        "type": "string",
                        "description": "Specific date for historical rates (YYYY-MM-DD). Used in Historical mode. Example: 2025-01-15.",
                        "default": ""
                    },
                    "date_from": {
                        "title": "Date From",
                        "type": "string",
                        "description": "Start date for time series (YYYY-MM-DD). Used in Time Series mode. Data available from 1999-01-04.",
                        "default": ""
                    },
                    "date_to": {
                        "title": "Date To",
                        "type": "string",
                        "description": "End date for time series (YYYY-MM-DD). Used in Time Series mode. Leave empty for today.",
                        "default": ""
                    },
                    "group_by": {
                        "title": "Group By",
                        "enum": [
                            "daily",
                            "week",
                            "month",
                            "quarter",
                            "year"
                        ],
                        "type": "string",
                        "description": "Downsample time series data (Time Series mode only).",
                        "default": "daily"
                    },
                    "amount": {
                        "title": "Amount",
                        "minimum": 0,
                        "type": "number",
                        "description": "Amount to convert (Convert mode). Example: 1000.",
                        "default": 1
                    },
                    "multi_bases": {
                        "title": "Multiple Base Currencies",
                        "type": "string",
                        "description": "Comma-separated base currencies for Multi-Base mode. Example: USD,EUR,GBP,JPY — fetches latest rates for each as base.",
                        "default": ""
                    },
                    "proxy_configuration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings. The APIs are free and rarely block."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
