> For the complete documentation index, see [llms.txt](https://docs.miromindmap.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.miromindmap.com/export-types/json.md).

# JSON

Export your mind map data as JSON

### Example 1

#### Example Mind Map

<figure><img src="https://3825982875-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FvpEytOMv8LQf2bKlqaAc%2Fuploads%2FwcTeymjf0IPPn2xChTOu%2FScreenshot%202024-10-16%20at%2009.19.45.png?alt=media&amp;token=8393bcc7-16cf-46f2-887d-ac4c10512b5f" alt=""><figcaption><p>Details about a vehicle</p></figcaption></figure>

#### JSON Export

```json
{
  "text": "Vehicle Details",
  "links": [],
  "children": [
    {
      "text": "Milage",
      "links": [],
      "children": [
        {
          "text": "37,201",
          "links": [],
          "children": []
        }
      ]
    },
    {
      "text": "Year",
      "links": [],
      "children": [
        {
          "text": "2015",
          "links": [],
          "children": []
        }
      ]
    },
    {
      "text": "Model",
      "links": [],
      "children": [
        {
          "text": "Vauxhall Corsa SE",
          "links": [],
          "children": []
        }
      ]
    },
    {
      "text": "Colour",
      "links": [],
      "children": [
        {
          "text": "Black",
          "links": [],
          "children": []
        }
      ]
    }
  ]
}
```

### Example 2

#### Example Mind Map

<figure><img src="https://3825982875-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FvpEytOMv8LQf2bKlqaAc%2Fuploads%2Fydlyzfyxz4jX8FzTQ55I%2FScreenshot%202024-10-16%20at%2009.45.15.png?alt=media&amp;token=d73a4d6a-a625-408e-a341-ae3c22e70443" alt=""><figcaption><p>Vauxhall Corsa Node has a link attached</p></figcaption></figure>

```json
{
  "text": "Vehicle Details",
  "links": [],
  "children": [
    {
      "text": "Model",
      "links": [],
      "children": [
        {
          "text": "Vauxhall Corsa SE",
          "links": [
            "https://en.wikipedia.org/?title=Vauxhall_Corsa&amp;redirect=no"
          ],
          "children": []
        }
      ]
    }
  ]
}
```
