# GitHub — Repository Search & Data Scraper (`moving_beacon-owner1/github----repository-search-data-scraper`) Actor

Scrapes GitHub repository data via the GitHub REST API v3. Supports keyword search, advanced qualifiers, user/org listing, trending repos, topic browsing, and direct repo lookup. Works without an API key (rate-limited) or with a personal access token for higher throughput.

- **URL**: https://apify.com/moving\_beacon-owner1/github----repository-search-data-scraper.md
- **Developed by:** [Jamshaid Arif](https://apify.com/moving_beacon-owner1) (community)
- **Categories:** Developer tools, Other, Integrations
- **Stats:** 2 total users, 1 monthly users, 100.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

## 🐙 GitHub — Repository Search & Data Scraper — Apify Actor

Scrapes **GitHub repository data** via the [GitHub REST API v3](https://docs.github.com/en/rest). Supports keyword search, advanced qualifiers, user/org listing, trending repos, topic browsing, and direct repo lookup. **Works without an API key** (rate-limited) or with a personal access token for higher throughput.

### Features

- **8 search modes** — keyword search, user repos, org repos, topic browse, direct lookup, and 3 trending periods.
- **Advanced qualifiers** — language, stars, forks, license, creation date, push date, archived/fork filters.
- **4 optional extras** — language breakdown, top contributors, releases with download counts, topic tags.
- **Smart rate limiting** — automatic backoff on 403, separate delays for search vs. other endpoints, token-aware pacing.
- **4 output formats** — enriched (with computed metrics), raw, minimal, CSV-friendly.
- **Up to 1,000 search results** — auto-paginates across 34 pages.

### Search Modes

| Mode | What it does |
|---|---|
| `search` | Keyword search with qualifiers (up to 1,000 results) |
| `user_repos` | All public repos from a specific GitHub user |
| `org_repos` | All public repos from an organization |
| `topic_browse` | Repos tagged with a specific topic |
| `repos_by_name` | Fetch specific repos by `owner/name` |
| `trending_today` | Repos created today, sorted by stars |
| `trending_week` | Repos created this week, sorted by stars |
| `trending_month` | Repos created this month, sorted by stars |

### Input Examples

#### Search Python Web Scraping Tools

```json
{
    "mode": "search",
    "searchQuery": "web scraping",
    "language": "Python",
    "minStars": 100,
    "sortBy": "stars",
    "maxPages": 5,
    "fetchExtras": ["languages", "contributors"],
    "outputFormat": "enriched"
}
````

#### All Google Org Repos

```json
{
    "mode": "org_repos",
    "orgName": "google",
    "maxPages": 10,
    "outputFormat": "enriched"
}
```

#### Trending Repos This Week

```json
{
    "mode": "trending_week",
    "minStars": 50,
    "maxPages": 5,
    "outputFormat": "enriched"
}
```

#### Specific Repos with Releases

```json
{
    "mode": "repos_by_name",
    "repoFullNames": "facebook/react, vuejs/vue, angular/angular, sveltejs/svelte",
    "fetchExtras": ["languages", "releases", "contributors"],
    "outputFormat": "enriched"
}
```

#### MIT-Licensed TypeScript Projects

```json
{
    "mode": "search",
    "searchQuery": "dashboard",
    "language": "TypeScript",
    "license": "mit",
    "minStars": 500,
    "pushedAfter": "2024-06-01",
    "sortBy": "stars"
}
```

### Enriched Output Fields

| Field | Example |
|---|---|
| `full_name` | `scrapy/scrapy` |
| `owner` | `scrapy` |
| `owner_type` | `Organization` |
| `description` | `Scrapy, a fast high-level…` |
| `url` | `https://github.com/scrapy/scrapy` |
| `homepage` | `https://scrapy.org` |
| `language` | `Python` |
| `stars` | `53,421` |
| `forks` | `13,812` |
| `watchers` | `53,421` |
| `open_issues` | `487` |
| `size_kb` | `23456` |
| `license` | `BSD-3-Clause` |
| `topics` | `python, web-scraping, crawler` |
| `default_branch` | `master` |
| `is_fork` | `false` |
| `is_archived` | `false` |
| `has_wiki` | `true` |
| `has_pages` | `true` |
| `created_at` | `2010-02-22T02:23:08Z` |
| `pushed_at` | `2025-04-04T18:30:00Z` |
| `age_days` | `5520` |
| `stars_per_day` | `9.68` |
| `fork_to_star_ratio` | `0.259` |

#### Extra Fields

| Extra | Fields Added |
|---|---|
| Languages | `languages_breakdown` (lang → bytes + %), `languages_flat`, `language_count` |
| Contributors | `top_contributors` (login, commits, avatar × 10), `top_contributor` |
| Releases | `releases` (tag, date, downloads × 5), `latest_release`, `total_release_downloads` |
| Topics | `all_topics` (array), `topic_count` |

### Rate Limits & Token

| | Without Token | With Token |
|---|---|---|
| Search API | 10 requests/min | 30 requests/min |
| Other endpoints | 60 requests/hr | 5,000 requests/hr |
| Search results cap | 1,000 | 1,000 |

To create a token: **github.com → Settings → Developer Settings → Personal Access Tokens → Fine-grained tokens**. No special permissions are needed for public repos.

The actor automatically handles rate limiting: it reads `x-ratelimit-remaining` headers and waits for resets when exhausted.

# Actor input Schema

## `mode` (type: `string`):

Choose how to find repositories.

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

Keywords to search for in repo names, descriptions, and READMEs. Used in Search mode. E.g. 'web scraping', 'machine learning', 'react dashboard'.

## `username` (type: `string`):

GitHub username for User Repos mode. E.g. 'torvalds', 'sindresorhus'.

## `orgName` (type: `string`):

GitHub org for Org Repos mode. E.g. 'google', 'facebook', 'microsoft'.

## `topic` (type: `string`):

GitHub topic tag for Topic Browse mode. E.g. 'python', 'machine-learning', 'awesome'.

## `repoFullNames` (type: `string`):

Comma-separated owner/repo names for direct lookup. E.g. 'facebook/react, vuejs/vue, angular/angular'.

## `language` (type: `string`):

Filter repositories by primary programming language.

## `minStars` (type: `integer`):

Only include repos with at least this many stars.

## `maxStars` (type: `integer`):

Only include repos with at most this many stars. Leave empty for no limit.

## `minForks` (type: `integer`):

Only include repos with at least this many forks.

## `license` (type: `string`):

Only include repos with a specific license.

## `createdAfter` (type: `string`):

Only include repos created after this date (YYYY-MM-DD).

## `pushedAfter` (type: `string`):

Only repos with commits pushed after this date (YYYY-MM-DD). Great for finding active projects.

## `includeArchived` (type: `boolean`):

Include archived (read-only) repositories.

## `includeForks` (type: `boolean`):

Include forked repositories in results.

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

How to sort search results.

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

Ascending or descending.

## `fetchExtras` (type: `array`):

For each repo, also fetch additional data. Each extra adds one API call per repo.

## `githubToken` (type: `string`):

Personal access token for higher rate limits (5,000 req/hr vs 60). Create at github.com/settings/tokens. No special scopes needed for public repos.

## `maxPages` (type: `integer`):

Max result pages to fetch (30 repos per page for search, 100 for user/org). E.g. 10 pages = up to 300 search results.

## `outputFormat` (type: `string`):

How to structure each record.

## `addSequentialId` (type: `boolean`):

Add auto-incrementing ID to each record.

## Actor input object example

```json
{
  "mode": "search",
  "language": "any",
  "license": "any",
  "includeArchived": false,
  "includeForks": false,
  "sortBy": "stars",
  "sortOrder": "desc",
  "fetchExtras": [],
  "maxPages": 5,
  "outputFormat": "enriched",
  "addSequentialId": true
}
```

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("moving_beacon-owner1/github----repository-search-data-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("moving_beacon-owner1/github----repository-search-data-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 '{}' |
apify call moving_beacon-owner1/github----repository-search-data-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "GitHub — Repository Search & Data Scraper",
        "description": "Scrapes GitHub repository data via the GitHub REST API v3. Supports keyword search, advanced qualifiers, user/org listing, trending repos, topic browsing, and direct repo lookup. Works without an API key (rate-limited) or with a personal access token for higher throughput.",
        "version": "0.0",
        "x-build-id": "Oh6SUcE84amQO2BLG"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/moving_beacon-owner1~github----repository-search-data-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-moving_beacon-owner1-github----repository-search-data-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/moving_beacon-owner1~github----repository-search-data-scraper/runs": {
            "post": {
                "operationId": "runs-sync-moving_beacon-owner1-github----repository-search-data-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/moving_beacon-owner1~github----repository-search-data-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-moving_beacon-owner1-github----repository-search-data-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",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Search Mode",
                        "enum": [
                            "search",
                            "user_repos",
                            "org_repos",
                            "topic_browse",
                            "repos_by_name",
                            "trending_today",
                            "trending_week",
                            "trending_month"
                        ],
                        "type": "string",
                        "description": "Choose how to find repositories.",
                        "default": "search"
                    },
                    "searchQuery": {
                        "title": "Search Query",
                        "type": "string",
                        "description": "Keywords to search for in repo names, descriptions, and READMEs. Used in Search mode. E.g. 'web scraping', 'machine learning', 'react dashboard'."
                    },
                    "username": {
                        "title": "GitHub Username",
                        "type": "string",
                        "description": "GitHub username for User Repos mode. E.g. 'torvalds', 'sindresorhus'."
                    },
                    "orgName": {
                        "title": "Organization Name",
                        "type": "string",
                        "description": "GitHub org for Org Repos mode. E.g. 'google', 'facebook', 'microsoft'."
                    },
                    "topic": {
                        "title": "Topic",
                        "type": "string",
                        "description": "GitHub topic tag for Topic Browse mode. E.g. 'python', 'machine-learning', 'awesome'."
                    },
                    "repoFullNames": {
                        "title": "Repo Full Names",
                        "type": "string",
                        "description": "Comma-separated owner/repo names for direct lookup. E.g. 'facebook/react, vuejs/vue, angular/angular'."
                    },
                    "language": {
                        "title": "Language Filter",
                        "enum": [
                            "any",
                            "Python",
                            "JavaScript",
                            "TypeScript",
                            "Java",
                            "C",
                            "C++",
                            "C#",
                            "Go",
                            "Rust",
                            "Ruby",
                            "PHP",
                            "Swift",
                            "Kotlin",
                            "Scala",
                            "R",
                            "MATLAB",
                            "Dart",
                            "Lua",
                            "Shell",
                            "PowerShell",
                            "HTML",
                            "CSS",
                            "Vue",
                            "Svelte",
                            "Jupyter Notebook",
                            "Dockerfile",
                            "Makefile",
                            "HCL",
                            "Solidity"
                        ],
                        "type": "string",
                        "description": "Filter repositories by primary programming language.",
                        "default": "any"
                    },
                    "minStars": {
                        "title": "Minimum Stars",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only include repos with at least this many stars."
                    },
                    "maxStars": {
                        "title": "Maximum Stars",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only include repos with at most this many stars. Leave empty for no limit."
                    },
                    "minForks": {
                        "title": "Minimum Forks",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only include repos with at least this many forks."
                    },
                    "license": {
                        "title": "License Filter",
                        "enum": [
                            "any",
                            "mit",
                            "apache-2.0",
                            "gpl-3.0",
                            "gpl-2.0",
                            "bsd-2-clause",
                            "bsd-3-clause",
                            "lgpl-2.1",
                            "lgpl-3.0",
                            "mpl-2.0",
                            "agpl-3.0",
                            "unlicense",
                            "cc0-1.0",
                            "isc",
                            "0bsd"
                        ],
                        "type": "string",
                        "description": "Only include repos with a specific license.",
                        "default": "any"
                    },
                    "createdAfter": {
                        "title": "Created After",
                        "type": "string",
                        "description": "Only include repos created after this date (YYYY-MM-DD)."
                    },
                    "pushedAfter": {
                        "title": "Pushed/Updated After",
                        "type": "string",
                        "description": "Only repos with commits pushed after this date (YYYY-MM-DD). Great for finding active projects."
                    },
                    "includeArchived": {
                        "title": "Include Archived Repos",
                        "type": "boolean",
                        "description": "Include archived (read-only) repositories.",
                        "default": false
                    },
                    "includeForks": {
                        "title": "Include Forks",
                        "type": "boolean",
                        "description": "Include forked repositories in results.",
                        "default": false
                    },
                    "sortBy": {
                        "title": "Sort By",
                        "enum": [
                            "stars",
                            "forks",
                            "help-wanted-issues",
                            "updated",
                            "best-match"
                        ],
                        "type": "string",
                        "description": "How to sort search results.",
                        "default": "stars"
                    },
                    "sortOrder": {
                        "title": "Sort Order",
                        "enum": [
                            "desc",
                            "asc"
                        ],
                        "type": "string",
                        "description": "Ascending or descending.",
                        "default": "desc"
                    },
                    "fetchExtras": {
                        "title": "Fetch Extra Details",
                        "type": "array",
                        "description": "For each repo, also fetch additional data. Each extra adds one API call per repo.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "languages",
                                "contributors",
                                "releases",
                                "topics"
                            ],
                            "enumTitles": [
                                "Languages — breakdown of all languages with byte counts",
                                "Top Contributors — top 10 contributors with commit counts",
                                "Latest Releases — last 5 releases with download counts",
                                "Topics — all topic tags"
                            ]
                        },
                        "default": []
                    },
                    "githubToken": {
                        "title": "GitHub Token (optional)",
                        "type": "string",
                        "description": "Personal access token for higher rate limits (5,000 req/hr vs 60). Create at github.com/settings/tokens. No special scopes needed for public repos."
                    },
                    "maxPages": {
                        "title": "Maximum Pages",
                        "minimum": 1,
                        "maximum": 34,
                        "type": "integer",
                        "description": "Max result pages to fetch (30 repos per page for search, 100 for user/org). E.g. 10 pages = up to 300 search results.",
                        "default": 5
                    },
                    "outputFormat": {
                        "title": "Output Format",
                        "enum": [
                            "enriched",
                            "raw",
                            "minimal",
                            "csv_friendly"
                        ],
                        "type": "string",
                        "description": "How to structure each record.",
                        "default": "enriched"
                    },
                    "addSequentialId": {
                        "title": "Add Sequential ID",
                        "type": "boolean",
                        "description": "Add auto-incrementing ID to each record.",
                        "default": true
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
