# Second-hand Deal Scanner ES — Vinted & Milanuncios vs eBay Sold (`jdepablos/second-hand-deal-scanner-es`) Actor

Finds underpriced live listings on Vinted & Milanuncios by cross-checking real eBay SOLD prices: deals ranked by estimated resale profit, with valuation stats attached. Built for resellers and AI agents.

- **URL**: https://apify.com/jdepablos/second-hand-deal-scanner-es.md
- **Developed by:** [Juan de Pablos](https://apify.com/jdepablos) (community)
- **Categories:** E-commerce, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $40.00 / 1,000 watched item scans

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## Second-hand Deal Scanner EU — Vinted, Wallapop & Milanuncios vs Real eBay Sold Prices

**One call = one item watched.** Give it any item ("Game Boy Micro") and a country (Spain, France, Germany, Italy or the UK): it scans live Vinted listings (plus Wallapop & Milanuncios in Spain), values the item from confirmed eBay **sold** prices on the local eBay site, and returns only the listings you can actually profit from — ranked by estimated net profit.

Most marketplace scrapers dump every listing on you. This Actor answers the question resellers actually have: **"Which of these is a real deal, and how much would I make?"**

### What you get per item

```json
{
  "query": "Game Boy Micro",
  "valuation": { "marketplace": "ebay.es", "median": 218.69, "n": 183, "confidence": "high", "currency": "EUR" },
  "deals": [
    {
      "source": "vinted", "title": "Game Boy micro en perfecto estado",
      "price": 100, "url": "https://www.vinted.es/items/...",
      "economics": {
        "estBuyTotal": 108.7, "estResaleNet": 162.92, "resaleShipping": 27.34,
        "estProfit": 54.22, "estMarginPct": 49.65, "verdict": "deal"
      }
    }
  ],
  "meta": { "listingsScanned": 67, "candidatesAfterFilters": 13,
    "filteredOut": { "titleMismatch": 21, "accessory": 3, "junk": 2, "suspiciouslyCheap": 5 } }
}
````

Real example above: 40 live listings scanned, 3 genuine deals found — a working console at €100 versus a €218.69 median of 183 confirmed sales.

### Why the deals are trustworthy

- **Valued against SOLD prices, not asking prices** — the resale value comes from confirmed eBay sales (median of up to 240 recent comps, cleaned of lots/for-parts/repro junk).
- **False-positive killers built in**: listings for a *different* product in the same family ("FIFA 2006 for GBA" when you watch a Game Boy Micro), accessories ("stand for...", "case for..."), and too-cheap-to-be-true mismatches (below 10% of median) are filtered out — each rejection is counted in `meta.filteredOut` so you can audit it.
- **Honest economics**: buy side includes Vinted buyer protection (~5% + €0.70) and shipping; sell side deducts marketplace fees (~13%) and real median shipping from the comps. All rates are overridable.
- **Per-source resilience**: if one source blocks or changes, you still get deals from the others, with the failure documented in `meta.sourceErrors`.

### Use cases

- **Resellers / flippers**: watch your 20 best-known items, run daily, buy only what clears your margin threshold.
- **AI agents**: one tool call = ranked arbitrage opportunities with the math already done.
- **Collectors**: get alerted when your grail shows up underpriced on Spanish second-hand markets.

### Input

| Field | Description |
|---|---|
| `query` | Item to watch, e.g. `"Game Boy Micro"` — use a canonical product name |
| `country` | `ES` (default), `FR`, `DE`, `IT`, `UK` — sets Vinted domain, eBay site and proxy country |
| `items` | Watchlist mode: up to 20 items per run with per-item overrides |
| `sources` | `vinted`, `milanuncios`, `wallapop` (all by default) |
| `marketplaceForComps` | eBay site for valuation (default `ebay.es`) |
| `marginMinPct` | Minimum estimated profit margin to report a deal (default 25) |
| `priceMax` | Ignore live listings above this price |
| `minTitleMatch` | Title relevance threshold 0-1 (default 0.75) |
| `priceSanityMinPct` | Listings below this % of median = different product (default 10) |
| `economics` | Override fee/shipping assumptions |

### Use with AI agents (MCP)

This Actor is exposed as a tool on the [Apify MCP Server](https://mcp.apify.com):

```json
{
  "mcpServers": {
    "deal-scanner-es": {
      "url": "https://mcp.apify.com?tools=jdepablos/second-hand-deal-scanner-es",
      "headers": { "Authorization": "Bearer <APIFY_TOKEN>" }
    }
  }
}
```

Pairs well with [eBay Sold Price Appraiser](https://apify.com/jdepablos/ebay-sold-price-appraiser) — same valuation engine, standalone appraisals.

### Pricing

Pay per event: **one flat fee per watched item scanned** — all sources, valuation and deal math included. Failed items are never charged.

### FAQ

**Why did my scan return 0 deals?** That's the product working: most live listings are fairly priced. Lower `marginMinPct` to see borderline candidates, and check `meta.filteredOut` to see what was rejected and why.

**Are the profit numbers guaranteed?** They're estimates: median resale minus realistic fees and shipping. Condition, completeness (box/charger) and negotiation move the final number. The comps and their URLs are in the valuation so you can verify before buying.

**Does it work outside Spain?** Yes — set `country` to FR, DE, IT or UK to scan the local Vinted against the local eBay sold prices. Wallapop and Milanuncios are Spain-only extras. Cross-country arbitrage (buy FR, sell DE) works by combining `country` with an explicit `marketplaceForComps`.

### More data tools by this developer

- [eBay Sold Price Appraiser — real market value from confirmed sales](https://apify.com/jdepablos/ebay-sold-price-appraiser)
- [Spanish Company Feed (BORME) — daily registry acts as JSON](https://apify.com/jdepablos/borme-company-feed)
- [Spain Public Auctions (BOE) — judicial auctions with market comparison](https://apify.com/jdepablos/spain-boe-auctions)
- [Trademark Watch (TMview) — new filings & opposition deadlines](https://apify.com/jdepablos/trademark-watch-tmview)

# Actor input Schema

## `query` (type: `string`):

Item you want deals for, e.g. 'Game Boy Micro'. Use a canonical product name — it drives both the source search and the eBay valuation. For multiple items use 'items'.

## `items` (type: `array`):

Up to 20 items per run. Each entry: {"query": "..."} plus any per-item overrides (priceMax, marginMinPct, sources, ...).

## `country` (type: `string`):

Market to scan. Determines the Vinted domain, the default eBay site for valuation and the proxy country. Wallapop & Milanuncios are Spain-only and are skipped elsewhere.

## `sources` (type: `array`):

Marketplaces to scan for live listings. Non-Spanish countries support Vinted only (others are skipped).

## `marketplaceForComps` (type: `string`):

Where resale value is computed from sold listings. Defaults to the eBay site of the selected country (keeps currencies consistent).

## `marginMinPct` (type: `integer`):

Only report listings whose estimated profit margin (vs estimated buy total) reaches this percentage.

## `priceMax` (type: `integer`):

Ignore live listings above this price (EUR).

## `condition` (type: `string`):

Restrict the eBay sold comps used for valuation.

## `minTitleMatch` (type: `string`):

0-1: fraction of query words that must appear in a listing title (source search relevance is loose — this kills false positives). Default 0.75.

## `priceSanityMinPct` (type: `integer`):

Listings priced below this % of the resale median are treated as a different product (accessory, single game, empty box), not a deal. Default 10.

## `maxListingsPerSource` (type: `integer`):

How many live listings to pull from each source per item.

## `strictClean` (type: `boolean`):

Drop lots/bundles/for-parts/repro listings on both sides (valuation comps AND live candidates). Recommended.

## `economics` (type: `object`):

Optional cost model overrides: {"resaleFeePct": 13, "vintedBuyerFeePct": 5, "vintedShippingEst": 3.5, "milanunciosShippingEst": 0, "wallapopBuyerFeePct": 5, "wallapopShippingEst": 4}.

## `proxy` (type: `object`):

Sources use DataDome — residential ES proxy is strongly recommended (default).

## Actor input object example

```json
{
  "query": "Game Boy Micro",
  "country": "ES",
  "marginMinPct": 25,
  "condition": "any",
  "minTitleMatch": "0.75",
  "priceSanityMinPct": 10,
  "maxListingsPerSource": 40,
  "strictClean": true,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "ES"
  }
}
```

# 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 = {
    "query": "Game Boy Micro",
    "proxy": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "ES"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("jdepablos/second-hand-deal-scanner-es").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 = {
    "query": "Game Boy Micro",
    "proxy": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "ES",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("jdepablos/second-hand-deal-scanner-es").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 '{
  "query": "Game Boy Micro",
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "ES"
  }
}' |
apify call jdepablos/second-hand-deal-scanner-es --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=jdepablos/second-hand-deal-scanner-es",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Second-hand Deal Scanner ES — Vinted & Milanuncios vs eBay Sold",
        "description": "Finds underpriced live listings on Vinted & Milanuncios by cross-checking real eBay SOLD prices: deals ranked by estimated resale profit, with valuation stats attached. Built for resellers and AI agents.",
        "version": "0.3",
        "x-build-id": "9hJT2jkehKqwEQyhN"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/jdepablos~second-hand-deal-scanner-es/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-jdepablos-second-hand-deal-scanner-es",
                "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/jdepablos~second-hand-deal-scanner-es/runs": {
            "post": {
                "operationId": "runs-sync-jdepablos-second-hand-deal-scanner-es",
                "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/jdepablos~second-hand-deal-scanner-es/run-sync": {
            "post": {
                "operationId": "run-sync-jdepablos-second-hand-deal-scanner-es",
                "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",
                "properties": {
                    "query": {
                        "title": "Item to watch",
                        "type": "string",
                        "description": "Item you want deals for, e.g. 'Game Boy Micro'. Use a canonical product name — it drives both the source search and the eBay valuation. For multiple items use 'items'."
                    },
                    "items": {
                        "title": "Watchlist (optional)",
                        "type": "array",
                        "description": "Up to 20 items per run. Each entry: {\"query\": \"...\"} plus any per-item overrides (priceMax, marginMinPct, sources, ...)."
                    },
                    "country": {
                        "title": "Country",
                        "enum": [
                            "ES",
                            "FR",
                            "DE",
                            "IT",
                            "UK"
                        ],
                        "type": "string",
                        "description": "Market to scan. Determines the Vinted domain, the default eBay site for valuation and the proxy country. Wallapop & Milanuncios are Spain-only and are skipped elsewhere.",
                        "default": "ES"
                    },
                    "sources": {
                        "title": "Sources to scan",
                        "type": "array",
                        "description": "Marketplaces to scan for live listings. Non-Spanish countries support Vinted only (others are skipped).",
                        "items": {
                            "type": "string",
                            "enum": [
                                "vinted",
                                "milanuncios",
                                "wallapop"
                            ],
                            "enumTitles": [
                                "Vinted (ES)",
                                "Milanuncios",
                                "Wallapop"
                            ]
                        }
                    },
                    "marketplaceForComps": {
                        "title": "eBay site for valuation",
                        "enum": [
                            "ebay.es",
                            "ebay.com",
                            "ebay.co.uk",
                            "ebay.de",
                            "ebay.fr",
                            "ebay.it"
                        ],
                        "type": "string",
                        "description": "Where resale value is computed from sold listings. Defaults to the eBay site of the selected country (keeps currencies consistent)."
                    },
                    "marginMinPct": {
                        "title": "Min profit margin %",
                        "minimum": 0,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Only report listings whose estimated profit margin (vs estimated buy total) reaches this percentage.",
                        "default": 25
                    },
                    "priceMax": {
                        "title": "Max listing price",
                        "type": "integer",
                        "description": "Ignore live listings above this price (EUR)."
                    },
                    "condition": {
                        "title": "Condition (for valuation)",
                        "enum": [
                            "any",
                            "new",
                            "used"
                        ],
                        "type": "string",
                        "description": "Restrict the eBay sold comps used for valuation.",
                        "default": "any"
                    },
                    "minTitleMatch": {
                        "title": "Title match threshold",
                        "type": "string",
                        "description": "0-1: fraction of query words that must appear in a listing title (source search relevance is loose — this kills false positives). Default 0.75.",
                        "default": "0.75"
                    },
                    "priceSanityMinPct": {
                        "title": "Price sanity floor %",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Listings priced below this % of the resale median are treated as a different product (accessory, single game, empty box), not a deal. Default 10.",
                        "default": 10
                    },
                    "maxListingsPerSource": {
                        "title": "Max listings per source",
                        "minimum": 5,
                        "maximum": 96,
                        "type": "integer",
                        "description": "How many live listings to pull from each source per item.",
                        "default": 40
                    },
                    "strictClean": {
                        "title": "Strict cleaning",
                        "type": "boolean",
                        "description": "Drop lots/bundles/for-parts/repro listings on both sides (valuation comps AND live candidates). Recommended.",
                        "default": true
                    },
                    "economics": {
                        "title": "Economics overrides",
                        "type": "object",
                        "description": "Optional cost model overrides: {\"resaleFeePct\": 13, \"vintedBuyerFeePct\": 5, \"vintedShippingEst\": 3.5, \"milanunciosShippingEst\": 0, \"wallapopBuyerFeePct\": 5, \"wallapopShippingEst\": 4}."
                    },
                    "proxy": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Sources use DataDome — residential ES proxy is strongly recommended (default).",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "ES"
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
