> ## 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.

# Luma: Get V1 Events Ticket Types List

> List all ticket types for an event. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

List all ticket types for an event.

<Info>
  Tool ID: `luma_get_v1_events_ticket_types_list`
</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(
  'luma_get_v1_events_ticket_types_list',
  {
    "event_id": "event_123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute luma_get_v1_events_ticket_types_list --input '{
  "event_id": "event_123"
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "entries": [
      {
        "name": "Example",
        "type": "free",
        "id": "id_123"
      }
    ]
  }
}
```

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

## Input reference

List all ticket types for an event

| Name                     | Type     | Required | Default | Details                                 |
| ------------------------ | -------- | -------- | ------- | --------------------------------------- |
| `payload.event_id`       | `string` | Yes      | —       | Event ID, this usually starts with evt- |
| `payload.include_hidden` | `string` | No       | —       | Include hidden ticket types             |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "List all ticket types for an event",
    "properties": {
      "event_id": {
        "type": "string",
        "description": "Event ID, this usually starts with evt-"
      },
      "include_hidden": {
        "type": "string",
        "description": "Include hidden ticket types"
      }
    },
    "required": [
      "event_id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                     | Type               | Required | Default | Details                                        |
| ---------------------------------------- | ------------------ | -------- | ------- | ---------------------------------------------- |
| `result.data`                            | `object`           | Yes      | —       | Provider response payload.                     |
| `result.data.entries`                    | `array`            | Yes      | —       | —                                              |
| `result.data.entries[].name`             | `string`           | Yes      | —       | Minimum length: 1. Maximum length: 30.         |
| `result.data.entries[].require_approval` | `boolean`          | No       | —       | —                                              |
| `result.data.entries[].is_hidden`        | `boolean`          | No       | —       | —                                              |
| `result.data.entries[].description`      | `string \| null`   | No       | —       | Maximum length: 1000.                          |
| `result.data.entries[].valid_start_at`   | `string \| null`   | No       | —       | ISO 8601 Date. For example, 2025-09-01         |
| `result.data.entries[].valid_end_at`     | `string \| null`   | No       | —       | ISO 8601 Date. For example, 2025-09-01         |
| `result.data.entries[].max_capacity`     | `number \| null`   | No       | —       | —                                              |
| `result.data.entries[].type`             | `"free" \| "paid"` | Yes      | —       | Allowed: `free`, `paid`.                       |
| `result.data.entries[].cents`            | `number \| null`   | No       | —       | —                                              |
| `result.data.entries[].currency`         | `string \| null`   | No       | —       | —                                              |
| `result.data.entries[].is_flexible`      | `boolean`          | No       | —       | —                                              |
| `result.data.entries[].min_cents`        | `number \| null`   | No       | —       | —                                              |
| `result.data.entries[].id`               | `string`           | Yes      | —       | —                                              |
| `result.meta`                            | `object`           | No       | —       | Additional response metadata (status, paging). |

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

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Provider response payload.",
        "properties": {
          "entries": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "name": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 30
                },
                "require_approval": {
                  "type": "boolean"
                },
                "is_hidden": {
                  "type": "boolean"
                },
                "description": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "maxLength": 1000
                },
                "valid_start_at": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "ISO 8601 Date. For example, 2025-09-01"
                },
                "valid_end_at": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "ISO 8601 Date. For example, 2025-09-01"
                },
                "max_capacity": {
                  "type": [
                    "number",
                    "null"
                  ]
                },
                "type": {
                  "type": "string",
                  "enum": [
                    "free",
                    "paid"
                  ]
                },
                "cents": {
                  "type": [
                    "number",
                    "null"
                  ]
                },
                "currency": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "is_flexible": {
                  "type": "boolean"
                },
                "min_cents": {
                  "type": [
                    "number",
                    "null"
                  ]
                },
                "id": {
                  "type": "string"
                }
              },
              "required": [
                "name",
                "type",
                "id"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "entries"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "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

* [Luma provider guide](/docs/providers/luma/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)
