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

# Numeric Sequence Generation

> Generate a sequence of numbers with a specified step between start and end values

The Numeric Sequence Generation command (Command Type: 1302) generates a sequence of numbers with a specified step size between start and end values.

## Command Type

**Command Type ID:** 1302

## Parameters

| Parameter                   | Type   | Description                                                                          | Required |
| --------------------------- | ------ | ------------------------------------------------------------------------------------ | -------- |
| **start**                   | string | The first number in the sequence                                                     | Yes      |
| **end**                     | string | The last possible number in the sequence (inclusive)                                 | Yes      |
| **step**                    | number | The increment between each number in the sequence                                    | Yes      |
| **key**                     | string | Where to store results. Possible values: `"data"`, `"children"`, `"local_variables"` | Yes      |
| **output\_parameter\_name** | string | Optional custom name for the output field                                            | No       |

## Usage Examples

### Generate 1 to 10

```json theme={null}
{
  "command": "numeric-sequence-generation",
  "params": {
    "start": "1",
    "end": "10",
    "step": 1,
    "key": "children"
  }
}
```

### Generate Even Numbers

```json theme={null}
{
  "command": "numeric-sequence-generation",
  "params": {
    "start": "2",
    "end": "20",
    "step": 2,
    "key": "data"
  }
}
```

### Generate Pages for Pagination

```json theme={null}
{
  "command": "numeric-sequence-generation",
  "params": {
    "start": "1",
    "end": "50",
    "step": 1,
    "key": "children",
    "output_parameter_name": "page"
  }
}
```

## Related Commands

* [Date Generation](/stream/commands/generate/date-generation) - Generate dates
* [UUID Generation](/stream/commands/generate/uuid-generation) - Generate UUIDs
