# Create a Table from JSON

### Overview

This procedure creates a table from one or more JSONs. It automates the transformation of raw data into a structured, easy-to-read format, which can be useful for handling data from APIs or external services.

### Input Concepts

| Concept | Type           | Description                                          | Default    | Required |
| ------- | -------------- | ---------------------------------------------------- | ---------- | -------- |
| `json`  | string or json | The JSON input from which the table will be created. | No default | Yes      |

### Output Concepts

| Concept | Description                            |
| ------- | -------------------------------------- |
| `table` | The table created from the JSON input. |

### Examples

#### 1. Create a table from the JSON

{% tabs %}
{% tab title="Automation" %}

```
the json
create a table from the json
```

{% endtab %}

{% tab title="Results" %}

| Name          | Age |
| ------------- | --- |
| Alice         | 30  |
| Bob           | 25  |
| {% endtab %}  |     |
| {% endtabs %} |     |

In this example, `the json` will raise a question prompting you to provide the JSON input. You can either enter it directly in the text box or upload a `.json` file.
