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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kognitos.com/legacy/legacy-experience/automation-areas/tables-v2/create-a-table/create-a-table-from-json.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
