# Reddit Manage Comments V1 — Save, Report, Delete (`red_crawler/reddit-manage-comments-v1`) Actor

Manage your own Reddit comments in one click — save / unsave, report, or delete. Bring your Reddit Token V2 (token\_v2 cookie) + matching proxy, or pick a saved account from the Reddit Vault.

- **URL**: https://apify.com/red\_crawler/reddit-manage-comments-v1.md
- **Developed by:** [Red Crawler](https://apify.com/red_crawler) (community)
- **Categories:** Lead generation, SEO tools, Social media
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

$1.99 / 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

## Reddit Manage Comments V1

![Actions](https://img.shields.io/badge/actions-3-blue) ![Auth](https://img.shields.io/badge/auth-token_v2-orange) ![Vault](https://img.shields.io/badge/vault-supported-green) ![Pricing](https://img.shields.io/badge/pricing-pay_per_result-orange)

Manage your own Reddit comments in one click — **toggle save**, **report**, or **delete**. Three single-purpose actions in one actor, all sharing the same Reddit credentials section. Bring your **Token V2** cookie + matching proxy, or pick a saved account from the **Reddit Vault**.

---

### What you can do

Every action runs against the Reddit account whose Token V2 you provide — you can only manage comments that account is allowed to manage (your own comments, or comments in subreddits where the account is a moderator). The **Comment** field on every action accepts a comment URL (`https://reddit.com/r/sub/comments/<post>/x/<comment_id>/`), the bare stripped ID (`l9b8a8r`), or the `t1_`-prefixed fullname (`t1_l9b8a8r`).

#### Available actions

##### 1. Toggle Save Comment — save or unsave a comment

Toggles the saved state of a comment on your account's `Saved` tab. Set **Save** = ON to save, OFF to unsave.

**Returns:** single record `{success, operation: "save", comment, state, account_name, rate_limit, rate_used, rate_remaining}` — confirmation that the toggle was applied.

**Use it when:** building a personal "read later" pipeline, bookmarking helpful answers, batch-saving an entire AMA thread, clearing your Saved tab after an archival sweep.

**Required fields:** `save_comment`, `save_state` (default ON).

**Example**

**Input**

```json
{
  "operation": "save",
  "save_comment": "t1_l9b8a8r",
  "save_state": true,
  "credentialSource": "vault",
  "accountName": "motor_tip8865"
}
````

**Output** *(one dataset record)*

```json
{
  "success": true,
  "operation": "save",
  "comment": "t1_l9b8a8r",
  "state": true,
  "account_name": "motor_tip8865",
  "error": null,
  "rate_limit": 100,
  "rate_used": 7,
  "rate_remaining": 93,
  "rate_reset_in_seconds": 538
}
```

##### 2. Report Comment — flag a comment to Reddit's site / mod team

Files a site-wide or rule-based report against a comment. Reason is free-form text — Reddit's pre-canned codes (`spam`, `harassment`, `targeted_harassment`, `violent_content`, `dis_misinformation`, etc.) are all accepted, and so is plain English ("brigading from another sub", "ban evasion").

**Returns:** single record `{success, operation: "report", comment, reason, account_name, ...}` — confirmation the report was filed.

**Use it when:** automating bot/spam takedowns, reporting reposts from a duplicate-detection pipeline, building a moderation queue that escalates flagged content.

**Required fields:** `report_comment`. **Optional:** `report_reason` (defaults to a generic "rule violation" report when empty).

**Example**

**Input**

```json
{
  "operation": "report",
  "report_comment": "https://www.reddit.com/r/Wordpress/comments/1s4a4j6/comment/l9b8a8r/",
  "report_reason": "spam",
  "credentialSource": "vault",
  "accountName": "motor_tip8865"
}
```

**Output** *(one dataset record)*

```json
{
  "success": true,
  "operation": "report",
  "comment": "https://www.reddit.com/r/Wordpress/comments/1s4a4j6/comment/l9b8a8r/",
  "reason": "spam",
  "account_name": "motor_tip8865",
  "error": null,
  "rate_limit": 100,
  "rate_used": 8,
  "rate_remaining": 92,
  "rate_reset_in_seconds": 537
}
```

##### 3. Delete Comment — permanently delete your own comment

Removes one of **your own** comments. Reddit replaces the body with `[deleted]` immediately and detaches the author. **Cannot be undone** — there is no "restore" endpoint on Reddit.

**Returns:** single record `{success, operation: "delete", comment, account_name, ...}` — confirmation the delete went through.

**Use it when:** scrubbing your own post history, automating "delete after N days" hygiene, removing old test comments, cleaning up after a deactivated project.

**Required fields:** `delete_comment`.

**Example**

**Input**

```json
{
  "operation": "delete",
  "delete_comment": "t1_l9b8a8r",
  "credentialSource": "vault",
  "accountName": "motor_tip8865"
}
```

**Output** *(one dataset record)*

```json
{
  "success": true,
  "operation": "delete",
  "comment": "t1_l9b8a8r",
  "account_name": "motor_tip8865",
  "error": null,
  "rate_limit": 100,
  "rate_used": 9,
  "rate_remaining": 91,
  "rate_reset_in_seconds": 535
}
```

> **Delete only works on comments you own.** Deleting someone else's comment requires moderator privileges and goes through the moderation actor, not this one.

***

### Credentials

All 3 actions require Reddit auth. The **Reddit credentials** section is shared — fill it once and it applies to whichever action you picked.

#### Option A — Use saved account (vault) *(recommended)*

Pick the name you used in the **[Reddit Vault](https://apify.com/red_crawler/reddit-vault)** actor when you stored the account. Your Token V2 + matching proxy load automatically — and if you saved a **Reddit Session** with the vault, the token auto-refreshes when it expires.

```json
{
  "credentialSource": "vault",
  "accountName": "motor_tip8865"
}
```

#### Option B — Paste Token V2 + proxy manually

Paste the `token_v2` cookie value from your Reddit web session, plus the proxy whose IP minted that cookie. Reddit IP-binds Token V2 — the proxy IP **must** match the one used when the cookie was created.

```json
{
  "credentialSource": "manual",
  "bearer": "eyJhbGciOiJSUzI1NiIs...",
  "proxy": "ip:port:user:pass"
}
```

**Token V2 lifetime:** ~24 h. After that, it expires and you re-paste — or save the account in the vault once and let auto-refresh handle it.

***

### How to run

1. **Action** → pick `Toggle Save Comment`, `Report Comment`, or `Delete Comment`.
2. Fill that section's fields (other sections are ignored).
3. **Reddit credentials** → vault name (recommended) OR Token V2 + proxy.
4. Hit **Start**. One row pushed = the action's success / failure record.

***

### Output

Every successful action pushes **one** dataset record. The shape is identical across all 3 actions, with the front-loaded columns first:

| Column | Meaning |
|---|---|
| `success` | `true` if the action landed on Reddit, `false` otherwise |
| `operation` | Which action ran (`save` / `report` / `delete`) |
| `comment` | The comment URL / ID / fullname you submitted (echoed back) |
| `state` | (save only) `true` = saved, `false` = unsaved |
| `reason` | (report only) The reason string you submitted, or `null` |
| `account_name` | (vault only) The saved account name used |
| `error` | `null` on success; human-readable string on failure |
| `error_kind` | (failures) `bearer_expired`, `rate_limited`, `permission_denied`, etc. |
| `bearer_expires_at` / `bearer_expired_at` | Token V2 lifecycle info |
| `rate_limit` / `rate_used` / `rate_remaining` / `rate_reset_in_seconds` | Reddit's rate-limit headers — surfaces how close you are to a 429 |

***

### Common edge cases

| Edge case | Cause | How it surfaces |
|---|---|---|
| Token V2 expired | Cookie older than ~24 h | Row with `success:false, error:"bearer_expired"` and `bearer_expired_at`. Re-paste — or use the vault for auto-refresh. |
| Wrong proxy for the bearer | Token V2 minted on a different IP | Row with `success:false, error:"…IP mismatch / forbidden…"`. Pass the matching proxy or use the vault (stores them as a pair). |
| Deleting someone else's comment | Not your comment | Row with `success:false, error:"permission denied"`. Delete only works on your own comments. |
| Comment already deleted | Already removed | Row with `success:true` (idempotent) or a Reddit-side error — depends on which side wiped it. |
| Reporting a deleted comment | Comment was already removed | Reddit usually still accepts the report but it's a no-op. |
| Empty Comment field | Forgot to fill | Run `FAILED` immediately, no row pushed, no charge. |
| Rate limited (100/10min) | Hit Reddit's per-token comment-action ceiling | Row with `success:false, error:"rate_limited"` + `rate_reset_in_seconds`. Wait and retry. |

***

### Why this actor is fast

- **Speed — under 1 second per action.** Pure HTTP. No browser to boot, no Playwright / Selenium / Puppeteer overhead. Competing browser-based actors typically take 15–60 seconds per call.
- **Reliability — zero browser flakiness.** No headless-Chromium crashes. No JS-render timeouts. No captcha pages.
- **Footprint — under 100 MB RAM per run.** Most browser-based actors need 1–4 GB.
- **Vault auto-refresh.** Save the account once with a **Reddit Session** in [Reddit Vault](https://apify.com/red_crawler/reddit-vault) and the Token V2 refreshes itself — no expired-cookie failures in long-running pipelines.

***

### Status & error reference

**Run status** *(Apify-side, shown on the run page)*

| Status | Apify message | Meaning | What to do |
|---|---|---|---|
| <img src="https://redcrawler.com/s/apify_pill_succeeded_v11.png" alt="Succeeded" height="40" style="max-width:none" /> | "Actor succeeded with 1 result in the dataset" | Action ran, record pushed. Open the dataset and check `success`. | If `success:true`, you're done. If `success:false`, read the `error` field. |
| <img src="https://redcrawler.com/s/apify_pill_failed_v11.png" alt="Failed" height="40" style="max-width:none" /> | "The Actor process failed…" | Validation error or missing required input. | Check the run log. You are NOT charged for failed runs. |
| <img src="https://redcrawler.com/s/apify_pill_timed_out_v11.png" alt="Timed out" height="40" style="max-width:none" /> | "The Actor timed out. You can resurrect it with a longer timeout to continue where you left off." | Run exceeded timeout (very rare — single-action calls are fast). | Re-run; check Reddit is reachable. |
| <img src="https://redcrawler.com/s/apify_pill_aborted_v11.png" alt="Aborted" height="40" style="max-width:none" /> | "The Actor process was aborted. You can resurrect it to continue where you left off." | You stopped the run manually. | No charge for unpushed results. |

**Common in-run conditions** *(visible in the dataset row's `error` / `error_kind`)*

| Condition | Cause | Result |
|---|---|---|
| `bearer_expired` | Token V2 older than ~24 h. | `success:false`. Re-paste or use vault. |
| `permission_denied` | Deleting / reporting something the account can't touch. | `success:false`. |
| `rate_limited` | 100-action / 10-minute ceiling hit. | `success:false` + `rate_reset_in_seconds`. |
| Empty Comment | Required field missing. | Run `FAILED` immediately, no charge. |

***

### Pricing

Pay-per-result. **You're only charged when an action record is pushed to the dataset — failed runs (validation errors, missing input) cost nothing.**

| Event | Trigger | Price (per 1,000) |
|-------|---------|--------------------|
| `result` | Each action record pushed to the dataset | **$2.99** |

A 100-comment "save all my favorite AMAs" pipeline = 100 rows. A single delete = 1 row. A bad-credentials run = 0 rows, 0 charge.

***

### Need a different shape of data?

- **[Reddit Vault](https://apify.com/red_crawler/reddit-vault)** — save your Reddit accounts once (with auto-refresh), then call them by name from any auth-required actor
- **[Reddit Manage Posts V1](https://apify.com/red_crawler/reddit-manage-posts-v1)** — the post-side companion: edit / delete / save / flair / lock / NSFW / spoiler / hide / report / sendreplies (10 actions)
- **[Reddit Commenting V1](https://apify.com/red_crawler/reddit-commenting-v1)** — create / reply / edit comments
- **[Reddit Commenting V2](https://apify.com/red_crawler/reddit-commenting-v2)** — richer success records (returns `comment_id`, `permalink`) + inline image / GIF support
- **[Reddit Voting V1](https://apify.com/red_crawler/reddit-voting-v1)** — upvote / downvote / clear vote on any post or comment
- **[Reddit Users V1](https://apify.com/red_crawler/reddit-users)** — user profile, posts, comments, friends, follow / block

***

### Support and feedback

Found a bug, want a feature, or hit a Reddit error code we don't translate clearly? Open an issue via the actor's Apify Console feedback link, or reach out at the RedCrawler support channel.

***

*Reddit Manage Comments V1 is part of the RedCrawler family of Reddit actors. RedCrawler is independent — not affiliated with, endorsed by, or sponsored by Reddit, Inc. Use it within Reddit's API terms.*

# Actor input Schema

## `operation` (type: `string`):

Pick the action to perform on a comment. Each action has its own dedicated section below — only fill the one matching your choice. The 'Reddit credentials' section at the bottom is shared.

## `save_comment` (type: `string`):

Comment to save or unsave — paste the URL, the stripped ID, or the t1\_-prefixed fullname.

## `save_state` (type: `boolean`):

On = save the comment to your account's `Saved` tab. Off = remove from saved.

## `report_comment` (type: `string`):

Comment to report — paste the URL, the stripped ID (`l9b8a8r`), or the t1\_-prefixed fullname (`t1_l9b8a8r`).

## `report_reason` (type: `string`):

Site-wide rule reason or free-form text. Examples: `spam`, `harassment`, `dis_misinformation`, `violent_content`, `targeted_harassment`. Leave blank for a generic report.

## `delete_comment` (type: `string`):

Your comment — paste the URL, the stripped ID, or the t1\_-prefixed fullname. Deletion is permanent and only works on comments you own.

## `credentialSource` (type: `string`):

Pick which authentication path this run uses. **Use saved account (vault)** loads your stored Token V2 + proxy from the **reddit-vault** actor (auto-refreshed if you saved a Reddit Session) — only the 'Saved account name' field below is used; Token V2 + proxy are ignored. **Paste Token V2 + proxy** uses the values you paste below — the 'Saved account name' field is ignored.

## `accountName` (type: `string`):

The name you used in the **reddit-vault** actor when you stored this account. Your Token V2 + proxy load automatically from the vault. Ignored when 'Credential source' = manual.

## `bearer` (type: `string`):

Your Reddit `token_v2` cookie value (`eyJ...`). Lifetime ~24 h. Encrypted at rest by Apify. Ignored when 'Credential source' = vault.

## `proxy` (type: `string`):

Proxy in `ip:port:user:pass` format. MUST be the same IP that originally minted the Token V2. Ignored when 'Credential source' = vault.

## Actor input object example

```json
{
  "operation": "save",
  "save_state": true,
  "credentialSource": "vault"
}
```

# 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("red_crawler/reddit-manage-comments-v1").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("red_crawler/reddit-manage-comments-v1").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 red_crawler/reddit-manage-comments-v1 --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=red_crawler/reddit-manage-comments-v1",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Reddit Manage Comments V1 — Save, Report, Delete",
        "description": "Manage your own Reddit comments in one click — save / unsave, report, or delete. Bring your Reddit Token V2 (token_v2 cookie) + matching proxy, or pick a saved account from the Reddit Vault.",
        "version": "0.5",
        "x-build-id": "wG7QhENHpbjfsQeIp"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/red_crawler~reddit-manage-comments-v1/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-red_crawler-reddit-manage-comments-v1",
                "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/red_crawler~reddit-manage-comments-v1/runs": {
            "post": {
                "operationId": "runs-sync-red_crawler-reddit-manage-comments-v1",
                "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/red_crawler~reddit-manage-comments-v1/run-sync": {
            "post": {
                "operationId": "run-sync-red_crawler-reddit-manage-comments-v1",
                "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": [
                    "operation",
                    "credentialSource"
                ],
                "properties": {
                    "operation": {
                        "title": "Action",
                        "enum": [
                            "save",
                            "report",
                            "delete"
                        ],
                        "type": "string",
                        "description": "Pick the action to perform on a comment. Each action has its own dedicated section below — only fill the one matching your choice. The 'Reddit credentials' section at the bottom is shared.",
                        "default": "save"
                    },
                    "save_comment": {
                        "title": "Comment",
                        "type": "string",
                        "description": "Comment to save or unsave — paste the URL, the stripped ID, or the t1_-prefixed fullname."
                    },
                    "save_state": {
                        "title": "Save",
                        "type": "boolean",
                        "description": "On = save the comment to your account's `Saved` tab. Off = remove from saved.",
                        "default": true
                    },
                    "report_comment": {
                        "title": "Comment",
                        "type": "string",
                        "description": "Comment to report — paste the URL, the stripped ID (`l9b8a8r`), or the t1_-prefixed fullname (`t1_l9b8a8r`)."
                    },
                    "report_reason": {
                        "title": "Reason",
                        "type": "string",
                        "description": "Site-wide rule reason or free-form text. Examples: `spam`, `harassment`, `dis_misinformation`, `violent_content`, `targeted_harassment`. Leave blank for a generic report."
                    },
                    "delete_comment": {
                        "title": "Comment",
                        "type": "string",
                        "description": "Your comment — paste the URL, the stripped ID, or the t1_-prefixed fullname. Deletion is permanent and only works on comments you own."
                    },
                    "credentialSource": {
                        "title": "Credential source",
                        "enum": [
                            "vault",
                            "manual"
                        ],
                        "type": "string",
                        "description": "Pick which authentication path this run uses. **Use saved account (vault)** loads your stored Token V2 + proxy from the **reddit-vault** actor (auto-refreshed if you saved a Reddit Session) — only the 'Saved account name' field below is used; Token V2 + proxy are ignored. **Paste Token V2 + proxy** uses the values you paste below — the 'Saved account name' field is ignored.",
                        "default": "vault"
                    },
                    "accountName": {
                        "title": "Saved account name (used when source = vault)",
                        "pattern": "^[A-Za-z0-9_-]{1,32}$",
                        "maxLength": 32,
                        "type": "string",
                        "description": "The name you used in the **reddit-vault** actor when you stored this account. Your Token V2 + proxy load automatically from the vault. Ignored when 'Credential source' = manual."
                    },
                    "bearer": {
                        "title": "Token V2 (used when source = manual)",
                        "type": "string",
                        "description": "Your Reddit `token_v2` cookie value (`eyJ...`). Lifetime ~24 h. Encrypted at rest by Apify. Ignored when 'Credential source' = vault."
                    },
                    "proxy": {
                        "title": "Proxy (used when source = manual)",
                        "type": "string",
                        "description": "Proxy in `ip:port:user:pass` format. MUST be the same IP that originally minted the Token V2. Ignored when 'Credential source' = vault."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
