# arXiv Papers Scraper (`crawlerbros/arxiv-papers-scraper`) Actor

Scrape academic preprints from arXiv.org by keyword, author, or category. Returns clean records with title, authors, abstract, categories, PDF URL, DOI. HTTP-only via the public arXiv API. No login, no proxy.

- **URL**: https://apify.com/crawlerbros/arxiv-papers-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Developer tools, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 20 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $1.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## arXiv Papers Scraper

Search arXiv.org — the world's largest open-access archive of scientific preprints (2.5M+ papers across CS, math, physics, biology, finance, economics) — and return clean structured records for every match. HTTP-only via the public arXiv API. No login, no cookies, no proxy.

### What this actor does

- Queries the arXiv API (`https://export.arxiv.org/api/query`) by keyword, author, and/or category
- Parses the Atom XML response into one structured JSON record per paper
- Filters by date range, DOI presence, abstract length, abstract keyword
- Sorts by relevance, submitted-date, or last-updated-date
- Walks paginated results until `maxItems` is reached
- Respects arXiv's 1-request-per-3-seconds rate limit

### Output per paper

- `arxivId` — e.g. `2401.12345`
- `title`, `abstract`, `abstractWordCount`
- `authors[]`, `authorCount`, `affiliations[]`
- `categories[]`, `primaryCategory` — e.g. `cs.LG`
- `submittedAt`, `updatedAt` — ISO-8601 UTC
- `doi` — when published in a journal
- `journalRef` — full citation
- `comment` — author's note (e.g. "15 pages, 5 figures")
- `pdfUrl` — direct PDF download link
- `htmlUrl` — abstract page on arXiv.org
- `recordType: "paper"`, `scrapedAt`

Empty fields are omitted (no nulls).

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `searchQuery` | string | `"large language models"` | Free-text query against title + abstract + authors |
| `categories` | array | `[]` | arXiv subject codes (e.g. `cs.LG`, `stat.ML`). 50+ choices in the dropdown |
| `authorContains` | string | – | Filter by author name substring |
| `sortBy` | enum | `submittedDate` | `relevance` / `submittedDate` / `lastUpdatedDate` |
| `sortOrder` | enum | `descending` | `descending` (newest first) / `ascending` |
| `dateRangeFrom` | string | – | Drop papers submitted before this ISO date |
| `dateRangeTo` | string | – | Drop papers submitted after this ISO date |
| `maxItems` | int | `50` | Hard cap on emitted papers (1–5000) |
| `includeDoiOnly` | bool | `false` | Drop papers without a DOI (typically pre-publication) |
| `minAbstractLength` | int | – | Drop papers with abstracts shorter than N characters |
| `abstractContains` | string | – | Only emit papers whose abstract contains this substring |

#### Example: latest LLM papers

```json
{
  "searchQuery": "large language models",
  "categories": ["cs.CL", "cs.LG"],
  "sortBy": "submittedDate",
  "maxItems": 100
}
````

#### Example: papers by a specific author

```json
{
  "authorContains": "Yann LeCun",
  "sortBy": "submittedDate",
  "maxItems": 50
}
```

#### Example: published papers (DOI required)

```json
{
  "searchQuery": "transformer",
  "categories": ["cs.LG"],
  "includeDoiOnly": true,
  "minAbstractLength": 200,
  "dateRangeFrom": "2024-01-01"
}
```

#### Example: niche query

```json
{
  "searchQuery": "diffusion model",
  "categories": ["cs.CV"],
  "abstractContains": "image generation",
  "sortBy": "relevance",
  "maxItems": 25
}
```

### Use cases

- **AI/ML research tracking** — daily run on `cs.LG` + `cs.AI` to surface new methods
- **Literature review automation** — feed every paper matching your query into your RAG index
- **Author following** — watch a specific researcher's new submissions
- **Trend analysis** — count papers per topic over time to chart research interest
- **Citation database** — pair with Crossref/DOI lookup for full bibliographic records
- **Academic content marketing** — find papers citing techniques your tool implements

### FAQ

**Does it require a login or cookies?**  No. arXiv's API is fully public.

**Is a proxy needed?**  No. arXiv accepts requests from any IP. The actor honors arXiv's 3-seconds-between-requests rate limit by default.

**How fresh is the data?**  Real-time. arXiv typically posts new papers within hours of submission.

**Can I get the full PDF?**  The actor returns `pdfUrl` — a direct link to the PDF. Download it with any HTTP client.

**Why is `doi` missing on some papers?**  arXiv preprints don't always have a DOI assigned at the time of upload. Set `includeDoiOnly=true` to filter to peer-reviewed or journal-published versions only.

**What's the difference between `searchQuery` and `abstractContains`?**  `searchQuery` is sent to arXiv's server-side search (ranks by relevance). `abstractContains` is a client-side substring filter applied AFTER fetching. Use `searchQuery` for relevance, `abstractContains` for narrow keyword filtering on top of that.

**Why limit to 5000 items?**  arXiv's API allows up to 30k results per query but pagination beyond a few thousand becomes very slow due to the 3-second rate limit. For larger crawls, run multiple actor runs with different `dateRangeFrom`/`dateRangeTo` windows.

**Can I scrape the PDF text content?**  Not directly — this actor returns metadata only. Pair it with a downstream PDF-extraction actor if you need full-text.

**How are categories specified?**  Use arXiv's official codes (e.g. `cs.LG` for ML, `stat.ML` for stats ML, `cs.CL` for NLP, `q-bio.QM` for quantitative biology). The dropdown lists 50+ common codes; the full taxonomy is at [arxiv.org/category\_taxonomy](https://arxiv.org/category_taxonomy).

# Actor input Schema

## `searchQuery` (type: `string`):

Free-text query against title + abstract + authors. e.g. `transformer attention`, `large language models`. Combined with `categories` if both are set.

## `categories` (type: `array`):

arXiv subject categories. Empty = all categories.

## `authorContains` (type: `string`):

Filter by author name (case-insensitive substring). e.g. `Yann LeCun`, `Bengio`.

## `sortBy` (type: `string`):

How arXiv ranks the result list.

## `sortOrder` (type: `string`):

Ascending = oldest first; Descending = newest first.

## `dateRangeFrom` (type: `string`):

Drop papers submitted before this date. Empty = no lower bound.

## `dateRangeTo` (type: `string`):

Drop papers submitted after this date. Empty = no upper bound.

## `maxItems` (type: `integer`):

Hard cap on emitted records.

## `includeDoiOnly` (type: `boolean`):

Drop papers that don't have a DOI (typically pre-publication preprints).

## `minAbstractLength` (type: `integer`):

Drop papers with abstracts shorter than this. Filters out incomplete records.

## `abstractContains` (type: `string`):

Only emit papers whose abstract contains this substring (case-insensitive).

## Actor input object example

```json
{
  "searchQuery": "large language models",
  "categories": [],
  "sortBy": "submittedDate",
  "sortOrder": "descending",
  "maxItems": 50,
  "includeDoiOnly": false
}
```

# Actor output Schema

## `papers` (type: `string`):

Dataset containing all scraped arXiv papers.

# 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 = {
    "searchQuery": "large language models",
    "categories": [],
    "sortBy": "submittedDate",
    "sortOrder": "descending",
    "maxItems": 50,
    "includeDoiOnly": false
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/arxiv-papers-scraper").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 = {
    "searchQuery": "large language models",
    "categories": [],
    "sortBy": "submittedDate",
    "sortOrder": "descending",
    "maxItems": 50,
    "includeDoiOnly": False,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/arxiv-papers-scraper").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 '{
  "searchQuery": "large language models",
  "categories": [],
  "sortBy": "submittedDate",
  "sortOrder": "descending",
  "maxItems": 50,
  "includeDoiOnly": false
}' |
apify call crawlerbros/arxiv-papers-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=crawlerbros/arxiv-papers-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "arXiv Papers Scraper",
        "description": "Scrape academic preprints from arXiv.org by keyword, author, or category. Returns clean records with title, authors, abstract, categories, PDF URL, DOI. HTTP-only via the public arXiv API. No login, no proxy.",
        "version": "1.0",
        "x-build-id": "SBL4eaoLVASb30hhK"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~arxiv-papers-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-arxiv-papers-scraper",
                "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/crawlerbros~arxiv-papers-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-arxiv-papers-scraper",
                "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/crawlerbros~arxiv-papers-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-arxiv-papers-scraper",
                "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": {
                    "searchQuery": {
                        "title": "Search query",
                        "type": "string",
                        "description": "Free-text query against title + abstract + authors. e.g. `transformer attention`, `large language models`. Combined with `categories` if both are set.",
                        "default": "large language models"
                    },
                    "categories": {
                        "title": "Categories (multi-select)",
                        "type": "array",
                        "description": "arXiv subject categories. Empty = all categories.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "cs.AI",
                                "cs.LG",
                                "cs.CL",
                                "cs.CV",
                                "cs.NE",
                                "cs.RO",
                                "cs.CR",
                                "cs.DB",
                                "cs.DC",
                                "cs.DS",
                                "cs.GT",
                                "cs.HC",
                                "cs.IR",
                                "cs.IT",
                                "cs.LO",
                                "cs.MA",
                                "cs.MM",
                                "cs.NI",
                                "cs.OS",
                                "cs.PL",
                                "cs.SC",
                                "cs.SD",
                                "cs.SE",
                                "cs.SI",
                                "cs.SY",
                                "stat.ML",
                                "stat.AP",
                                "stat.CO",
                                "stat.ME",
                                "stat.TH",
                                "math.PR",
                                "math.ST",
                                "math.OC",
                                "math.NA",
                                "math.CO",
                                "math.AT",
                                "math.AG",
                                "physics.optics",
                                "physics.comp-ph",
                                "physics.data-an",
                                "quant-ph",
                                "cond-mat.mes-hall",
                                "cond-mat.dis-nn",
                                "q-bio.NC",
                                "q-bio.QM",
                                "q-bio.GN",
                                "q-bio.MN",
                                "q-fin.ST",
                                "q-fin.TR",
                                "q-fin.RM",
                                "econ.EM",
                                "econ.TH"
                            ],
                            "enumTitles": [
                                "CS / Artificial Intelligence",
                                "CS / Machine Learning",
                                "CS / Computation & Language (NLP)",
                                "CS / Computer Vision",
                                "CS / Neural & Evolutionary Computing",
                                "CS / Robotics",
                                "CS / Cryptography & Security",
                                "CS / Databases",
                                "CS / Distributed Computing",
                                "CS / Data Structures & Algorithms",
                                "CS / Game Theory",
                                "CS / Human-Computer Interaction",
                                "CS / Information Retrieval",
                                "CS / Information Theory",
                                "CS / Logic in CS",
                                "CS / Multiagent Systems",
                                "CS / Multimedia",
                                "CS / Networking & Internet",
                                "CS / Operating Systems",
                                "CS / Programming Languages",
                                "CS / Symbolic Computation",
                                "CS / Sound",
                                "CS / Software Engineering",
                                "CS / Social & Information Networks",
                                "CS / Systems & Control",
                                "Stats / Machine Learning",
                                "Stats / Applications",
                                "Stats / Computation",
                                "Stats / Methodology",
                                "Stats / Theory",
                                "Math / Probability",
                                "Math / Statistics Theory",
                                "Math / Optimization & Control",
                                "Math / Numerical Analysis",
                                "Math / Combinatorics",
                                "Math / Algebraic Topology",
                                "Math / Algebraic Geometry",
                                "Physics / Optics",
                                "Physics / Computational Physics",
                                "Physics / Data Analysis",
                                "Quantum Physics",
                                "Cond-mat / Mesoscale & Nanoscale",
                                "Cond-mat / Disordered Systems",
                                "Q-bio / Neurons & Cognition",
                                "Q-bio / Quantitative Methods",
                                "Q-bio / Genomics",
                                "Q-bio / Molecular Networks",
                                "Q-fin / Statistical Finance",
                                "Q-fin / Trading & Microstructure",
                                "Q-fin / Risk Management",
                                "Econ / Econometrics",
                                "Econ / Theoretical Economics"
                            ]
                        },
                        "default": []
                    },
                    "authorContains": {
                        "title": "Author name contains",
                        "type": "string",
                        "description": "Filter by author name (case-insensitive substring). e.g. `Yann LeCun`, `Bengio`."
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "enum": [
                            "relevance",
                            "submittedDate",
                            "lastUpdatedDate"
                        ],
                        "type": "string",
                        "description": "How arXiv ranks the result list.",
                        "default": "submittedDate"
                    },
                    "sortOrder": {
                        "title": "Sort order",
                        "enum": [
                            "descending",
                            "ascending"
                        ],
                        "type": "string",
                        "description": "Ascending = oldest first; Descending = newest first.",
                        "default": "descending"
                    },
                    "dateRangeFrom": {
                        "title": "Date range from (YYYY-MM-DD)",
                        "type": "string",
                        "description": "Drop papers submitted before this date. Empty = no lower bound."
                    },
                    "dateRangeTo": {
                        "title": "Date range to (YYYY-MM-DD)",
                        "type": "string",
                        "description": "Drop papers submitted after this date. Empty = no upper bound."
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Hard cap on emitted records.",
                        "default": 50
                    },
                    "includeDoiOnly": {
                        "title": "DOI required",
                        "type": "boolean",
                        "description": "Drop papers that don't have a DOI (typically pre-publication preprints).",
                        "default": false
                    },
                    "minAbstractLength": {
                        "title": "Min abstract length (chars)",
                        "minimum": 0,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Drop papers with abstracts shorter than this. Filters out incomplete records."
                    },
                    "abstractContains": {
                        "title": "Abstract contains",
                        "type": "string",
                        "description": "Only emit papers whose abstract contains this substring (case-insensitive)."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
