---
metadata:
  - name: generator
    content: Diplodoc Platform v5.52.0
alternate:
  - https://yandex.kz/routing/doc/en/vrp/json-specifics.md
  - https://yandex.kz/routing/doc/kk/vrp/json-specifics.md
  - https://yandex.kz/routing/doc/ru/vrp/json-specifics.md
  - href: en/vrp/json-specifics.md
    type: text/markdown
    title: Markdown version
  - href: llms.txt
    type: text/markdown
    title: llms.txt
title: RouteQ — integration with the API — JSON format features
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.kz/routing/doc/en/llms.txt


# JSON format features

Learn more about [JSON](https://en.wikipedia.org/wiki/JSON) format.

## Using special characters {#special-characters}

The parameter values passed in the request body in JSON format may contain special characters. These characters need to be escaped with a backslash `\`. For example, `\"` for double quotation marks `"` or `\\` for a backslash `\`. You can read more about other special characters in the Wikipedia article [Portable character set](https://en.wikipedia.org/wiki/Portable_character_set).

Example order description with the following fields:

- Recipient name `title`: Sun\Rise company depot.

- Comments for the order `comments`: "Gramercy Square" gated community. Call at reception.

```json
    "locations": [
        {
            "id": "1",
            "ref": "sever",
            "point": {
                "lat": 55.799036,
                "lon": 37.532592
            },
            "title": "Sun\\Rise company depot",
            "time_window": "09:00:00-18:00:00",
            "hard_window": false,
            "shared_service_duration_s": 600,
            "service_duration_s": 120,
            "shipment_size": {
                "units": 1
            },
            "comments": "\"Gramercy Square\" gated community. Call at the boom gate."
        }
    ]
```

<!-- source: en/vrp/_includes/feedback.md -->
<a href="feedback">
  <span class="button">Contact support</span>
</a>


<!-- endsource: en/vrp/_includes/feedback.md -->

