> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Context.dev: Contextdev List Monitor Credit Usage

> List Monitor Activity. Context.dev Contextdev List Monitor Credit Usage reference includes SDK V2 and CLI requests, input constraints, response fields,.

List Monitor Activity.

<Info>
  Tool ID: `contextdev_list_monitor_credit_usage`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'contextdev_list_monitor_credit_usage',
  {
    "since": "2026-01-15T12:00:00Z",
    "until": "2026-01-15T12:00:00Z"
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute contextdev_list_monitor_credit_usage --input '{
  "since": "2026-01-15T12:00:00Z",
  "until": "2026-01-15T12:00:00Z"
}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": {
    "data": [
      {
        "monitor_id": "monitor_123",
        "name": "Example",
        "runs": 123
      }
    ]
  }
}
```

Use `deepline tools get contextdev_list_monitor_credit_usage --json` for the latest machine-readable contract.

## Input reference

List monitor request activity over an optional time window.

| Name            | Type     | Required | Default | Details                                                                      |
| --------------- | -------- | -------- | ------- | ---------------------------------------------------------------------------- |
| `payload.since` | `string` | No       | —       | Only include items at or after this ISO 8601 timestamp. Format: `date-time`. |
| `payload.until` | `string` | No       | —       | Only include items before this ISO 8601 timestamp. Format: `date-time`.      |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "List monitor request activity over an optional time window.",
    "properties": {
      "since": {
        "type": "string",
        "description": "Only include items at or after this ISO 8601 timestamp.",
        "format": "date-time"
      },
      "until": {
        "type": "string",
        "description": "Only include items before this ISO 8601 timestamp.",
        "format": "date-time"
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

| Name                            | Type      | Required | Default | Details |
| ------------------------------- | --------- | -------- | ------- | ------- |
| `result.data`                   | `object`  | Yes      | —       | —       |
| `result.data.data`              | `array`   | Yes      | —       | —       |
| `result.data.data[].monitor_id` | `string`  | Yes      | —       | —       |
| `result.data.data[].name`       | `string`  | Yes      | —       | —       |
| `result.data.data[].runs`       | `integer` | Yes      | —       | —       |
| `result.meta`                   | `object`  | No       | —       | —       |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "data": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "monitor_id": {
                  "type": "string"
                },
                "name": {
                  "type": "string"
                },
                "runs": {
                  "type": "integer"
                }
              },
              "required": [
                "monitor_id",
                "name",
                "runs"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "data"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

* [Context.dev provider guide](/docs/providers/contextdev/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
