---
title: "Get Grid"
method: GET
path: "/v2/grids/grid/{grid_id}"
tags: ["Grid"]
---

# Get Grid

`GET /v2/grids/grid/{grid_id}`

Get results of a previously run grid. You can use both grid ids from your previous API calls and from Model ML platform URL (....modelml.com/grid/<grid_id>)

## Path parameters

- `grid_id` string, uuid, required

## Response `200`

Successful Response

- GridResponseV2
  - `grid_id` string, uuid, required
  - `grid_name` string, required
  - `data` GridSheetResultV2[], required
    - `sheet_id` string, uuid, required
    - `sheet_index` integer, required
    - `sheet_name` string, required
    - `columns` union[], required
      - union
        - AIGridColumnV2
          - `id` string, uuid, required
          - `index` integer, required
          - `is_pinned` boolean, required
          - `auto_reference` boolean, required
          - `datatype` union, required
            - LongTextOptions — Datatype used when the LLM must return a long text.
              - …
            - ShortTextOptions — Datatype used when the LLM must return a short text.
              - …
            - DateOptions — Datatype used when the LLM must return a date.
              - …
            - NumberOptions — Datatype used when the LLM must return a number.
              - …
            - PercentageOptions — Datatype used when the LLM must return a percentage value.
              - …
            - CurrencyOptions — Datatype used when the LLM must return a currency value.
              - …
            - SingleSelectOptions — Datatype used when the LLM must select one option from a list of options. Use this tool when the response options are bounded and mutually exclusive. Typycal examples: Yes/No, True/False, etc.
              - …
            - MultiSelectOptions — Datatype used when the LLM must select multiple options from a list of options. Use this tool when the response options are bounded and not mutually exclusive. Typycal examples: company sectors, product categories, etc.
              - …
            - UrlOptions — Datatype used when the LLM must return a URL.
              - …
            - ImageOptions
              - …
            - AssetOptions
              - …
            - CustomStructuredOptions
              - …
          - `name` string, required
          - `type` 'AI', required
          - `prompt` string, required
          - `tool_selection` ToolSelection, required
        - TextGridColumnV2
          - `id` string, uuid, required
          - `index` integer, required
          - `is_pinned` boolean, required
          - `auto_reference` boolean, required
          - `datatype` union
            - LongTextOptions — Datatype used when the LLM must return a long text.
              - …
            - ShortTextOptions — Datatype used when the LLM must return a short text.
              - …
            - DateOptions — Datatype used when the LLM must return a date.
              - …
            - NumberOptions — Datatype used when the LLM must return a number.
              - …
            - PercentageOptions — Datatype used when the LLM must return a percentage value.
              - …
            - CurrencyOptions — Datatype used when the LLM must return a currency value.
              - …
            - SingleSelectOptions — Datatype used when the LLM must select one option from a list of options. Use this tool when the response options are bounded and mutually exclusive. Typycal examples: Yes/No, True/False, etc.
              - …
            - MultiSelectOptions — Datatype used when the LLM must select multiple options from a list of options. Use this tool when the response options are bounded and not mutually exclusive. Typycal examples: company sectors, product categories, etc.
              - …
            - UrlOptions — Datatype used when the LLM must return a URL.
              - …
            - ImageOptions
              - …
            - AssetOptions
              - …
            - CustomStructuredOptions
              - …
          - `name` string, required
          - `type` 'MANUAL', required
        - AssetGridColumnV2
          - `id` string, uuid, required
          - `index` integer, required
          - `is_pinned` boolean, required
          - `auto_reference` boolean, required
          - `datatype` union
            - LongTextOptions — Datatype used when the LLM must return a long text.
              - …
            - ShortTextOptions — Datatype used when the LLM must return a short text.
              - …
            - DateOptions — Datatype used when the LLM must return a date.
              - …
            - NumberOptions — Datatype used when the LLM must return a number.
              - …
            - PercentageOptions — Datatype used when the LLM must return a percentage value.
              - …
            - CurrencyOptions — Datatype used when the LLM must return a currency value.
              - …
            - SingleSelectOptions — Datatype used when the LLM must select one option from a list of options. Use this tool when the response options are bounded and mutually exclusive. Typycal examples: Yes/No, True/False, etc.
              - …
            - MultiSelectOptions — Datatype used when the LLM must select multiple options from a list of options. Use this tool when the response options are bounded and not mutually exclusive. Typycal examples: company sectors, product categories, etc.
              - …
            - UrlOptions — Datatype used when the LLM must return a URL.
              - …
            - ImageOptions
              - …
            - AssetOptions
              - …
            - CustomStructuredOptions
              - …
          - `name` string, required
          - `type` 'MANUAL', required
    - `rows` GridRowV2[], required
      - `id` string, uuid, required
      - `index` integer, required
      - `is_pinned` boolean
    - `cells` union[], required
      - union
        - AICellV2
          - `id` string, uuid, required
          - `column_id` string, uuid, required
          - `row_id` string, uuid, required
          - `column_index` integer, required
          - `row_index` integer, required
          - `content` string, required
          - `status` 'in-progress' | 'preparing' | 'done' | 'cancelled' | 'failed' | 'timed_out' | 'queued', required
          - `is_locked` boolean, required
          - `sources` object, required
        - TextCellV2
          - `id` string, uuid, required
          - `column_id` string, uuid, required
          - `row_id` string, uuid, required
          - `column_index` integer, required
          - `row_index` integer, required
          - `content` string, required
        - AssetCellV2
          - `id` string, uuid, required
          - `column_id` string, uuid, required
          - `row_id` string, uuid, required
          - `column_index` integer, required
          - `row_index` integer, required
          - `asset_names` string[], required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/modelml/apis/model-ml-api.md) · [All operations](https://skmtc.dev/modelml/apis/model-ml-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/modelml/model-ml-api/revisions/5ae43729fe2f/schema)
