---
title: "CDA | Queries"
description: "<p>Contentstack provides certain queries that you can use to fetch filtered results. Queries can be used across all CDA API requests.</p>
<p>You can now pass the branch header in the API request to fetch or manage modules located within specific branches of the stack.</p>
<p class='note'><strong>Note</strong>: <a href=\"/docs/developers/branches\">Branches</a> is a plan-based feature that is available only in the new Contentstack interface.</p>
<p>Additionally, you can also set the include_branch query parameter to true to include the _branch top-level key in the response. This key specifies the unique ID of the branch where the concerned Contentstack module resides</p>"
url: "https://www.contentstack.com/docs/developers/apis/content-delivery-api/queries"
product: "Contentstack"
doc_type: "guide"
audience:
  - developers
  - admins
version: "current"
last_updated: "2026-06-02"
---

# CDA | Queries

Contentstack provides certain queries that you can use to fetch filtered results. Queries can be used across all CDA API requests.

You can now pass the branch header in the API request to fetch or manage modules located within specific branches of the stack.

**Note**: [Branches](/docs/developers/branches) is a plan-based feature that is available only in the new Contentstack interface.

Additionally, you can also set the include\_branch query parameter to true to include the \_branch top-level key in the response. This key specifies the unique ID of the branch where the concerned Contentstack module resides

## Taxonomy

Taxonomy, simplifies the process of organizing content in your system, making it effortless to find and retrieve information.

You can retrieve filtered entries using taxonomy through two different endpoints:

*   /taxonomies/entries?query
*   /content\_types/{content\_type\_uid}/entries?query

**Note**:

*   Sorting is supported only on title, created\_at, updated\_at, published\_at, and url fields.
*   Custom filters may time out for large datasets.

##### IN Operator

### IN Operator

**GET** `/taxonomies/entries?query={"taxonomies.taxonomy_uid" : { "$in" : ["term_uid1" , "term_uid2" ] }}`

Get all entries for a specific taxonomy that satisfy the given conditions provided in the "$in" query.

Your query should be as follows:

```
query={"taxonomies.taxonomy_uid" : { "$in" : ["term_uid1" , "term_uid2" ] }}
```

**Example**: If you want to retrieve entries with the color taxonomy applied and linked to the term red and/or yellow.

```
query={"taxonomies.color" : { "$in" : ["red" , "yellow" ] }}
```

##### OR Operator \[Taxonomy\]

#### Query Parameters

- **query** (optional)
  Provide a custom query in the string format.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`

#### Sample Response

```json
{
    "entries": [
        {
            "_content_type_uid": "electronic",
            "uid": "blt1934bf0caa658521",
            "_version": 1,
            "locale": "en-us",
            "ACL": {},
            "_in_progress": false,
            "created_at": "2023-11-20T11:52:16.469Z",
            "created_by": "bltc2f3e4fad0331975",
            "info1": "",
            "tags": [],
            "taxonomies": [
                {
                    "taxonomy_uid": "appliances",
                    "term_uid": "ac"
                },
                {
                    "taxonomy_uid": "appliances",
                    "term_uid": "fridge"
                },
                {
                    "taxonomy_uid": "computers",
                    "term_uid": "desktop"
                },
                {
                    "taxonomy_uid": "computers",
                    "term_uid": "hard_drive"
                },
                {
                    "taxonomy_uid": "color",
                    "term_uid": "green"
                },
                {
                    "taxonomy_uid": "color",
                    "term_uid": "yellow"
                }
            ],
            "title": "Electronic-e2",
            "updated_at": "2023-11-20T11:52:16.469Z",
            "updated_by": "bltc2f3e4fad0331975",
            "publish_details": {
                "time": "2023-11-20T11:54:48.965Z",
                "user": "bltc2f3e4fad0331975",
                "environment": "bltcd8ac33f1617637d",
                "locale": "en-us"
            }
        }
    ]
}
```

### OR Operator [Taxonomy]

**GET** `/taxonomies/entries?query={"$or": {"taxonomies.taxonomy_uid_1" : "term_uid1" }, {"taxonomies.taxonomy_uid_2" : "term_uid2" }]}`

Get all entries for a specific taxonomy that satisfy at least one of the given conditions provided in the “$or” query.

Your query should be as follows:

```
query={  "$or": [    { "taxonomies.taxonomy_uid_1" : "term_uid1" },    { "taxonomies.taxonomy_uid_2" : "term_uid2" }  ]}
```

**Example**: If you want to retrieve entries with either the color or size taxonomy applied and linked to the terms black and small, respectively.

```
query={  "$or": [      { "taxonomies.color" : "black" },      { "taxonomies.size" : "small" }    ]}
```

##### AND Operator \[Taxonomy\]

#### Query Parameters

- **query** (optional)
  Provide a custom query in the string format.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`

#### Sample Response

```json
{
    "entries": [
        {
            "_content_type_uid": "electronic",
            "uid": "blt1934bf0caa658521",
            "_version": 1,
            "locale": "en-us",
            "ACL": {},
            "_in_progress": false,
            "created_at": "2023-11-20T11:52:16.469Z",
            "created_by": "bltc2f3e4fad0331975",
            "info1": "",
            "tags": [],
            "taxonomies": [
                {
                    "taxonomy_uid": "appliances",
                    "term_uid": "ac"
                },
                {
                    "taxonomy_uid": "appliances",
                    "term_uid": "fridge"
                },
                {
                    "taxonomy_uid": "computers",
                    "term_uid": "desktop"
                },
                {
                    "taxonomy_uid": "computers",
                    "term_uid": "hard_drive"
                },
                {
                    "taxonomy_uid": "color",
                    "term_uid": "green"
                },
                {
                    "taxonomy_uid": "color",
                    "term_uid": "yellow"
                }
            ],
            "title": "Electronic-e2",
            "updated_at": "2023-11-20T11:52:16.469Z",
            "updated_by": "bltc2f3e4fad0331975",
            "publish_details": {
                "time": "2023-11-20T11:54:48.965Z",
                "user": "bltc2f3e4fad0331975",
                "environment": "bltcd8ac33f1617637d",
                "locale": "en-us"
            }
        }
    ]
}
```

### AND Operator [Taxonomy]

**GET** `/taxonomies/entries?query={"$and": [{ "taxonomies.taxonomy_uid_1" : "term_uid1" }, { "taxonomies.taxonomy_uid_2" : "term_uid2" }]}`

Get all entries for a specific taxonomy that satisfy all the conditions provided in the “$and” query.

Your query should be as follows:  

```
query={  "$and": [    { "taxonomies.taxonomy_uid_1" : "term_uid1" },    { "taxonomies.taxonomy_uid_2" : "term_uid2" }  ]}
```

**Example**: If you want to retrieve entries with the color and category taxonomies applied and linked to the terms black and mobile, respectively.

```
query={  "$and": [      { "taxonomies.color" : "black" },      { "taxonomies.category" : "mobile" }    ]}
```

##### Exists Operator

#### Query Parameters

- **query** (optional)
  Provide a custom query in the string format.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`

#### Sample Response

```json
{
    "entries": [
        {
            "_content_type_uid": "accessories",
            "uid": "blt52423be2c052a545",
            "_version": 1,
            "locale": "en-us",
            "ACL": {},
            "_in_progress": false,
            "created_at": "2023-11-20T11:52:23.701Z",
            "created_by": "bltc2f3e4fad0331975",
            "info3": "",
            "tags": [],
            "taxonomies": [
                {
                    "taxonomy_uid": "sports",
                    "term_uid": "swimming"
                },
                {
                    "taxonomy_uid": "appliances",
                    "term_uid": "tv"
                },
                {
                    "taxonomy_uid": "computers",
                    "term_uid": "desktop"
                },
                {
                    "taxonomy_uid": "computers",
                    "term_uid": "laptop"
                },
                {
                    "taxonomy_uid": "color",
                    "term_uid": "blue"
                },
                {
                    "taxonomy_uid": "color",
                    "term_uid": "green"
                }
            ],
            "title": "Accessories-e1",
            "updated_at": "2023-11-20T11:52:23.701Z",
            "updated_by": "bltc2f3e4fad0331975",
            "publish_details": {
                "time": "2023-11-20T11:54:48.928Z",
                "user": "bltc2f3e4fad0331975",
                "environment": "bltcd8ac33f1617637d",
                "locale": "en-us"
            }
        }
    ]
}
```

### Exists Operator

**GET** `/taxonomies/entries?query={{"taxonomies.taxonomy_uid" : { "$exists": true }}`

Get all entries for a specific taxonomy that if the value of the field, mentioned in the condition, exists.

Your query should be as follows:

```
query={"taxonomies.taxonomy_uid" : { "$exists": true }}
```

**Example**: If you want to retrieve entries with the color taxonomy applied.

```
query={"taxonomies.color" : { "$exists": true }}
```

##### Equal and Below Operator

#### Query Parameters

- **query** (optional)
  Provide a custom query in the string format.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`

#### Sample Response

```json
{
    "entries": [
        {
            "_content_type_uid": "complex",
            "uid": "blt6002475158e575ee",
            "_version": 1,
            "locale": "en-us",
            "ACL": {},
            "_in_progress": false,
            "created_at": "2023-11-20T11:52:40.997Z",
            "created_by": "bltc2f3e4fad0331975",
            "file": [
                {
                    "uid": "blt282b7b1e881cb457",
                    "_version": 1,
                    "title": "asset1",
                    "description": "",
                    "parent_uid": null,
                    "tags": [],
                    "created_by": "bltc2f3e4fad0331975",
                    "updated_by": "bltc2f3e4fad0331975",
                    "created_at": "2023-11-20T11:52:28.913Z",
                    "updated_at": "2023-11-20T11:52:28.913Z",
                    "content_type": "image/jpeg",
                    "file_size": "10541",
                    "filename": "JPG_validation.jpg",
                    "ACL": {},
                    "is_dir": false,
                    "publish_details": {
                        "time": "2023-11-20T11:54:49.407Z",
                        "user": "bltc2f3e4fad0331975",
                        "environment": "bltcd8ac33f1617637d",
                        "locale": "en-us"
                    },
                    "url": "https://stag-images.csnonprod.com/v3/assets/blt95ad1e743a5335c1/blt282b7b1e881cb457/655b487c904de053109e5133/JPG_validation.jpg"
                }
            ],
            "info4": "",
            "jrte": {
                "type": "doc",
                "attrs": {},
                "uid": "2c565072f9e6470da13a7298444078f5",
                "children": [
                    {
                        "uid": "9594009758804659bd7df88a28c39d72",
                        "type": "reference",
                        "attrs": {
                            "display-type": "display",
                            "asset-uid": "bltc9669cb0d5217dfc",
                            "content-type-uid": "sys_assets",
                            "asset-link": "https://stag-images.csnonprod.com/v3/assets/blt95ad1e743a5335c1/bltc9669cb0d5217dfc/655b4885bb1c8d0dbba2f218/Png_01.png",
                            "asset-name": "asset3",
                            "asset-type": "image/png",
                            "type": "asset",
                            "class-name": "embedded-asset",
                            "alt": "image/png",
                            "asset-alt": "image/png",
                            "inline": false
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "type": "p",
                        "attrs": {
                            "style": {},
                            "redactor-attributes": {},
                            "dir": "ltr"
                        },
                        "uid": "c6abcb47cdaa40d18ca48d2b07899baf",
                        "children": [
                            {
                                "text": ""
                            },
                            {
                                "uid": "61f51558176f4a7b9696fba9ab43b15b",
                                "type": "reference",
                                "attrs": {
                                    "display-type": "inline",
                                    "type": "entry",
                                    "class-name": "embedded-entry redactor-component inline-entry",
                                    "entry-uid": "blt1934bf0caa658521",
                                    "locale": "en-us",
                                    "content-type-uid": "electronic"
                                },
                                "children": [
                                    {
                                        "text": ""
                                    }
                                ]
                            },
                            {
                                "text": ""
                            }
                        ]
                    }
                ],
                "_version": 1
            },
            "rte": "<p></p><figure class=\"embedded-asset\" content-type-uid=\"sys_assets\" alt=\"asset2\" asset-alt=\"asset2\" type=\"asset\" data-sys-asset-filelink=\"https://stag-assets.csnonprod.com/v3/assets/blt95ad1e743a5335c1/bltf69e9216616b6f36/655b488019d7914f0dd61163/PDF_validation.pdf\" data-sys-asset-uid=\"bltf69e9216616b6f36\" data-sys-asset-filename=\"asset2\" data-sys-asset-contenttype=\"application/pdf\" data-sys-asset-alt=\"asset2\" sys-style-type=\"download\"></figure><div class=\"embedded-entry redactor-component block-entry\" type=\"entry\" data-sys-entry-uid=\"blt48c591c5ea1f704b\" data-sys-entry-locale=\"en-us\" data-sys-content-type-uid=\"electronic\" sys-style-type=\"block\"></div>",
            "tags": [],
            "taxonomies": [
                {
                    "taxonomy_uid": "color",
                    "term_uid": "navy_blue"
                }
            ],
            "title": "Complex-e1",
            "updated_at": "2023-11-20T11:52:40.997Z",
            "updated_by": "bltc2f3e4fad0331975",
            "publish_details": {
                "time": "2023-11-20T11:54:48.407Z",
                "user": "bltc2f3e4fad0331975",
                "environment": "bltcd8ac33f1617637d",
                "locale": "en-us"
            }
        }
    ]
}
```

### Equal and Below Operator

**GET** `/taxonomies/entries?query={"taxonomies.taxonomy_uid" : { "$eq_below": "term_uid", "levels" : level_number}}`

Get all entries for a specific taxonomy that match a specific term and all its descendant terms, requiring only the target term and a specified level.

**Note:** If you don't specify the level, the default behavior is to retrieve terms up to **level 10**.

```
query={  "taxonomies.taxonomy_uid" : { "$eq_below": "term_uid", "levels" : 2}}
```

**Example**: If you want to retrieve all entries with terms nested under blue, such as navy blue and sky blue, while also matching entries with the target term blue.

```
query={  "taxonomies.color" : { "$eq_below": "blue" }}
```

##### Below Operator

#### Query Parameters

- **query** (optional)
  Provide a custom query in the string format.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`

#### Sample Response

```json
{
    "entries": [
        {
            "_content_type_uid": "complex",
            "uid": "blt6002475158e575ee",
            "_version": 1,
            "locale": "en-us",
            "ACL": {},
            "_in_progress": false,
            "created_at": "2023-11-20T11:52:40.997Z",
            "created_by": "bltc2f3e4fad0331975",
            "file": [
                {
                    "uid": "blt282b7b1e881cb457",
                    "_version": 1,
                    "title": "asset1",
                    "description": "",
                    "parent_uid": null,
                    "tags": [],
                    "created_by": "bltc2f3e4fad0331975",
                    "updated_by": "bltc2f3e4fad0331975",
                    "created_at": "2023-11-20T11:52:28.913Z",
                    "updated_at": "2023-11-20T11:52:28.913Z",
                    "content_type": "image/jpeg",
                    "file_size": "10541",
                    "filename": "JPG_validation.jpg",
                    "ACL": {},
                    "is_dir": false,
                    "publish_details": {
                        "time": "2023-11-20T11:54:49.407Z",
                        "user": "bltc2f3e4fad0331975",
                        "environment": "bltcd8ac33f1617637d",
                        "locale": "en-us"
                    },
                    "url": "https://stag-images.csnonprod.com/v3/assets/blt95ad1e743a5335c1/blt282b7b1e881cb457/655b487c904de053109e5133/JPG_validation.jpg"
                }
            ],
            "info4": "",
            "jrte": {
                "type": "doc",
                "attrs": {},
                "uid": "2c565072f9e6470da13a7298444078f5",
                "children": [
                    {
                        "uid": "9594009758804659bd7df88a28c39d72",
                        "type": "reference",
                        "attrs": {
                            "display-type": "display",
                            "asset-uid": "bltc9669cb0d5217dfc",
                            "content-type-uid": "sys_assets",
                            "asset-link": "https://stag-images.csnonprod.com/v3/assets/blt95ad1e743a5335c1/bltc9669cb0d5217dfc/655b4885bb1c8d0dbba2f218/Png_01.png",
                            "asset-name": "asset3",
                            "asset-type": "image/png",
                            "type": "asset",
                            "class-name": "embedded-asset",
                            "alt": "image/png",
                            "asset-alt": "image/png",
                            "inline": false
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "type": "p",
                        "attrs": {
                            "style": {},
                            "redactor-attributes": {},
                            "dir": "ltr"
                        },
                        "uid": "c6abcb47cdaa40d18ca48d2b07899baf",
                        "children": [
                            {
                                "text": ""
                            },
                            {
                                "uid": "61f51558176f4a7b9696fba9ab43b15b",
                                "type": "reference",
                                "attrs": {
                                    "display-type": "inline",
                                    "type": "entry",
                                    "class-name": "embedded-entry redactor-component inline-entry",
                                    "entry-uid": "blt1934bf0caa658521",
                                    "locale": "en-us",
                                    "content-type-uid": "electronic"
                                },
                                "children": [
                                    {
                                        "text": ""
                                    }
                                ]
                            },
                            {
                                "text": ""
                            }
                        ]
                    }
                ],
                "_version": 1
            },
            "rte": "<p></p><figure class=\"embedded-asset\" content-type-uid=\"sys_assets\" alt=\"asset2\" asset-alt=\"asset2\" type=\"asset\" data-sys-asset-filelink=\"https://stag-assets.csnonprod.com/v3/assets/blt95ad1e743a5335c1/bltf69e9216616b6f36/655b488019d7914f0dd61163/PDF_validation.pdf\" data-sys-asset-uid=\"bltf69e9216616b6f36\" data-sys-asset-filename=\"asset2\" data-sys-asset-contenttype=\"application/pdf\" data-sys-asset-alt=\"asset2\" sys-style-type=\"download\"></figure><div class=\"embedded-entry redactor-component block-entry\" type=\"entry\" data-sys-entry-uid=\"blt48c591c5ea1f704b\" data-sys-entry-locale=\"en-us\" data-sys-content-type-uid=\"electronic\" sys-style-type=\"block\"></div>",
            "tags": [],
            "taxonomies": [
                {
                    "taxonomy_uid": "color",
                    "term_uid": "navy_blue"
                }
            ],
            "title": "Complex-e1",
            "updated_at": "2023-11-20T11:52:40.997Z",
            "updated_by": "bltc2f3e4fad0331975",
            "publish_details": {
                "time": "2023-11-20T11:54:48.407Z",
                "user": "bltc2f3e4fad0331975",
                "environment": "bltcd8ac33f1617637d",
                "locale": "en-us"
            }
        },
        {
            "_content_type_uid": "accessories",
            "uid": "blt52423be2c052a545",
            "_version": 1,
            "locale": "en-us",
            "ACL": {},
            "_in_progress": false,
            "created_at": "2023-11-20T11:52:23.701Z",
            "created_by": "bltc2f3e4fad0331975",
            "info3": "",
            "tags": [],
            "taxonomies": [
                {
                    "taxonomy_uid": "sports",
                    "term_uid": "swimming"
                },
                {
                    "taxonomy_uid": "appliances",
                    "term_uid": "tv"
                },
                {
                    "taxonomy_uid": "computers",
                    "term_uid": "desktop"
                },
                {
                    "taxonomy_uid": "computers",
                    "term_uid": "laptop"
                },
                {
                    "taxonomy_uid": "color",
                    "term_uid": "blue"
                },
                {
                    "taxonomy_uid": "color",
                    "term_uid": "green"
                }
            ],
            "title": "Accessories-e1",
            "updated_at": "2023-11-20T11:52:23.701Z",
            "updated_by": "bltc2f3e4fad0331975",
            "publish_details": {
                "time": "2023-11-20T11:54:48.928Z",
                "user": "bltc2f3e4fad0331975",
                "environment": "bltcd8ac33f1617637d",
                "locale": "en-us"
            }
        }
    ]
}
```

### Below Operator

**GET** `/taxonomies/entries?query={"taxonomies.taxonomy_uid" : { "$below": "term_uid", "levels" : 2}}`

Get all entries for a specific taxonomy that match all of their descendant terms by specifying only the target term and a specific level.

**Note:** If you don't specify the level, the default behavior is to retrieve terms up to **level 10**.

```
query={  "taxonomies.taxonomy_uid" : { "$below": "term_uid", "levels" : 2}}
```

**Example**: If you want to retrieve all entries containing terms nested under blue, such as navy blue and sky blue, but exclude entries that solely have the target term blue.

```
query={  "taxonomies.color" : { "$below": "blue" }}
```

##### Equal and Above Operator

#### Query Parameters

- **query** (required)
  Provide a custom query in the string format.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`

#### Sample Response

```json
{
    "entries": [
        {
            "_content_type_uid": "complex",
            "uid": "blt6002475158e575ee",
            "_version": 1,
            "locale": "en-us",
            "ACL": {},
            "_in_progress": false,
            "created_at": "2023-11-20T11:52:40.997Z",
            "created_by": "bltc2f3e4fad0331975",
            "file": [
                {
                    "uid": "blt282b7b1e881cb457",
                    "_version": 1,
                    "title": "asset1",
                    "description": "",
                    "parent_uid": null,
                    "tags": [],
                    "created_by": "bltc2f3e4fad0331975",
                    "updated_by": "bltc2f3e4fad0331975",
                    "created_at": "2023-11-20T11:52:28.913Z",
                    "updated_at": "2023-11-20T11:52:28.913Z",
                    "content_type": "image/jpeg",
                    "file_size": "10541",
                    "filename": "JPG_validation.jpg",
                    "ACL": {},
                    "is_dir": false,
                    "publish_details": {
                        "time": "2023-11-20T11:54:49.407Z",
                        "user": "bltc2f3e4fad0331975",
                        "environment": "bltcd8ac33f1617637d",
                        "locale": "en-us"
                    },
                    "url": "https://stag-images.csnonprod.com/v3/assets/blt95ad1e743a5335c1/blt282b7b1e881cb457/655b487c904de053109e5133/JPG_validation.jpg"
                }
            ],
            "info4": "",
            "jrte": {
                "type": "doc",
                "attrs": {},
                "uid": "2c565072f9e6470da13a7298444078f5",
                "children": [
                    {
                        "uid": "9594009758804659bd7df88a28c39d72",
                        "type": "reference",
                        "attrs": {
                            "display-type": "display",
                            "asset-uid": "bltc9669cb0d5217dfc",
                            "content-type-uid": "sys_assets",
                            "asset-link": "https://stag-images.csnonprod.com/v3/assets/blt95ad1e743a5335c1/bltc9669cb0d5217dfc/655b4885bb1c8d0dbba2f218/Png_01.png",
                            "asset-name": "asset3",
                            "asset-type": "image/png",
                            "type": "asset",
                            "class-name": "embedded-asset",
                            "alt": "image/png",
                            "asset-alt": "image/png",
                            "inline": false
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "type": "p",
                        "attrs": {
                            "style": {},
                            "redactor-attributes": {},
                            "dir": "ltr"
                        },
                        "uid": "c6abcb47cdaa40d18ca48d2b07899baf",
                        "children": [
                            {
                                "text": ""
                            },
                            {
                                "uid": "61f51558176f4a7b9696fba9ab43b15b",
                                "type": "reference",
                                "attrs": {
                                    "display-type": "inline",
                                    "type": "entry",
                                    "class-name": "embedded-entry redactor-component inline-entry",
                                    "entry-uid": "blt1934bf0caa658521",
                                    "locale": "en-us",
                                    "content-type-uid": "electronic"
                                },
                                "children": [
                                    {
                                        "text": ""
                                    }
                                ]
                            },
                            {
                                "text": ""
                            }
                        ]
                    }
                ],
                "_version": 1
            },
            "rte": "<p></p><figure class=\"embedded-asset\" content-type-uid=\"sys_assets\" alt=\"asset2\" asset-alt=\"asset2\" type=\"asset\" data-sys-asset-filelink=\"https://stag-assets.csnonprod.com/v3/assets/blt95ad1e743a5335c1/bltf69e9216616b6f36/655b488019d7914f0dd61163/PDF_validation.pdf\" data-sys-asset-uid=\"bltf69e9216616b6f36\" data-sys-asset-filename=\"asset2\" data-sys-asset-contenttype=\"application/pdf\" data-sys-asset-alt=\"asset2\" sys-style-type=\"download\"></figure><div class=\"embedded-entry redactor-component block-entry\" type=\"entry\" data-sys-entry-uid=\"blt48c591c5ea1f704b\" data-sys-entry-locale=\"en-us\" data-sys-content-type-uid=\"electronic\" sys-style-type=\"block\"></div>",
            "tags": [],
            "taxonomies": [
                {
                    "taxonomy_uid": "color",
                    "term_uid": "navy_blue"
                }
            ],
            "title": "Complex-e1",
            "updated_at": "2023-11-20T11:52:40.997Z",
            "updated_by": "bltc2f3e4fad0331975",
            "publish_details": {
                "time": "2023-11-20T11:54:48.407Z",
                "user": "bltc2f3e4fad0331975",
                "environment": "bltcd8ac33f1617637d",
                "locale": "en-us"
            }
        },
        {
            "_content_type_uid": "electronic",
            "uid": "blt85a6a1a707df84a5",
            "_version": 1,
            "locale": "en-us",
            "ACL": {},
            "_in_progress": false,
            "created_at": "2023-11-20T11:52:19.054Z",
            "created_by": "bltc2f3e4fad0331975",
            "info1": "",
            "tags": [],
            "taxonomies": [
                {
                    "taxonomy_uid": "color",
                    "term_uid": "dark_blue"
                }
            ],
            "title": "Electronic-e3",
            "updated_at": "2023-11-20T11:52:19.054Z",
            "updated_by": "bltc2f3e4fad0331975",
            "publish_details": {
                "time": "2023-11-20T11:54:48.957Z",
                "user": "bltc2f3e4fad0331975",
                "environment": "bltcd8ac33f1617637d",
                "locale": "en-us"
            }
        }
    ]
}
```

### Equal and Above Operator

**GET** `/taxonomies/entries?query={"taxonomies.taxonomy_uid": { "$eq_above": "term_uid", "levels": 2 }}`

Get all entries for a specific taxonomy that match a specific term and all its ancestor terms, requiring only the target term and a specified level.

**Note:** If you don't specify the level, the default behavior is to retrieve terms up to **level 10**.

```
query = {  "taxonomies.taxonomy_uid": { "$eq_above": "term_uid", "levels": 2 }}
```

**Example**: If you want to obtain all entries that include the term navy\_blue and its parent term blue.

```
query = {  "taxonomies.color": { "$eq_above": "navy_blue"}}
```

##### Above Operator

#### Query Parameters

- **query** (optional)
  Provide a custom query in the string format.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`

#### Sample Response

```json
{
    "entries": [
        {
            "_content_type_uid": "accessories",
            "uid": "blt52423be2c052a545",
            "_version": 1,
            "locale": "en-us",
            "ACL": {},
            "_in_progress": false,
            "created_at": "2023-11-20T11:52:23.701Z",
            "created_by": "bltc2f3e4fad0331975",
            "info3": "",
            "tags": [],
            "taxonomies": [
                {
                    "taxonomy_uid": "sports",
                    "term_uid": "swimming"
                },
                {
                    "taxonomy_uid": "appliances",
                    "term_uid": "tv"
                },
                {
                    "taxonomy_uid": "computers",
                    "term_uid": "desktop"
                },
                {
                    "taxonomy_uid": "computers",
                    "term_uid": "laptop"
                },
                {
                    "taxonomy_uid": "color",
                    "term_uid": "blue"
                },
                {
                    "taxonomy_uid": "color",
                    "term_uid": "green"
                }
            ],
            "title": "Accessories-e1",
            "updated_at": "2023-11-20T11:52:23.701Z",
            "updated_by": "bltc2f3e4fad0331975",
            "publish_details": {
                "time": "2023-11-20T11:54:48.928Z",
                "user": "bltc2f3e4fad0331975",
                "environment": "bltcd8ac33f1617637d",
                "locale": "en-us"
            }
        },
        {
            "_content_type_uid": "electronic",
            "uid": "blt48c591c5ea1f704b",
            "_version": 1,
            "locale": "en-us",
            "ACL": {},
            "_in_progress": false,
            "created_at": "2023-11-20T11:52:09.534Z",
            "created_by": "bltc2f3e4fad0331975",
            "info1": "",
            "tags": [],
            "taxonomies": [
                {
                    "taxonomy_uid": "appliances",
                    "term_uid": "tv"
                },
                {
                    "taxonomy_uid": "computers",
                    "term_uid": "laptop"
                },
                {
                    "taxonomy_uid": "color",
                    "term_uid": "blue"
                }
            ],
            "title": "Electronic-e1",
            "updated_at": "2023-11-20T11:52:09.534Z",
            "updated_by": "bltc2f3e4fad0331975",
            "publish_details": {
                "time": "2023-11-20T11:54:48.975Z",
                "user": "bltc2f3e4fad0331975",
                "environment": "bltcd8ac33f1617637d",
                "locale": "en-us"
            }
        }
    ]
}
```

### Above Operator

**GET** `/taxonomies/entries?query={ "taxonomies.taxonomy_uid": { "$above": "term_uid", "levels": 2 }}`

Get all entries for a specific taxonomy that match only the parent term(s) of a specified target term, excluding the target term itself. You can also specify a specific level.

**Note:** If you don't specify the level, the default behavior is to retrieve terms up to **level 10**.

```
query = {  "taxonomies.taxonomy_uid": { "$above": "term_uid", "levels": 2 }}
```

**Example**: If you wish to match entries with all the terms above the target term navy\_blue, excluding navy\_blue itself.

```
query = {  "taxonomies.color": { "$above": "navy_blue" }}
```

#### Query Parameters

- **query** (optional)
  Provide a custom query in the string format.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`

#### Sample Response

```json
{
    "entries": [
        {
            "_content_type_uid": "accessories",
            "uid": "blt52423be2c052a545",
            "_version": 1,
            "locale": "en-us",
            "ACL": {},
            "_in_progress": false,
            "created_at": "2023-11-20T11:52:23.701Z",
            "created_by": "bltc2f3e4fad0331975",
            "info3": "",
            "tags": [],
            "taxonomies": [
                {
                    "taxonomy_uid": "sports",
                    "term_uid": "swimming"
                },
                {
                    "taxonomy_uid": "appliances",
                    "term_uid": "tv"
                },
                {
                    "taxonomy_uid": "computers",
                    "term_uid": "desktop"
                },
                {
                    "taxonomy_uid": "computers",
                    "term_uid": "laptop"
                },
                {
                    "taxonomy_uid": "color",
                    "term_uid": "blue"
                },
                {
                    "taxonomy_uid": "color",
                    "term_uid": "green"
                }
            ],
            "title": "Accessories-e1",
            "updated_at": "2023-11-20T11:52:23.701Z",
            "updated_by": "bltc2f3e4fad0331975",
            "publish_details": {
                "time": "2023-11-20T11:54:48.928Z",
                "user": "bltc2f3e4fad0331975",
                "environment": "bltcd8ac33f1617637d",
                "locale": "en-us"
            }
        },
        {
            "_content_type_uid": "electronic",
            "uid": "blt48c591c5ea1f704b",
            "_version": 1,
            "locale": "en-us",
            "ACL": {},
            "_in_progress": false,
            "created_at": "2023-11-20T11:52:09.534Z",
            "created_by": "bltc2f3e4fad0331975",
            "info1": "",
            "tags": [],
            "taxonomies": [
                {
                    "taxonomy_uid": "appliances",
                    "term_uid": "tv"
                },
                {
                    "taxonomy_uid": "computers",
                    "term_uid": "laptop"
                },
                {
                    "taxonomy_uid": "color",
                    "term_uid": "blue"
                }
            ],
            "title": "Electronic-e1",
            "updated_at": "2023-11-20T11:52:09.534Z",
            "updated_by": "bltc2f3e4fad0331975",
            "publish_details": {
                "time": "2023-11-20T11:54:48.975Z",
                "user": "bltc2f3e4fad0331975",
                "environment": "bltcd8ac33f1617637d",
                "locale": "en-us"
            }
        }
    ]
}
```

## Equals Operator

### Equals Operator

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"field_UID": "value"}`

Get entries containing the field values matching the condition in the query.  
This query will work for both entries as well as assets.

**Example:** In the Products content type, you have a field named Title ("uid":"title") field. If, for instance, you want to retrieve all the entries in which the value for the Title field is 'Redmi 3S', you can set the parameters as:

{"title": "Redmi 3S"}

Let’s consider another example. You want to retrieve all the entries that have their start date as 8th December, 2017. Now, you need to set this parameter with the date in the ISO Date format as below:

{ "start\_date": "2017-12-08T00:00:00.000Z" }

This will give you all the entries where the start date is 8th December, 2017.

##### Equals Operator Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "locale": "en-us",
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta278bb5672180c94",
                "_content_type_uid": "product"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt8312af2299516ccf",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [],
          "discount_in_percentage": 15
        }
      ],
      "ACL": {},
      "uid": "bltf2fa776b05a127a2",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:21.851Z",
      "updated_at": "2019-08-23T12:41:07.543Z",
      "_version": 5,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T12:41:13.700Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Equals Operator Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"group_UID.field_UID": "value"}`

Get entries where the value of a field within a Group field matches the condition in the query. This query is specifically for fields that are part of the Group field.

This query will work for entries only.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a subfield named Card Type ("uid":"card\_type"). If, for instance, you want to retrieve the entries in which the value for the Card Type field is 'Debit Card', you can use the following value in the ‘query’ parameter:

{"bank\_offers.card\_type": "Debit Card"}

##### Equals Operator Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "locale": "en-us",
      "title": "Redmi Note Prime",
      "url": "/redmi-note-prime",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 117.3,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "size": 16,
      "color": "Black",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd9dc1c7363c42bbd",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "blt98058bb38f89fc5f",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "ACL": {},
      "uid": "blt4f1fd991ec80e52f",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:25.397Z",
      "updated_at": "2019-08-23T13:02:21.457Z",
      "_version": 4,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T13:02:25.439Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "locale": "en-us",
      "title": "iPhone 7 128GB",
      "url": "/mobiles/iphone-7",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 749,
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-09-07",
      "instock": true,
      "tags": [],
      "size": 128,
      "color": "Black",
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltf05621cb52725856",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "ACL": {},
      "uid": "bltbd92ac498e3d5f96",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:20.072Z",
      "updated_at": "2019-08-23T12:50:53.424Z",
      "_version": 13,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T12:50:56.727Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "locale": "en-us",
      "title": "iPhone 7 64GB",
      "url": "/mobiles/iphone-7",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 649,
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-09-07",
      "instock": true,
      "tags": [],
      "size": 32,
      "color": "Rose Gold",
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltbd92ac498e3d5f96",
                "_content_type_uid": "product"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt98058bb38f89fc5f",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "bltd9dc1c7363c42bbd",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "ACL": {},
      "uid": "blt70cc672f4f806d3e",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:23.624Z",
      "updated_at": "2019-08-23T12:42:21.386Z",
      "_version": 4,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T12:59:36.361Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "locale": "en-us",
      "title": "Galaxy Note",
      "url": "/mobiles/galaxy-note",
      "description": "<p>Snapdragon</p>",
      "size": 32,
      "color": "Gold",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 101,
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-07-07",
      "instock": false,
      "tags": [
        "redmi"
      ],
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltf8ab1ad67af3c66b",
                "_content_type_uid": "product"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt6e94809281fc418f",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "ACL": {},
      "uid": "blt5b85ef3b0587565c",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:18.286Z",
      "updated_at": "2019-08-23T12:41:55.402Z",
      "_version": 4,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T12:41:59.165Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "locale": "en-us",
      "title": "Galaxy J1",
      "url": "/mobiles/galaxyj1",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 159.78,
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2017-01-06",
      "instock": true,
      "tags": [],
      "size": 8,
      "color": "Black",
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltc00b46e648007a0c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "blt6e94809281fc418f",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "ACL": {},
      "uid": "bltf8ab1ad67af3c66b",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:28.965Z",
      "updated_at": "2019-08-23T11:38:15.309Z",
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T11:38:18.546Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Equals Operator Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"modular_block_UID.block_UID.field_UID": "value"}`

Get entries where the value of a field within a Modular Blocks field matches the condition in the query. This query is specifically for fields that are part of the Modular Blocks field.

This query will work for entries only.

**Example:** In the Products content type, we have a Modular Blocks field named Additional Info ("uid":"additional\_info") that contains the Deals ("uid":"deals") block. And, within this Deals block, we have a field named Deal Name ("uid":"deal\_name"). If, for instance, you want to retrieve the entries in which the value for the Deal Name field is 'Christmas Deal', you can use the following value in the query parameter:

{"additional\_info.deals.deal\_name": "Christmas Deal"}

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "locale": "en-us",
      "title": "Galaxy Note",
      "url": "/mobiles/galaxy-note",
      "description": "<p>Snapdragon</p>",
      "size": 32,
      "color": "Gold",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 101,
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-07-07",
      "instock": false,
      "tags": [
        "redmi"
      ],
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltf8ab1ad67af3c66b",
                "_content_type_uid": "product"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt6e94809281fc418f",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "ACL": {},
      "uid": "blt5b85ef3b0587565c",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:18.286Z",
      "updated_at": "2019-08-23T12:41:55.402Z",
      "_version": 4,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T12:41:59.165Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "locale": "en-us",
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta278bb5672180c94",
                "_content_type_uid": "product"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt8312af2299516ccf",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [],
          "discount_in_percentage": 15
        }
      ],
      "ACL": {},
      "uid": "bltf2fa776b05a127a2",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:21.851Z",
      "updated_at": "2019-08-23T12:41:07.543Z",
      "_version": 5,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T12:41:13.700Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Not-equals Operator

### Not-equals Operator

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"field_UID": { "$ne": "value"}}`

Get all the entries in which the value of a field does not match the value provided in the condition.  
  
This query will work for both entries as well as assets.

**Example:** In the Product content type, you have a field named Price in USD. Now, you need to retrieve all entries where the value of this field not equal to '146' for this field. The parameter can be used as:

{ "price\_in\_usd": { "$ne": 146 } }

This will give you all the entries that have the value for Price in USD not set to '146'.

Let’s consider another example. You want to retrieve all the entries except the ones that have their start date as 8th December, 2017. Now, you need to set this parameter with the date in the ISO Date format as below:

{ "start\_date": { "$ne": "2017-12-08T00:00:00.000Z" } }

This will give you all the entries where the start date is not 8th December, 2017.

##### Not-equals Operator Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "locale": "en-us",
      "title": "Redmi Note Prime",
      "url": "/redmi-note-prime",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 117.3,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "size": 16,
      "color": "Black",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd9dc1c7363c42bbd",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "blt98058bb38f89fc5f",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "ACL": {},
      "uid": "blt4f1fd991ec80e52f",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:25.397Z",
      "updated_at": "2019-08-23T13:02:21.457Z",
      "_version": 4,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T13:02:25.439Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "locale": "en-us",
      "title": "iPhone 7 128GB",
      "url": "/mobiles/iphone-7",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 749,
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-09-07",
      "instock": true,
      "tags": [],
      "size": 128,
      "color": "Black",
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltf05621cb52725856",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "ACL": {},
      "uid": "bltbd92ac498e3d5f96",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:20.072Z",
      "updated_at": "2019-08-23T12:50:53.424Z",
      "_version": 13,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T12:50:56.727Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "locale": "en-us",
      "title": "iPhone 7 64GB",
      "url": "/mobiles/iphone-7",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 649,
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-09-07",
      "instock": true,
      "tags": [],
      "size": 32,
      "color": "Rose Gold",
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltbd92ac498e3d5f96",
                "_content_type_uid": "product"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt98058bb38f89fc5f",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "bltd9dc1c7363c42bbd",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "ACL": {},
      "uid": "blt70cc672f4f806d3e",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:23.624Z",
      "updated_at": "2019-08-23T12:42:21.386Z",
      "_version": 4,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T12:59:36.361Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "locale": "en-us",
      "title": "Galaxy Note",
      "url": "/mobiles/galaxy-note",
      "description": "<p>Snapdragon</p>",
      "size": 32,
      "color": "Gold",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 101,
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-07-07",
      "instock": false,
      "tags": [
        "redmi"
      ],
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltf8ab1ad67af3c66b",
                "_content_type_uid": "product"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt6e94809281fc418f",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "ACL": {},
      "uid": "blt5b85ef3b0587565c",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:18.286Z",
      "updated_at": "2019-08-23T12:41:55.402Z",
      "_version": 4,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T12:41:59.165Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "locale": "en-us",
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta278bb5672180c94",
                "_content_type_uid": "product"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt8312af2299516ccf",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [],
          "discount_in_percentage": 15
        }
      ],
      "ACL": {},
      "uid": "bltf2fa776b05a127a2",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:21.851Z",
      "updated_at": "2019-08-23T12:41:07.543Z",
      "_version": 5,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T12:41:13.700Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "locale": "en-us",
      "title": "Galaxy J1",
      "url": "/mobiles/galaxyj1",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 159.78,
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2017-01-06",
      "instock": true,
      "tags": [],
      "size": 8,
      "color": "Black",
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltc00b46e648007a0c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "blt6e94809281fc418f",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "ACL": {},
      "uid": "bltf8ab1ad67af3c66b",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:28.965Z",
      "updated_at": "2019-08-23T11:38:15.309Z",
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T11:38:18.546Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Not-equals Operator Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"group_UID.field_UID": { "$ne": "value"}}`

Get entries where the value of a field does not match the value provided in the condition. This query is specifically for fields that are part of the Group field.  
  
This query will work for entries only.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a subfield named Card Type ("uid":"card\_type"). If, for instance, you want to retrieve the entries in which the value for the Card Type field is _NOT_ 'Debit Card', use the following value in the query parameter:

{"bank\_offers.card\_type": {"$ne": "Debit Card"}}

##### Not-equals Operator Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "locale": "en-us",
      "title": "Redmi Note 3",
      "url": "/mobiles/redmi-note-3",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 146,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-03-09",
      "instock": true,
      "tags": [
        "redmi",
        "smart"
      ],
      "size": 16,
      "color": "Gold",
      "additional_info": [
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        },
        {
          "rating": {
            "stars": 4
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltc00b46e648007a0c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "ACL": {},
      "uid": "blta278bb5672180c94",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:27.182Z",
      "updated_at": "2019-08-23T13:01:19.866Z",
      "_version": 4,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T13:01:23.290Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "locale": "en-us",
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta278bb5672180c94",
                "_content_type_uid": "product"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt8312af2299516ccf",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [],
          "discount_in_percentage": 15
        }
      ],
      "ACL": {},
      "uid": "bltf2fa776b05a127a2",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2019-08-16T08:19:21.851Z",
      "updated_at": "2019-08-23T12:41:07.543Z",
      "_version": 5,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-23T12:41:13.700Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Not-equals Operator Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"modular_block_UID.block_UID.field_UID": { "$ne": "value"}}`

Get entries where the value of a field within the Modular Blocks field does not match the condition in the query. This query is specifically for fields that are part of any block within a Modular Block field.

This query will work for entries only.

**Example:** In the Products content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Deals ("uid":"deals") block. And, within this Deals block, we have a field named Deal Name ("uid":"deal\_name"). If, for instance, you want to retrieve the entries in which the value for the Deal Name field is _NOT_ 'Christmas Deal', use the following value in the query parameter:

{"additional\_info.deals.deal\_name": {"$ne": "Christmas Deal"}}

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
   "entries":[
      {
         "_version":3,
         "locale":"en-us",
         "uid":"blte63b2ff6f6414d8e",
         "ACL":{

         },
         "_in_progress":false,
         "additional_info":[
            {
               "rating":{
                  "stars":2
               }
            },
            {
               "deals":{
                  "deal_name":"Deals of the Day",
                  "deal_details":"If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                  "coupons":[
                     {
                        "daily_coupons":{
                           "coupon_name":"Lucky Twenty",
                           "coupon_details":"First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                           "coupon_discount_rate":20
                        }
                     },
                     {
                        "special_coupons":{
                           "special_coupon_name":"Kitchen Bonanza",
                           "special_coupon_details":"Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                           "special_coupon_discount_rate":60
                        }
                     }
                  ]
               }
            },
            {
               "related_products":{
                  "products":[
                     {
                        "uid":"blta250054cfa4f5aab",
                        "_content_type_uid":"product"
                     },
                     {
                        "uid":"bltd383742b89bef7af",
                        "_content_type_uid":"product"
                     }
                  ],
                  "home_appliances":[
                     {
                        "uid":"blt10e68dbbfc14b75b",
                        "_content_type_uid":"electronics"
                     }
                  ]
               }
            }
         ],
         "bank_offers":[
            {
               "bank":[
                  {
                     "uid":"blt27729fae9269607c",
                     "_content_type_uid":"bank"
                  }
               ],
               "card_type":[
                  "Debit Card"
               ],
               "discount_in_percentage":27
            },
            {
               "bank":[
                  {
                     "uid":"bltfbe674ca5af1ffa3",
                     "_content_type_uid":"bank"
                  }
               ],
               "card_type":[
                  "Debit Card",
                  "Credit Card"
               ],
               "discount_in_percentage":24
            }
         ],
         "brand":[

         ],
         "categories":[
            {
               "uid":"blt9d72fa3afc11d27f",
               "_content_type_uid":"category"
            }
         ],
         "color":"Black",
         "created_at":"2020-05-11T12:44:49.928Z",
         "created_by":"blt42e55757d70d5f81026a2b9f",
         "description":"<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
         "images":[
            {
               "uid":"blt50a7a9dd6866776f",
               "created_at":"2019-08-16T08:05:18.932Z",
               "updated_at":"2019-08-16T08:05:18.932Z",
               "created_by":"bltcd82b2c6bf913241",
               "updated_by":"bltcd82b2c6bf913241",
               "content_type":"image/jpeg",
               "file_size":"145200",
               "tags":[

               ],
               "filename":"01.jpg",
               "url":"https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
               "ACL":[

               ],
               "is_dir":false,
               "_version":1,
               "title":"01.jpg",
               "publish_details":{
                  "environment":"blta39a4441696e35e0",
                  "locale":"en-us",
                  "time":"2019-08-19T12:28:56.964Z",
                  "user":"blt587a89fc7883c56700a95bfe"
               }
            }
         ],
         "instock":true,
         "launch_date":"2016-08-17",
         "price_in_usd":117.3,
         "size":16,
         "tags":[

         ],
         "title":"Redmi Note Prime",
         "updated_at":"2020-05-11T15:14:45.980Z",
         "updated_by":"blt42e55757d70d5f81026a2b9f",
         "url":"/redmi-note-prime",
         "publish_details":{
            "environment":"blta39a4441696e35e0",
            "locale":"en-us",
            "time":"2020-05-11T15:15:36.629Z",
            "user":"blt42e55757d70d5f81026a2b9f"
         }
      },
      {
         "_version":3,
         "locale":"en-us",
         "uid":"bltdbe63e789fd3d08e",
         "ACL":{

         },
         "_in_progress":false,
         "additional_info":[
            {
               "rating":{
                  "stars":5
               }
            },
            {
               "deals":{
                  "deal_name":"Independence Day Deal",
                  "deal_details":"If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                  "coupons":[
                     {
                        "special_coupons":{
                           "special_coupon_name":"Independence Bumper Offer",
                           "special_coupon_details":"Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                           "special_coupon_discount_rate":40
                        }
                     },
                     {
                        "faqs":{
                           "coupon_faqs":[
                              {
                                 "question":"How to avail coupon benefits?",
                                 "answer":"<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                              },
                              {
                                 "question":"Where can I find the coupons I collected?",
                                 "answer":"<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                              },
                              {
                                 "question":"Can you collect a coupon first and purchase an item later?",
                                 "answer":"<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                              }
                           ]
                        }
                     }
                  ]
               }
            },
            {
               "related_products":{
                  "products":[
                     {
                        "uid":"blt6549021b3bbeae5c",
                        "_content_type_uid":"product"
                     }
                  ],
                  "home_appliances":[
                     {
                        "uid":"blt0e302e4595da19c1",
                        "_content_type_uid":"electronics"
                     }
                  ]
               }
            }
         ],
         "bank_offers":[
            {
               "bank":[
                  {
                     "uid":"blt27729fae9269607c",
                     "_content_type_uid":"bank"
                  }
               ],
               "card_type":[
                  "Credit Card"
               ],
               "discount_in_percentage":60
            },
            {
               "bank":[
                  {
                     "uid":"blt4526259b9dc1dd3e",
                     "_content_type_uid":"bank"
                  }
               ],
               "card_type":[
                  "Credit Card",
                  "Debit Card"
               ],
               "discount_in_percentage":55
            }
         ],
         "brand":[
            {
               "uid":"blte6095f030e4b7a30",
               "_content_type_uid":"brand"
            }
         ],
         "categories":[
            {
               "uid":"blt9d72fa3afc11d27f",
               "_content_type_uid":"category"
            },
            {
               "uid":"blt9fa0f59d03862aa7",
               "_content_type_uid":"category"
            }
         ],
         "color":"Rose Gold",
         "created_at":"2020-05-11T12:47:32.533Z",
         "created_by":"blt42e55757d70d5f81026a2b9f",
         "description":"<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
         "images":[
            {
               "uid":"bltda02effe8bc97bb9",
               "created_at":"2019-08-16T08:05:09.588Z",
               "updated_at":"2019-08-16T08:05:09.588Z",
               "created_by":"bltcd82b2c6bf913241",
               "updated_by":"bltcd82b2c6bf913241",
               "content_type":"image/jpeg",
               "file_size":"45091",
               "tags":[

               ],
               "filename":"Apple-iPhone-SE-Rose-Gold.jpg",
               "url":"https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
               "ACL":[

               ],
               "is_dir":false,
               "_version":1,
               "title":"Apple-iPhone-SE-Rose-Gold.jpg",
               "publish_details":{
                  "environment":"blta39a4441696e35e0",
                  "locale":"en-us",
                  "time":"2019-08-19T12:28:56.964Z",
                  "user":"blt587a89fc7883c56700a95bfe"
               }
            }
         ],
         "instock":true,
         "launch_date":"2016-09-07",
         "price_in_usd":649,
         "size":32,
         "tags":[

         ],
         "title":"iPhone 7 64GB",
         "updated_at":"2020-05-11T15:08:56.567Z",
         "updated_by":"blt42e55757d70d5f81026a2b9f",
         "url":"/mobiles/iphone-7",
         "publish_details":{
            "environment":"blta39a4441696e35e0",
            "locale":"en-us",
            "time":"2020-05-11T15:09:05.364Z",
            "user":"blt42e55757d70d5f81026a2b9f"
         }
      },
      {
         "_version":3,
         "locale":"en-us",
         "uid":"blt6549021b3bbeae5c",
         "ACL":{

         },
         "_in_progress":false,
         "additional_info":[
            {
               "rating":{
                  "stars":1
               }
            },
            {
               "deals":{
                  "deal_name":"Black Friday Deal",
                  "deal_details":"If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                  "coupons":[
                     {
                        "special_coupons":{
                           "special_coupon_name":"Friday Bumper Coupon",
                           "special_coupon_details":"Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                           "special_coupon_discount_rate":70
                        }
                     },
                     {
                        "faqs":{
                           "coupon_faqs":[
                              {
                                 "question":"How to avail coupon benefits?",
                                 "answer":"<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                              },
                              {
                                 "question":"Where can I find the coupons I collected?",
                                 "answer":"<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                              },
                              {
                                 "question":"Can you collect a coupon first and purchase an item later?",
                                 "answer":"<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                              }
                           ]
                        }
                     }
                  ]
               }
            },
            {
               "related_products":{
                  "products":[
                     {
                        "uid":"bltdbe63e789fd3d08e",
                        "_content_type_uid":"product"
                     }
                  ],
                  "home_appliances":[
                     {
                        "uid":"bltee5deb99c3be1b75",
                        "_content_type_uid":"electronics"
                     },
                     {
                        "uid":"blt2349e9c0b7ce06fa",
                        "_content_type_uid":"electronics"
                     },
                     {
                        "uid":"blt7375bb3c0e4859de",
                        "_content_type_uid":"electronics"
                     },
                     {
                        "uid":"blt44857e1ae5e9e272",
                        "_content_type_uid":"kitchen_appliances"
                     },
                     {
                        "uid":"blt49139d483f5799bc",
                        "_content_type_uid":"kitchen_appliances"
                     },
                     {
                        "uid":"blt1ecc761f990dc547",
                        "_content_type_uid":"kitchen_appliances"
                     }
                  ]
               }
            }
         ],
         "bank_offers":[
            {
               "bank":[
                  {
                     "uid":"bltfbe674ca5af1ffa3",
                     "_content_type_uid":"bank"
                  }
               ],
               "card_type":[
                  "Debit Card"
               ],
               "discount_in_percentage":12
            },
            {
               "bank":[
                  {
                     "uid":"bltd477bad133866222",
                     "_content_type_uid":"bank"
                  }
               ],
               "card_type":[
                  "Debit Card"
               ],
               "discount_in_percentage":10
            }
         ],
         "brand":[
            {
               "uid":"blte6095f030e4b7a30",
               "_content_type_uid":"brand"
            }
         ],
         "categories":[
            {
               "uid":"blt9d72fa3afc11d27f",
               "_content_type_uid":"category"
            }
         ],
         "color":"Black",
         "created_at":"2020-05-10T13:09:01.499Z",
         "created_by":"blt42e55757d70d5f81026a2b9f",
         "description":"<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
         "images":[
            {
               "uid":"bltc4f54f7ce3155b0e",
               "created_at":"2019-08-16T08:05:15.889Z",
               "updated_at":"2019-08-16T08:05:15.889Z",
               "created_by":"bltcd82b2c6bf913241",
               "updated_by":"bltcd82b2c6bf913241",
               "content_type":"image/jpeg",
               "file_size":"48163",
               "tags":[

               ],
               "filename":"iphone7.jpg",
               "url":"https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
               "ACL":[

               ],
               "is_dir":false,
               "_version":1,
               "title":"iphone7.jpg",
               "publish_details":{
                  "environment":"blta39a4441696e35e0",
                  "locale":"en-us",
                  "time":"2019-08-19T12:28:56.964Z",
                  "user":"blt587a89fc7883c56700a95bfe"
               }
            }
         ],
         "instock":true,
         "launch_date":"2016-09-07",
         "price_in_usd":749,
         "size":128,
         "tags":[

         ],
         "title":"iPhone 7 128GB",
         "updated_at":"2020-05-11T14:29:53.230Z",
         "updated_by":"blt42e55757d70d5f81026a2b9f",
         "url":"/mobiles/iphone-7",
         "publish_details":{
            "environment":"blta39a4441696e35e0",
            "locale":"en-us",
            "time":"2020-05-11T14:30:07.305Z",
            "user":"blt42e55757d70d5f81026a2b9f"
         }
      },
      {
         "_version":1,
         "locale":"en-us",
         "uid":"blta250054cfa4f5aab",
         "ACL":{

         },
         "_in_progress":false,
         "additional_info":[
            {
               "rating":{
                  "stars":5
               }
            },
            {
               "deals":{
                  "deal_name":"Summer Deal",
                  "deal_details":"If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                  "coupons":[
                     {
                        "daily_coupons":{
                           "coupon_name":"Early Bird Coupon",
                           "coupon_details":"Save 50 percent on your first three purchases.",
                           "coupon_discount_rate":50
                        }
                     },
                     {
                        "special_coupons":{
                           "special_coupon_name":"Beat the Heat Coupon",
                           "special_coupon_details":"Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                           "special_coupon_discount_rate":40
                        }
                     },
                     {
                        "faqs":{
                           "coupon_faqs":[
                              {
                                 "question":"How to avail coupon benefits?",
                                 "answer":"<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                              },
                              {
                                 "question":"Where can I find the coupons I collected?",
                                 "answer":"<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                              },
                              {
                                 "question":"Can you collect a coupon first and purchase an item later?",
                                 "answer":"<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                              }
                           ]
                        }
                     }
                  ]
               }
            },
            {
               "related_products":{
                  "products":[
                     {
                        "uid":"blte63b2ff6f6414d8e",
                        "_content_type_uid":"product"
                     },
                     {
                        "uid":"bltd383742b89bef7af",
                        "_content_type_uid":"product"
                     }
                  ],
                  "home_appliances":[
                     {
                        "uid":"bltee5deb99c3be1b75",
                        "_content_type_uid":"electronics"
                     },
                     {
                        "uid":"blt7d3413d9daf14f5f",
                        "_content_type_uid":"electronics"
                     },
                     {
                        "uid":"blt1ecc761f990dc547",
                        "_content_type_uid":"kitchen_appliances"
                     }
                  ]
               }
            }
         ],
         "bank_offers":[
            {
               "bank":[
                  {
                     "uid":"blt83b7564e5d749a90",
                     "_content_type_uid":"bank"
                  }
               ],
               "card_type":[
                  "Credit Card"
               ],
               "discount_in_percentage":12
            }
         ],
         "brand":[
            {
               "uid":"blta2e0d2130eb86263",
               "_content_type_uid":"brand"
            }
         ],
         "categories":[
            {
               "uid":"blt9d72fa3afc11d27f",
               "_content_type_uid":"category"
            },
            {
               "uid":"blt9fa0f59d03862aa7",
               "_content_type_uid":"category"
            }
         ],
         "color":"Gold",
         "created_at":"2020-05-11T14:12:28.805Z",
         "created_by":"blt42e55757d70d5f81026a2b9f",
         "description":"<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
         "images":[
            {
               "uid":"blt9c3dff6e3151d374",
               "created_at":"2019-08-16T08:05:27.886Z",
               "updated_at":"2019-08-16T08:05:27.886Z",
               "created_by":"bltcd82b2c6bf913241",
               "updated_by":"bltcd82b2c6bf913241",
               "content_type":"image/jpeg",
               "file_size":"5275",
               "tags":[

               ],
               "filename":"download.jpg",
               "url":"https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
               "ACL":[

               ],
               "is_dir":false,
               "_version":1,
               "title":"download.jpg",
               "publish_details":{
                  "environment":"blta39a4441696e35e0",
                  "locale":"en-us",
                  "time":"2019-08-19T12:28:47.432Z",
                  "user":"blt587a89fc7883c56700a95bfe"
               }
            }
         ],
         "instock":true,
         "launch_date":"2016-03-09",
         "price_in_usd":146,
         "size":16,
         "tags":[
            "redmi",
            "smart"
         ],
         "title":"Redmi Note 3",
         "updated_at":"2020-05-11T14:12:28.805Z",
         "updated_by":"blt42e55757d70d5f81026a2b9f",
         "url":"/mobiles/redmi-note-3",
         "publish_details":{
            "environment":"blta39a4441696e35e0",
            "locale":"en-us",
            "time":"2020-05-11T14:12:38.975Z",
            "user":"blt42e55757d70d5f81026a2b9f"
         }
      },
      {
         "_version":2,
         "locale":"en-us",
         "uid":"blt1e1d4385e656835a",
         "ACL":{

         },
         "_in_progress":false,
         "additional_info":[
            {
               "rating":{
                  "stars":4
               }
            },
            {
               "deals":{
                  "deal_name":"Black Friday Deal",
                  "deal_details":"If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                  "coupons":[
                     {
                        "special_coupons":{
                           "special_coupon_name":"Friday Bumper Coupon",
                           "special_coupon_details":"Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                           "special_coupon_discount_rate":70
                        }
                     },
                     {
                        "faqs":{
                           "coupon_faqs":[
                              {
                                 "question":"How to avail coupon benefits?",
                                 "answer":"<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                              },
                              {
                                 "question":"Where can I find the coupons I collected?",
                                 "answer":"<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                              },
                              {
                                 "question":"Can you collect a coupon first and purchase an item later?",
                                 "answer":"<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                              }
                           ]
                        }
                     }
                  ]
               }
            },
            {
               "related_products":{
                  "products":[
                     {
                        "uid":"bltd8ff819f10c6973b",
                        "_content_type_uid":"product"
                     }
                  ],
                  "home_appliances":[
                     {
                        "uid":"blt23f4282bd1173ae9",
                        "_content_type_uid":"electronics"
                     },
                     {
                        "uid":"blt49139d483f5799bc",
                        "_content_type_uid":"kitchen_appliances"
                     }
                  ]
               }
            }
         ],
         "bank_offers":[
            {
               "bank":[
                  {
                     "uid":"blt4526259b9dc1dd3e",
                     "_content_type_uid":"bank"
                  }
               ],
               "card_type":[
                  "Credit Card",
                  "Debit Card"
               ],
               "discount_in_percentage":25
            },
            {
               "bank":[
                  {
                     "uid":"bltd477bad133866222",
                     "_content_type_uid":"bank"
                  }
               ],
               "card_type":[
                  "Credit Card"
               ],
               "discount_in_percentage":30
            }
         ],
         "brand":[
            {
               "uid":"blt5499dd00bb716b14",
               "_content_type_uid":"brand"
            }
         ],
         "categories":[
            {
               "uid":"blt9d72fa3afc11d27f",
               "_content_type_uid":"category"
            }
         ],
         "color":"Black",
         "created_at":"2020-05-11T13:32:18.406Z",
         "created_by":"blt42e55757d70d5f81026a2b9f",
         "description":"<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
         "images":[
            {
               "uid":"blt11b00b9a335ed526",
               "created_at":"2019-08-16T08:05:18.935Z",
               "updated_at":"2019-08-16T08:05:18.935Z",
               "created_by":"bltcd82b2c6bf913241",
               "updated_by":"bltcd82b2c6bf913241",
               "content_type":"image/jpeg",
               "file_size":"166189",
               "tags":[

               ],
               "filename":"samsung-galaxy-j1.jpg",
               "url":"https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
               "ACL":[

               ],
               "is_dir":false,
               "_version":1,
               "title":"samsung-galaxy-j1.jpg",
               "publish_details":{
                  "environment":"blta39a4441696e35e0",
                  "locale":"en-us",
                  "time":"2019-08-19T12:28:56.964Z",
                  "user":"blt587a89fc7883c56700a95bfe"
               }
            }
         ],
         "instock":true,
         "launch_date":"2017-01-06",
         "price_in_usd":159.78,
         "size":8,
         "tags":[

         ],
         "title":"Galaxy J1",
         "updated_at":"2020-05-11T14:05:25.577Z",
         "updated_by":"blt42e55757d70d5f81026a2b9f",
         "url":"/mobiles/galaxy-j1",
         "publish_details":{
            "environment":"blta39a4441696e35e0",
            "locale":"en-us",
            "time":"2020-05-11T14:05:33.715Z",
            "user":"blt42e55757d70d5f81026a2b9f"
         }
      }
   ]
}
```

## Array Equals Operator

### Array Equals Operator

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={ "field_UID": { "$in": [ value1, value2, ...] } }`

Get entries in which the value of a field matches to any of the given values. This parameter will compare field values of entries to that of the values provided in the condition.  
This query will work for entries only.

**Example:** In the Product content type, you have a field named Price in USD. Now, you need to retrieve all the entries where value of this field is one among the given set of values. The query fired using the '$in' parameter is given below:

{ "price\_in\_usd": { "$in": \[ 101, 749 \] } }

This will retrieve all the entries that have the value of Price in USD field set to '101' or 749'.

##### Array Equals Operator Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
   "entries":[
      {
         "_version":3,
         "locale":"en-us",
         "uid":"bltd8ff819f10c6973b",
         "ACL":{

         },
         "_in_progress":false,
         "additional_info":[
            {
               "rating":{
                  "stars":2
               }
            },
            {
               "deals":{
                  "deal_name":"Christmas Deal",
                  "deal_details":"If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                  "coupons":[
                     {
                        "daily_coupons":{
                           "coupon_name":"Early Bird Coupon",
                           "coupon_details":"Save 50 percent on your first three purchases.",
                           "coupon_discount_rate":50
                        }
                     },
                     {
                        "special_coupons":{
                           "special_coupon_name":"High Five",
                           "special_coupon_details":"Save 5 percent on purchasing items worth a total price of 2000 USD.",
                           "special_coupon_discount_rate":5
                        }
                     },
                     {
                        "faqs":{
                           "coupon_faqs":[
                              {
                                 "question":"How to avail coupon benefits?",
                                 "answer":"<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                              },
                              {
                                 "question":"Where can I find the coupons I collected?",
                                 "answer":"<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                              },
                              {
                                 "question":"Can you collect a coupon first and purchase an item later?",
                                 "answer":"<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                              }
                           ]
                        }
                     }
                  ]
               }
            },
            {
               "related_products":{
                  "products":[
                     {
                        "uid":"blt1e1d4385e656835a",
                        "_content_type_uid":"product"
                     }
                  ],
                  "home_appliances":[
                     {
                        "uid":"blt23f4282bd1173ae9",
                        "_content_type_uid":"electronics"
                     },
                     {
                        "uid":"blt49139d483f5799bc",
                        "_content_type_uid":"kitchen_appliances"
                     }
                  ]
               }
            }
         ],
         "bank_offers":[
            {
               "bank":[
                  {
                     "uid":"blt83b7564e5d749a90",
                     "_content_type_uid":"bank"
                  }
               ],
               "card_type":[
                  "Debit Card"
               ],
               "discount_in_percentage":8
            }
         ],
         "brand":[
            {
               "uid":"blt5499dd00bb716b14",
               "_content_type_uid":"brand"
            }
         ],
         "categories":[
            {
               "uid":"blt9fa0f59d03862aa7",
               "_content_type_uid":"category"
            },
            {
               "uid":"blt9d72fa3afc11d27f",
               "_content_type_uid":"category"
            }
         ],
         "color":"Gold",
         "created_at":"2020-05-10T13:47:02.576Z",
         "created_by":"blt42e55757d70d5f81026a2b9f",
         "description":"<p>Snapdragon</p>",
         "images":[
            {
               "uid":"blt19c34e5374418484",
               "created_at":"2019-08-16T08:05:30.460Z",
               "updated_at":"2019-08-16T08:05:30.460Z",
               "created_by":"bltcd82b2c6bf913241",
               "updated_by":"bltcd82b2c6bf913241",
               "content_type":"image/jpeg",
               "file_size":"69609",
               "tags":[

               ],
               "filename":"in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
               "url":"https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
               "ACL":[

               ],
               "is_dir":false,
               "_version":1,
               "title":"in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
               "publish_details":{
                  "environment":"blta39a4441696e35e0",
                  "locale":"en-us",
                  "time":"2019-08-19T12:28:47.432Z",
                  "user":"blt587a89fc7883c56700a95bfe"
               }
            },
            {
               "uid":"bltf8c7852efd06d11f",
               "created_at":"2019-08-16T08:05:05.009Z",
               "updated_at":"2019-08-16T08:05:05.009Z",
               "created_by":"bltcd82b2c6bf913241",
               "updated_by":"bltcd82b2c6bf913241",
               "content_type":"image/png",
               "file_size":"63422",
               "tags":[

               ],
               "filename":"in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
               "url":"https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
               "ACL":[

               ],
               "is_dir":false,
               "_version":1,
               "title":"in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
               "publish_details":{
                  "environment":"blta39a4441696e35e0",
                  "locale":"en-us",
                  "time":"2019-08-19T12:29:04.717Z",
                  "user":"blt587a89fc7883c56700a95bfe"
               }
            }
         ],
         "instock":false,
         "launch_date":"2016-07-07",
         "price_in_usd":101,
         "size":32,
         "tags":[
            "redmi"
         ],
         "title":"Galaxy Note",
         "updated_at":"2020-05-11T14:56:10.946Z",
         "updated_by":"blt42e55757d70d5f81026a2b9f",
         "url":"/mobiles/galaxy-note",
         "publish_details":{
            "environment":"blta39a4441696e35e0",
            "locale":"en-us",
            "time":"2020-05-11T14:56:31.536Z",
            "user":"blt42e55757d70d5f81026a2b9f"
         }
      },
      {
         "_version":3,
         "locale":"en-us",
         "uid":"blt6549021b3bbeae5c",
         "ACL":{

         },
         "_in_progress":false,
         "additional_info":[
            {
               "rating":{
                  "stars":1
               }
            },
            {
               "deals":{
                  "deal_name":"Black Friday Deal",
                  "deal_details":"If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                  "coupons":[
                     {
                        "special_coupons":{
                           "special_coupon_name":"Friday Bumper Coupon",
                           "special_coupon_details":"Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                           "special_coupon_discount_rate":70
                        }
                     },
                     {
                        "faqs":{
                           "coupon_faqs":[
                              {
                                 "question":"How to avail coupon benefits?",
                                 "answer":"<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                              },
                              {
                                 "question":"Where can I find the coupons I collected?",
                                 "answer":"<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                              },
                              {
                                 "question":"Can you collect a coupon first and purchase an item later?",
                                 "answer":"<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                              }
                           ]
                        }
                     }
                  ]
               }
            },
            {
               "related_products":{
                  "products":[
                     {
                        "uid":"bltdbe63e789fd3d08e",
                        "_content_type_uid":"product"
                     }
                  ],
                  "home_appliances":[
                     {
                        "uid":"bltee5deb99c3be1b75",
                        "_content_type_uid":"electronics"
                     },
                     {
                        "uid":"blt2349e9c0b7ce06fa",
                        "_content_type_uid":"electronics"
                     },
                     {
                        "uid":"blt7375bb3c0e4859de",
                        "_content_type_uid":"electronics"
                     },
                     {
                        "uid":"blt44857e1ae5e9e272",
                        "_content_type_uid":"kitchen_appliances"
                     },
                     {
                        "uid":"blt49139d483f5799bc",
                        "_content_type_uid":"kitchen_appliances"
                     },
                     {
                        "uid":"blt1ecc761f990dc547",
                        "_content_type_uid":"kitchen_appliances"
                     }
                  ]
               }
            }
         ],
         "bank_offers":[
            {
               "bank":[
                  {
                     "uid":"bltfbe674ca5af1ffa3",
                     "_content_type_uid":"bank"
                  }
               ],
               "card_type":[
                  "Debit Card"
               ],
               "discount_in_percentage":12
            },
            {
               "bank":[
                  {
                     "uid":"bltd477bad133866222",
                     "_content_type_uid":"bank"
                  }
               ],
               "card_type":[
                  "Debit Card"
               ],
               "discount_in_percentage":10
            }
         ],
         "brand":[
            {
               "uid":"blte6095f030e4b7a30",
               "_content_type_uid":"brand"
            }
         ],
         "categories":[
            {
               "uid":"blt9d72fa3afc11d27f",
               "_content_type_uid":"category"
            }
         ],
         "color":"Black",
         "created_at":"2020-05-10T13:09:01.499Z",
         "created_by":"blt42e55757d70d5f81026a2b9f",
         "description":"<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
         "images":[
            {
               "uid":"bltc4f54f7ce3155b0e",
               "created_at":"2019-08-16T08:05:15.889Z",
               "updated_at":"2019-08-16T08:05:15.889Z",
               "created_by":"bltcd82b2c6bf913241",
               "updated_by":"bltcd82b2c6bf913241",
               "content_type":"image/jpeg",
               "file_size":"48163",
               "tags":[

               ],
               "filename":"iphone7.jpg",
               "url":"https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
               "ACL":[

               ],
               "is_dir":false,
               "_version":1,
               "title":"iphone7.jpg",
               "publish_details":{
                  "environment":"blta39a4441696e35e0",
                  "locale":"en-us",
                  "time":"2019-08-19T12:28:56.964Z",
                  "user":"blt587a89fc7883c56700a95bfe"
               }
            }
         ],
         "instock":true,
         "launch_date":"2016-09-07",
         "price_in_usd":749,
         "size":128,
         "tags":[

         ],
         "title":"iPhone 7 128GB",
         "updated_at":"2020-05-11T14:29:53.230Z",
         "updated_by":"blt42e55757d70d5f81026a2b9f",
         "url":"/mobiles/iphone-7",
         "publish_details":{
            "environment":"blta39a4441696e35e0",
            "locale":"en-us",
            "time":"2020-05-11T14:30:07.305Z",
            "user":"blt42e55757d70d5f81026a2b9f"
         }
      }
   ]
}
```

### Array Equals Operator Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={ "group_UID.field_UID": { "$in": [ value1, value2, ...] } }`

Get entries where the value of a field, within a Group field, matches any of the given values. This parameter will compare field values of entries to that of the values provided in the condition. This query is specifically for fields that are part of the Group field.  
  
This query will work for entries only.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a subfield named Card Type ("uid":"card\_type"). If, for instance, you want to retrieve the entries in which the values for the Card Type field are ‘Credit Card’ and 'Debit Card', use the following value in the query parameter:

{"bank\_offers.card\_type": {"$in": \["Credit Card", "Debit Card"\]}}

##### Array Equals Operator Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Array Equals Operator Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={ "modular_block_UID.block_UID.field_UID": { "$in": [ value1, value2, ...] } }`

Get entries where the value of a field within Modular Blocks matches to any of the given values. This query is specifically for fields that are part of any block within a Modular Block field.  
  
This query will work for entries only.

**Example:** In the Products content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Deals ("uid":"deals") block. And, within this Deals block, we have a field named Deal Name ("uid":"deal\_name"). If, for instance, you want to retrieve the entries in which the values for the Deal Name field are 'Christmas Deal’ and ‘Summer Deal', use the following value in the query parameter:

{"additional\_info.deals.deal\_name": {"$in": \["Christmas Deal", "Summer Deal"\]}}

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Array Not-equals Operator

### Array Not-equals Operator

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={ "field_UID": { "$nin": [ value1, value2, ...]}}`

Get all entries in which the value of a field does not match to any of the given values. This parameter will compare field values of entries to that of the values provided in the condition, and the query will retrieve entries that have field values that does not match to any of the values provided.  
  
This query will work for entries only.

**Example:** In the Product content type, you have a field named Price in USD. Now, you need to retrieve the entries where the field value does not fall in the given set. You can send the parameter as:

{ "price\_in\_usd": { "$nin": \[ 101, 749 \] } }

This will give you all the entries that do not have the value for Price in USD set to '101' or '749'.

##### Array Not-equals Operator Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Array Not-equals Operator Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={ "group_UID.field_UID": { "$nin": [ value1, value2, ...]}}`

Get entries in which the value of a field does not match any of the values provided in the condition. This query is specifically for fields that are part of the Group field.  
This query will work for entries only.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a subfield named Card Type ("uid":"card\_type"). If, for instance, you want to retrieve the entries in which the values for the Card Type field are _NOT_ 'Debit Card', use the following value in the query parameter:

{"bank\_offers.card\_type": {"$nin": \["Debit Card"\]}}

##### Array Not-equals Operator Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Array Not-equals Operator Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={ "modular_block_UID.block_UID.field_UID": { "$nin": [ value1, value2, ...]}}`

Get entries where the values of the fields within Modular Blocks does not match the condition in the query. This query is specifically for fields that are part of any block within a Modular Block field.  
This query will work for entries only.

**Example:** In the Products content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Deals ("uid":"deals") block. And, within this Deals block, we have a field named Deal Name ("uid":"deal\_name"). If, for instance, you want to retrieve the entries in which the values for the Deal Name field are _NOT_ 'Christmas Deal’ and ‘Summer Deal', use the following value in the query parameter:

{ "additional\_info.deals.deal\_name": { "$nin": \[ "Christmas Deal", "Summer Deal" \] } }

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (optional)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Include Reference

### Include Reference

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&include[]={reference_field_UID}`

When fetching an entry, the content of referred entries that are part of the parent entry is NOT included in the Response body; you only get their UIDs. To include the content of the referred entries in your response, you need to use the include\[\] parameter and specify the UID of the reference field as value.The API request should be as follows: https://cdn.contentstack.io/v3/content\_types/product/entries?include\[\]={reference\_field\_UID. This query will work for entries only.

**Example:** In the Product content type, there is a reference field called Categories, which refers entries of another content type. Let’s assume that you had created an entry for the Product content type, and the value selected in the Categories field was ‘Mobiles’. If you fetch the entry using the [Get a Single Entry](/docs/developers/apis/content-delivery-api#get-a-single-entry) API request, you would get all the details of the entry in the response, but the value against the Categories field would be UID of the referenced entry (i.e., UID of the ‘Mobiles’ entry in this case).

In order to fetch the details of the entry used in the Categories reference field, you need to use the include\[\] parameter in the following manner:

https://cdn.contentstack.io/v3/content\_types/product/entries?include\[\]=categories

In case you wish to fetch the data of the entries of multiple reference fields, use the include\[\] parameter in the following manner:

https://cdn.contentstack.io/v3/content\_types/product/entries?include\[\]=categories&include\[\]=brands

**Note:**

*   The maximum reference depth limit to which a multiple content type referencing Reference field works is **3 levels** deep.
*   A maximum of **100 reference** paths can be queried in a single request using the include\[\] parameter.

##### Include Reference Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **include[]** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "locale": "en-us",
          "title": "Mobiles",
          "description": "<p>Find the latest smartphones of 2017&nbsp;by leading brands at one stop. We cover all phones from all the brands to help you to buy the latest mobile in India.</p>",
          "tags": [],
          "ACL": {},
          "uid": "blt9d72fa3afc11d27f",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "created_at": "2019-08-16T08:19:32.498Z",
          "updated_at": "2019-08-16T08:19:32.498Z",
          "_content_type_uid": "category",
          "_version": 1,
          "_in_progress": false,
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:29.103Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "locale": "en-us",
          "title": "Mobiles",
          "description": "<p>Find the latest smartphones of 2017&nbsp;by leading brands at one stop. We cover all phones from all the brands to help you to buy the latest mobile in India.</p>",
          "tags": [],
          "ACL": {},
          "uid": "blt9d72fa3afc11d27f",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "created_at": "2019-08-16T08:19:32.498Z",
          "updated_at": "2019-08-16T08:19:32.498Z",
          "_content_type_uid": "category",
          "_version": 1,
          "_in_progress": false,
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:29.103Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "locale": "en-us",
          "title": "Bestseller",
          "description": "<p>The top-selling products based on the&nbsp;currently&nbsp;trend&nbsp;in the market.</p>",
          "tags": [],
          "ACL": {},
          "uid": "blt9fa0f59d03862aa7",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "created_at": "2019-08-16T08:19:30.742Z",
          "updated_at": "2019-08-16T08:19:30.742Z",
          "_content_type_uid": "category",
          "_version": 1,
          "_in_progress": false,
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:29.103Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "locale": "en-us",
          "title": "Mobiles",
          "description": "<p>Find the latest smartphones of 2017&nbsp;by leading brands at one stop. We cover all phones from all the brands to help you to buy the latest mobile in India.</p>",
          "tags": [],
          "ACL": {},
          "uid": "blt9d72fa3afc11d27f",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "created_at": "2019-08-16T08:19:32.498Z",
          "updated_at": "2019-08-16T08:19:32.498Z",
          "_content_type_uid": "category",
          "_version": 1,
          "_in_progress": false,
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:29.103Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "locale": "en-us",
          "title": "Bestseller",
          "description": "<p>The top-selling products based on the&nbsp;currently&nbsp;trend&nbsp;in the market.</p>",
          "tags": [],
          "ACL": {},
          "uid": "blt9fa0f59d03862aa7",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "created_at": "2019-08-16T08:19:30.742Z",
          "updated_at": "2019-08-16T08:19:30.742Z",
          "_content_type_uid": "category",
          "_version": 1,
          "_in_progress": false,
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:29.103Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "locale": "en-us",
          "title": "Mobiles",
          "description": "<p>Find the latest smartphones of 2017&nbsp;by leading brands at one stop. We cover all phones from all the brands to help you to buy the latest mobile in India.</p>",
          "tags": [],
          "ACL": {},
          "uid": "blt9d72fa3afc11d27f",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "created_at": "2019-08-16T08:19:32.498Z",
          "updated_at": "2019-08-16T08:19:32.498Z",
          "_content_type_uid": "category",
          "_version": 1,
          "_in_progress": false,
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:29.103Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "locale": "en-us",
          "title": "Mobiles",
          "description": "<p>Find the latest smartphones of 2017&nbsp;by leading brands at one stop. We cover all phones from all the brands to help you to buy the latest mobile in India.</p>",
          "tags": [],
          "ACL": {},
          "uid": "blt9d72fa3afc11d27f",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "created_at": "2019-08-16T08:19:32.498Z",
          "updated_at": "2019-08-16T08:19:32.498Z",
          "_content_type_uid": "category",
          "_version": 1,
          "_in_progress": false,
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:29.103Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "locale": "en-us",
          "title": "Mobiles",
          "description": "<p>Find the latest smartphones of 2017&nbsp;by leading brands at one stop. We cover all phones from all the brands to help you to buy the latest mobile in India.</p>",
          "tags": [],
          "ACL": {},
          "uid": "blt9d72fa3afc11d27f",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "created_at": "2019-08-16T08:19:32.498Z",
          "updated_at": "2019-08-16T08:19:32.498Z",
          "_content_type_uid": "category",
          "_version": 1,
          "_in_progress": false,
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:29.103Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "locale": "en-us",
          "title": "Bestseller",
          "description": "<p>The top-selling products based on the&nbsp;currently&nbsp;trend&nbsp;in the market.</p>",
          "tags": [],
          "ACL": {},
          "uid": "blt9fa0f59d03862aa7",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "created_at": "2019-08-16T08:19:30.742Z",
          "updated_at": "2019-08-16T08:19:30.742Z",
          "_content_type_uid": "category",
          "_version": 1,
          "_in_progress": false,
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:29.103Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "locale": "en-us",
          "title": "Mobiles",
          "description": "<p>Find the latest smartphones of 2017&nbsp;by leading brands at one stop. We cover all phones from all the brands to help you to buy the latest mobile in India.</p>",
          "tags": [],
          "ACL": {},
          "uid": "blt9d72fa3afc11d27f",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "created_at": "2019-08-16T08:19:32.498Z",
          "updated_at": "2019-08-16T08:19:32.498Z",
          "_content_type_uid": "category",
          "_version": 1,
          "_in_progress": false,
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:29.103Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Include Reference Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&include[]={reference_group_UID.field_UID OR group_uid.reference_group_UID.field_uid}`

If the reference field is part of a Group field, you need to use the Group field UID as well as the reference field UID using a dot operator.

This query will work for entries only.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a Reference field named Bank ("uid":"bank"). If, for instance, you want to retrieve entries and include the data of the reference field as well, you need to use the include\[\] parameter in the following manner:

https://cda.contentstack.io/v3/content\_types/product/entries?include\[\]=bank\_offers.bank

##### Include Reference for Nested Referenced Field

In case the referenced entry further has reference to another entry (nested referencing), you can use the dot operator to fetch the content of the nested references as well.  
This query will work for entries only.

**Example:** Consider that you have a content type named ‘Blogs’ which has two reference fields (‘Authors’ and ‘Related Articles’) referring to the ‘Authors’ and ‘Blogs’ content types (self-referencing), respectively. So, we have the following reference relationships between the content types:

*   ‘Blogs’ refers to ‘Author’ content type
*   ‘Blogs’ refers to ‘Blogs’ content type (self-referencing)

Now, consider that you want to retrieve an entry of the ‘Blogs’ content type along with the data of the author (details from the ‘Author’ content type) who authored the entry. You also want to fetch the data of the authors who wrote the ‘Related Articles’ as well that are referenced in this entry, (details from the ‘Blogs’ content type).

In this case, you need to use related\_articles.authors in the include\[\] parameter as follows:

https://cdn.contentstack.io/v3/content\_types/content\_type\_uid/entries?include\[\]=authors&include\[\]=related\_articles.authors

##### Include Reference Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **include[]** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "locale": "en-us",
      "title": "iPhone 7 128GB",
      "url": "/mobiles/iphone-7",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [],
      "price_in_usd": 749,
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-09-07",
      "instock": true,
      "tags": [],
      "size": 128,
      "color": "Black",
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "ACL": {},
      "uid": "bltbd92ac498e3d5f96",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "blt587a89fc7883c56700a95bfe",
      "created_at": "2019-08-16T08:19:20.072Z",
      "updated_at": "2019-08-19T13:53:16.240Z",
      "_version": 11,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-19T13:53:19.611Z",
        "user": "blt587a89fc7883c56700a95bfe"
      }
    },
    {
      "locale": "en-us",
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p><p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "ACL": {},
      "uid": "bltf2fa776b05a127a2",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "bltcd82b2c6bf913241",
      "created_at": "2019-08-16T08:19:21.851Z",
      "updated_at": "2019-08-16T08:19:48.548Z",
      "_version": 2,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-19T11:44:59.974Z",
        "user": "blt587a89fc7883c56700a95bfe"
      }
    },
    {
      "locale": "en-us",
      "title": "iPhone 7 64GB",
      "url": "/mobiles/iphone-7",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [],
      "price_in_usd": 649,
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-09-07",
      "instock": true,
      "tags": [],
      "size": 32,
      "color": "Rose Gold",
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "ACL": {},
      "uid": "blt70cc672f4f806d3e",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "bltcd82b2c6bf913241",
      "created_at": "2019-08-16T08:19:23.624Z",
      "updated_at": "2019-08-16T08:19:46.765Z",
      "_version": 2,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-19T11:44:59.974Z",
        "user": "blt587a89fc7883c56700a95bfe"
      }
    },
    {
      "locale": "en-us",
      "title": "Redmi Note Prime",
      "url": "/redmi-note-prime",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p><p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [],
      "price_in_usd": 117.3,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "size": 16,
      "color": "Black",
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "ACL": {},
      "uid": "blt4f1fd991ec80e52f",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "bltcd82b2c6bf913241",
      "created_at": "2019-08-16T08:19:25.397Z",
      "updated_at": "2019-08-16T08:19:44.984Z",
      "_version": 2,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-19T11:44:59.974Z",
        "user": "blt587a89fc7883c56700a95bfe"
      }
    },
    {
      "locale": "en-us",
      "title": "Redmi Note 3",
      "url": "/mobiles/redmi-note-3",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [],
      "price_in_usd": 146,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-03-09",
      "instock": true,
      "tags": [
        "redmi",
        "smart"
      ],
      "size": 16,
      "color": "Gold",
      "additional_info": [
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        },
        {
          "rating": {
            "stars": 5
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "ACL": {},
      "uid": "blta278bb5672180c94",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "bltcd82b2c6bf913241",
      "created_at": "2019-08-16T08:19:27.182Z",
      "updated_at": "2019-08-16T08:19:43.214Z",
      "_version": 2,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-19T11:44:59.974Z",
        "user": "blt587a89fc7883c56700a95bfe"
      }
    },
    {
      "locale": "en-us",
      "title": "Galaxy J1",
      "url": "/mobiles/galaxyj1",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [],
      "price_in_usd": 159.78,
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2017-01-06",
      "instock": true,
      "tags": [],
      "size": 8,
      "color": "Black",
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "ACL": {},
      "uid": "bltf8ab1ad67af3c66b",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "bltcd82b2c6bf913241",
      "created_at": "2019-08-16T08:19:28.965Z",
      "updated_at": "2019-08-16T08:19:41.430Z",
      "_version": 2,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-19T11:44:59.974Z",
        "user": "blt587a89fc7883c56700a95bfe"
      }
    },
    {
      "locale": "en-us",
      "title": "Galaxy Note",
      "url": "/mobiles/galaxy-note",
      "description": "<p>Snapdragon</p>",
      "size": 32,
      "color": "Gold",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [],
      "price_in_usd": 101,
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-07-07",
      "instock": false,
      "tags": [
        "redmi"
      ],
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products."
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "ACL": {},
      "uid": "blt5b85ef3b0587565c",
      "created_by": "bltcd82b2c6bf913241",
      "updated_by": "bltcd82b2c6bf913241",
      "created_at": "2019-08-16T08:19:18.286Z",
      "updated_at": "2019-08-16T08:19:39.630Z",
      "_version": 2,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2019-08-19T11:44:59.974Z",
        "user": "blt587a89fc7883c56700a95bfe"
      }
    }
  ]
}
```

### Include Reference Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&include[]={modular_block_UID.block_UID.reference_field_uid}`

If the reference field is part of a Modular Blocks field, you need to use the Modular Blocks UID, Block UID, as well as the reference field UID using a dot operator.  
  
This query will work for entries only.

**Example:** In the Products’ content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Related Products ("uid":"related\_products") block. And, within this Block field, we have a field named Products ("uid":"products"). If, for instance, you want to retrieve entries and include the data of the reference field, you need to use the include\[\] parameter in the following manner:

https://cda.contentstack.io/v3/content\_types/product/entries?include\[\]=additional\_info.related\_products.products

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **include[]** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "_version": 1,
                "locale": "en-us",
                "uid": "blta250054cfa4f5aab",
                "ACL": {},
                "_in_progress": false,
                "additional_info": [
                  {
                    "rating": {
                      "stars": 5
                    }
                  },
                  {
                    "deals": {
                      "deal_name": "Summer Deal",
                      "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                      "coupons": [
                        {
                          "daily_coupons": {
                            "coupon_name": "Early Bird Coupon",
                            "coupon_details": "Save 50 percent on your first three purchases.",
                            "coupon_discount_rate": 50
                          }
                        },
                        {
                          "special_coupons": {
                            "special_coupon_name": "Beat the Heat Coupon",
                            "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                            "special_coupon_discount_rate": 40
                          }
                        },
                        {
                          "faqs": {
                            "coupon_faqs": [
                              {
                                "question": "How to avail coupon benefits?",
                                "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                              },
                              {
                                "question": "Where can I find the coupons I collected?",
                                "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                              },
                              {
                                "question": "Can you collect a coupon first and purchase an item later?",
                                "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                              }
                            ]
                          }
                        }
                      ]
                    }
                  },
                  {
                    "related_products": {
                      "products": [
                        {
                          "uid": "blte63b2ff6f6414d8e",
                          "_content_type_uid": "product"
                        },
                        {
                          "uid": "bltd383742b89bef7af",
                          "_content_type_uid": "product"
                        }
                      ],
                      "home_appliances": [
                        {
                          "uid": "bltee5deb99c3be1b75",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt7d3413d9daf14f5f",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt1ecc761f990dc547",
                          "_content_type_uid": "kitchen_appliances"
                        }
                      ]
                    }
                  }
                ],
                "bank_offers": [
                  {
                    "bank": [
                      {
                        "uid": "blt83b7564e5d749a90",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Credit Card"
                    ],
                    "discount_in_percentage": 12
                  }
                ],
                "brand": [
                  {
                    "uid": "blta2e0d2130eb86263",
                    "_content_type_uid": "brand"
                  }
                ],
                "categories": [
                  {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                  },
                  {
                    "uid": "blt9fa0f59d03862aa7",
                    "_content_type_uid": "category"
                  }
                ],
                "color": "Gold",
                "created_at": "2020-05-11T14:12:28.805Z",
                "created_by": "blt42e55757d70d5f81026a2b9f",
                "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
                "images": [
                  {
                    "uid": "blt9c3dff6e3151d374",
                    "created_at": "2019-08-16T08:05:27.886Z",
                    "updated_at": "2019-08-16T08:05:27.886Z",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "content_type": "image/jpeg",
                    "file_size": "5275",
                    "tags": [],
                    "filename": "download.jpg",
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
                    "ACL": [],
                    "is_dir": false,
                    "_version": 1,
                    "title": "download.jpg",
                    "publish_details": {
                      "environment": "blta39a4441696e35e0",
                      "locale": "en-us",
                      "time": "2019-08-19T12:28:47.432Z",
                      "user": "blt587a89fc7883c56700a95bfe"
                    }
                  }
                ],
                "instock": true,
                "launch_date": "2016-03-09",
                "price_in_usd": 146,
                "size": 16,
                "tags": [
                  "redmi",
                  "smart"
                ],
                "title": "Redmi Note 3",
                "updated_at": "2020-05-11T14:12:28.805Z",
                "updated_by": "blt42e55757d70d5f81026a2b9f",
                "url": "/mobiles/redmi-note-3",
                "publish_details": {
                  "environment": "blta39a4441696e35e0",
                  "locale": "en-us",
                  "time": "2020-05-11T14:12:38.975Z",
                  "user": "blt42e55757d70d5f81026a2b9f"
                },
                "_content_type_uid": "product"
              },
              {
                "title": "Redmi 3S",
                "url": "/mobiles/redmi-3s",
                "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
                "images": [
                  {
                    "uid": "blt198546991c0eea0a",
                    "created_at": "2019-08-16T08:05:21.114Z",
                    "updated_at": "2019-08-16T08:05:21.114Z",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "content_type": "image/jpeg",
                    "file_size": "28485",
                    "tags": [],
                    "filename": "xiaomi-redmi-note-3-gray.jpg",
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
                    "ACL": [],
                    "is_dir": false,
                    "_version": 1,
                    "title": "xiaomi-redmi-note-3-gray.jpg",
                    "publish_details": {
                      "environment": "blta39a4441696e35e0",
                      "locale": "en-us",
                      "time": "2019-08-19T12:28:56.964Z",
                      "user": "blt587a89fc7883c56700a95bfe"
                    }
                  }
                ],
                "categories": [
                  {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                  }
                ],
                "price_in_usd": 102.63,
                "brand": [
                  {
                    "uid": "blta2e0d2130eb86263",
                    "_content_type_uid": "brand"
                  }
                ],
                "launch_date": "2016-08-17",
                "instock": true,
                "tags": [],
                "locale": "en-us",
                "size": 16,
                "color": "Gray",
                "additional_info": [
                  {
                    "rating": {
                      "stars": 3
                    }
                  },
                  {
                    "deals": {
                      "deal_name": "Christmas Deal",
                      "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                      "coupons": [
                        {
                          "daily_coupons": {
                            "coupon_name": "Early Bird Coupon",
                            "coupon_details": "Save 50 percent on your first three purchases.",
                            "coupon_discount_rate": 50
                          }
                        },
                        {
                          "special_coupons": {
                            "special_coupon_name": "High Five",
                            "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                            "special_coupon_discount_rate": 5
                          }
                        }
                      ]
                    }
                  },
                  {
                    "related_products": {
                      "products": [
                        {
                          "uid": "blte63b2ff6f6414d8e",
                          "_content_type_uid": "product"
                        },
                        {
                          "uid": "blta250054cfa4f5aab",
                          "_content_type_uid": "product"
                        },
                        {
                          "uid": "bltd383742b89bef7af",
                          "_content_type_uid": "product"
                        }
                      ],
                      "home_appliances": [
                        {
                          "uid": "blt10e68dbbfc14b75b",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt7d3413d9daf14f5f",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt2349e9c0b7ce06fa",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt44857e1ae5e9e272",
                          "_content_type_uid": "kitchen_appliances"
                        },
                        {
                          "uid": "blt49139d483f5799bc",
                          "_content_type_uid": "kitchen_appliances"
                        },
                        {
                          "uid": "blt46128ea08fdeb168",
                          "_content_type_uid": "kitchen_appliances"
                        }
                      ]
                    }
                  }
                ],
                "bank_offers": [
                  {
                    "bank": [
                      {
                        "uid": "bltd477bad133866222",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Debit Card"
                    ],
                    "discount_in_percentage": 15
                  }
                ],
                "uid": "bltd383742b89bef7af",
                "created_by": "blt42e55757d70d5f81026a2b9f",
                "updated_by": "blt42e55757d70d5f81026a2b9f",
                "created_at": "2020-05-11T12:37:33.194Z",
                "updated_at": "2020-05-11T15:05:06.916Z",
                "_content_type_uid": "product",
                "ACL": {},
                "_version": 3,
                "_in_progress": false,
                "publish_details": {
                  "environment": "blta39a4441696e35e0",
                  "locale": "en-us",
                  "time": "2020-05-11T15:05:26.083Z",
                  "user": "blt42e55757d70d5f81026a2b9f"
                }
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "_content_type_uid": "product",
                "_version": 3,
                "locale": "en-us",
                "uid": "blt6549021b3bbeae5c",
                "ACL": {},
                "_in_progress": false,
                "additional_info": [
                  {
                    "rating": {
                      "stars": 1
                    }
                  },
                  {
                    "deals": {
                      "deal_name": "Black Friday Deal",
                      "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                      "coupons": [
                        {
                          "special_coupons": {
                            "special_coupon_name": "Friday Bumper Coupon",
                            "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                            "special_coupon_discount_rate": 70
                          }
                        },
                        {
                          "faqs": {
                            "coupon_faqs": [
                              {
                                "question": "How to avail coupon benefits?",
                                "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                              },
                              {
                                "question": "Where can I find the coupons I collected?",
                                "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                              },
                              {
                                "question": "Can you collect a coupon first and purchase an item later?",
                                "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                              }
                            ]
                          }
                        }
                      ]
                    }
                  },
                  {
                    "related_products": {
                      "products": [
                        {
                          "uid": "bltdbe63e789fd3d08e",
                          "_content_type_uid": "product"
                        }
                      ],
                      "home_appliances": [
                        {
                          "uid": "bltee5deb99c3be1b75",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt2349e9c0b7ce06fa",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt7375bb3c0e4859de",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt44857e1ae5e9e272",
                          "_content_type_uid": "kitchen_appliances"
                        },
                        {
                          "uid": "blt49139d483f5799bc",
                          "_content_type_uid": "kitchen_appliances"
                        },
                        {
                          "uid": "blt1ecc761f990dc547",
                          "_content_type_uid": "kitchen_appliances"
                        }
                      ]
                    }
                  }
                ],
                "bank_offers": [
                  {
                    "bank": [
                      {
                        "uid": "bltfbe674ca5af1ffa3",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Debit Card"
                    ],
                    "discount_in_percentage": 12
                  },
                  {
                    "bank": [
                      {
                        "uid": "bltd477bad133866222",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Debit Card"
                    ],
                    "discount_in_percentage": 10
                  }
                ],
                "brand": [
                  {
                    "uid": "blte6095f030e4b7a30",
                    "_content_type_uid": "brand"
                  }
                ],
                "categories": [
                  {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                  }
                ],
                "color": "Black",
                "created_at": "2020-05-10T13:09:01.499Z",
                "created_by": "blt42e55757d70d5f81026a2b9f",
                "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
                "images": [
                  {
                    "uid": "bltc4f54f7ce3155b0e",
                    "created_at": "2019-08-16T08:05:15.889Z",
                    "updated_at": "2019-08-16T08:05:15.889Z",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "content_type": "image/jpeg",
                    "file_size": "48163",
                    "tags": [],
                    "filename": "iphone7.jpg",
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
                    "ACL": [],
                    "is_dir": false,
                    "_version": 1,
                    "title": "iphone7.jpg",
                    "publish_details": {
                      "environment": "blta39a4441696e35e0",
                      "locale": "en-us",
                      "time": "2019-08-19T12:28:56.964Z",
                      "user": "blt587a89fc7883c56700a95bfe"
                    }
                  }
                ],
                "instock": true,
                "launch_date": "2016-09-07",
                "price_in_usd": 749,
                "size": 128,
                "tags": [],
                "title": "iPhone 7 128GB",
                "updated_at": "2020-05-11T14:29:53.230Z",
                "updated_by": "blt42e55757d70d5f81026a2b9f",
                "url": "/mobiles/iphone-7",
                "publish_details": {
                  "environment": "blta39a4441696e35e0",
                  "locale": "en-us",
                  "time": "2020-05-11T14:30:07.305Z",
                  "user": "blt42e55757d70d5f81026a2b9f"
                }
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "_version": 3,
                "locale": "en-us",
                "uid": "blte63b2ff6f6414d8e",
                "ACL": {},
                "_in_progress": false,
                "additional_info": [
                  {
                    "rating": {
                      "stars": 2
                    }
                  },
                  {
                    "deals": {
                      "deal_name": "Deals of the Day",
                      "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                      "coupons": [
                        {
                          "daily_coupons": {
                            "coupon_name": "Lucky Twenty",
                            "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                            "coupon_discount_rate": 20
                          }
                        },
                        {
                          "special_coupons": {
                            "special_coupon_name": "Kitchen Bonanza",
                            "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                            "special_coupon_discount_rate": 60
                          }
                        }
                      ]
                    }
                  },
                  {
                    "related_products": {
                      "products": [
                        {
                          "uid": "blta250054cfa4f5aab",
                          "_content_type_uid": "product"
                        },
                        {
                          "uid": "bltd383742b89bef7af",
                          "_content_type_uid": "product"
                        }
                      ],
                      "home_appliances": [
                        {
                          "uid": "blt10e68dbbfc14b75b",
                          "_content_type_uid": "electronics"
                        }
                      ]
                    }
                  }
                ],
                "bank_offers": [
                  {
                    "bank": [
                      {
                        "uid": "blt27729fae9269607c",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Debit Card"
                    ],
                    "discount_in_percentage": 27
                  },
                  {
                    "bank": [
                      {
                        "uid": "bltfbe674ca5af1ffa3",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Debit Card",
                      "Credit Card"
                    ],
                    "discount_in_percentage": 24
                  }
                ],
                "brand": [],
                "categories": [
                  {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                  }
                ],
                "color": "Black",
                "created_at": "2020-05-11T12:44:49.928Z",
                "created_by": "blt42e55757d70d5f81026a2b9f",
                "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
                "images": [
                  {
                    "uid": "blt50a7a9dd6866776f",
                    "created_at": "2019-08-16T08:05:18.932Z",
                    "updated_at": "2019-08-16T08:05:18.932Z",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "content_type": "image/jpeg",
                    "file_size": "145200",
                    "tags": [],
                    "filename": "01.jpg",
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
                    "ACL": [],
                    "is_dir": false,
                    "_version": 1,
                    "title": "01.jpg",
                    "publish_details": {
                      "environment": "blta39a4441696e35e0",
                      "locale": "en-us",
                      "time": "2019-08-19T12:28:56.964Z",
                      "user": "blt587a89fc7883c56700a95bfe"
                    }
                  }
                ],
                "instock": true,
                "launch_date": "2016-08-17",
                "price_in_usd": 117.3,
                "size": 16,
                "tags": [],
                "title": "Redmi Note Prime",
                "updated_at": "2020-05-11T15:14:45.980Z",
                "updated_by": "blt42e55757d70d5f81026a2b9f",
                "url": "/redmi-note-prime",
                "publish_details": {
                  "environment": "blta39a4441696e35e0",
                  "locale": "en-us",
                  "time": "2020-05-11T15:15:36.629Z",
                  "user": "blt42e55757d70d5f81026a2b9f"
                },
                "_content_type_uid": "product"
              },
              {
                "_version": 1,
                "locale": "en-us",
                "uid": "blta250054cfa4f5aab",
                "ACL": {},
                "_in_progress": false,
                "additional_info": [
                  {
                    "rating": {
                      "stars": 5
                    }
                  },
                  {
                    "deals": {
                      "deal_name": "Summer Deal",
                      "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                      "coupons": [
                        {
                          "daily_coupons": {
                            "coupon_name": "Early Bird Coupon",
                            "coupon_details": "Save 50 percent on your first three purchases.",
                            "coupon_discount_rate": 50
                          }
                        },
                        {
                          "special_coupons": {
                            "special_coupon_name": "Beat the Heat Coupon",
                            "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                            "special_coupon_discount_rate": 40
                          }
                        },
                        {
                          "faqs": {
                            "coupon_faqs": [
                              {
                                "question": "How to avail coupon benefits?",
                                "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                              },
                              {
                                "question": "Where can I find the coupons I collected?",
                                "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                              },
                              {
                                "question": "Can you collect a coupon first and purchase an item later?",
                                "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                              }
                            ]
                          }
                        }
                      ]
                    }
                  },
                  {
                    "related_products": {
                      "products": [
                        {
                          "uid": "blte63b2ff6f6414d8e",
                          "_content_type_uid": "product"
                        },
                        {
                          "uid": "bltd383742b89bef7af",
                          "_content_type_uid": "product"
                        }
                      ],
                      "home_appliances": [
                        {
                          "uid": "bltee5deb99c3be1b75",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt7d3413d9daf14f5f",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt1ecc761f990dc547",
                          "_content_type_uid": "kitchen_appliances"
                        }
                      ]
                    }
                  }
                ],
                "bank_offers": [
                  {
                    "bank": [
                      {
                        "uid": "blt83b7564e5d749a90",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Credit Card"
                    ],
                    "discount_in_percentage": 12
                  }
                ],
                "brand": [
                  {
                    "uid": "blta2e0d2130eb86263",
                    "_content_type_uid": "brand"
                  }
                ],
                "categories": [
                  {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                  },
                  {
                    "uid": "blt9fa0f59d03862aa7",
                    "_content_type_uid": "category"
                  }
                ],
                "color": "Gold",
                "created_at": "2020-05-11T14:12:28.805Z",
                "created_by": "blt42e55757d70d5f81026a2b9f",
                "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
                "images": [
                  {
                    "uid": "blt9c3dff6e3151d374",
                    "created_at": "2019-08-16T08:05:27.886Z",
                    "updated_at": "2019-08-16T08:05:27.886Z",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "content_type": "image/jpeg",
                    "file_size": "5275",
                    "tags": [],
                    "filename": "download.jpg",
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
                    "ACL": [],
                    "is_dir": false,
                    "_version": 1,
                    "title": "download.jpg",
                    "publish_details": {
                      "environment": "blta39a4441696e35e0",
                      "locale": "en-us",
                      "time": "2019-08-19T12:28:47.432Z",
                      "user": "blt587a89fc7883c56700a95bfe"
                    }
                  }
                ],
                "instock": true,
                "launch_date": "2016-03-09",
                "price_in_usd": 146,
                "size": 16,
                "tags": [
                  "redmi",
                  "smart"
                ],
                "title": "Redmi Note 3",
                "updated_at": "2020-05-11T14:12:28.805Z",
                "updated_by": "blt42e55757d70d5f81026a2b9f",
                "url": "/mobiles/redmi-note-3",
                "publish_details": {
                  "environment": "blta39a4441696e35e0",
                  "locale": "en-us",
                  "time": "2020-05-11T14:12:38.975Z",
                  "user": "blt42e55757d70d5f81026a2b9f"
                },
                "_content_type_uid": "product"
              },
              {
                "title": "Redmi 3S",
                "url": "/mobiles/redmi-3s",
                "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
                "images": [
                  {
                    "uid": "blt198546991c0eea0a",
                    "created_at": "2019-08-16T08:05:21.114Z",
                    "updated_at": "2019-08-16T08:05:21.114Z",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "content_type": "image/jpeg",
                    "file_size": "28485",
                    "tags": [],
                    "filename": "xiaomi-redmi-note-3-gray.jpg",
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
                    "ACL": [],
                    "is_dir": false,
                    "_version": 1,
                    "title": "xiaomi-redmi-note-3-gray.jpg",
                    "publish_details": {
                      "environment": "blta39a4441696e35e0",
                      "locale": "en-us",
                      "time": "2019-08-19T12:28:56.964Z",
                      "user": "blt587a89fc7883c56700a95bfe"
                    }
                  }
                ],
                "categories": [
                  {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                  }
                ],
                "price_in_usd": 102.63,
                "brand": [
                  {
                    "uid": "blta2e0d2130eb86263",
                    "_content_type_uid": "brand"
                  }
                ],
                "launch_date": "2016-08-17",
                "instock": true,
                "tags": [],
                "locale": "en-us",
                "size": 16,
                "color": "Gray",
                "additional_info": [
                  {
                    "rating": {
                      "stars": 3
                    }
                  },
                  {
                    "deals": {
                      "deal_name": "Christmas Deal",
                      "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                      "coupons": [
                        {
                          "daily_coupons": {
                            "coupon_name": "Early Bird Coupon",
                            "coupon_details": "Save 50 percent on your first three purchases.",
                            "coupon_discount_rate": 50
                          }
                        },
                        {
                          "special_coupons": {
                            "special_coupon_name": "High Five",
                            "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                            "special_coupon_discount_rate": 5
                          }
                        }
                      ]
                    }
                  },
                  {
                    "related_products": {
                      "products": [
                        {
                          "uid": "blte63b2ff6f6414d8e",
                          "_content_type_uid": "product"
                        },
                        {
                          "uid": "blta250054cfa4f5aab",
                          "_content_type_uid": "product"
                        },
                        {
                          "uid": "bltd383742b89bef7af",
                          "_content_type_uid": "product"
                        }
                      ],
                      "home_appliances": [
                        {
                          "uid": "blt10e68dbbfc14b75b",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt7d3413d9daf14f5f",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt2349e9c0b7ce06fa",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt44857e1ae5e9e272",
                          "_content_type_uid": "kitchen_appliances"
                        },
                        {
                          "uid": "blt49139d483f5799bc",
                          "_content_type_uid": "kitchen_appliances"
                        },
                        {
                          "uid": "blt46128ea08fdeb168",
                          "_content_type_uid": "kitchen_appliances"
                        }
                      ]
                    }
                  }
                ],
                "bank_offers": [
                  {
                    "bank": [
                      {
                        "uid": "bltd477bad133866222",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Debit Card"
                    ],
                    "discount_in_percentage": 15
                  }
                ],
                "uid": "bltd383742b89bef7af",
                "created_by": "blt42e55757d70d5f81026a2b9f",
                "updated_by": "blt42e55757d70d5f81026a2b9f",
                "created_at": "2020-05-11T12:37:33.194Z",
                "updated_at": "2020-05-11T15:05:06.916Z",
                "_content_type_uid": "product",
                "ACL": {},
                "_version": 3,
                "_in_progress": false,
                "publish_details": {
                  "environment": "blta39a4441696e35e0",
                  "locale": "en-us",
                  "time": "2020-05-11T15:05:26.083Z",
                  "user": "blt42e55757d70d5f81026a2b9f"
                }
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "_version": 2,
                "locale": "en-us",
                "uid": "blt1e1d4385e656835a",
                "ACL": {},
                "_in_progress": false,
                "additional_info": [
                  {
                    "rating": {
                      "stars": 4
                    }
                  },
                  {
                    "deals": {
                      "deal_name": "Black Friday Deal",
                      "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                      "coupons": [
                        {
                          "special_coupons": {
                            "special_coupon_name": "Friday Bumper Coupon",
                            "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                            "special_coupon_discount_rate": 70
                          }
                        },
                        {
                          "faqs": {
                            "coupon_faqs": [
                              {
                                "question": "How to avail coupon benefits?",
                                "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                              },
                              {
                                "question": "Where can I find the coupons I collected?",
                                "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                              },
                              {
                                "question": "Can you collect a coupon first and purchase an item later?",
                                "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                              }
                            ]
                          }
                        }
                      ]
                    }
                  },
                  {
                    "related_products": {
                      "products": [
                        {
                          "uid": "bltd8ff819f10c6973b",
                          "_content_type_uid": "product"
                        }
                      ],
                      "home_appliances": [
                        {
                          "uid": "blt23f4282bd1173ae9",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt49139d483f5799bc",
                          "_content_type_uid": "kitchen_appliances"
                        }
                      ]
                    }
                  }
                ],
                "bank_offers": [
                  {
                    "bank": [
                      {
                        "uid": "blt4526259b9dc1dd3e",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Credit Card",
                      "Debit Card"
                    ],
                    "discount_in_percentage": 25
                  },
                  {
                    "bank": [
                      {
                        "uid": "bltd477bad133866222",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Credit Card"
                    ],
                    "discount_in_percentage": 30
                  }
                ],
                "brand": [
                  {
                    "uid": "blt5499dd00bb716b14",
                    "_content_type_uid": "brand"
                  }
                ],
                "categories": [
                  {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                  }
                ],
                "color": "Black",
                "created_at": "2020-05-11T13:32:18.406Z",
                "created_by": "blt42e55757d70d5f81026a2b9f",
                "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
                "images": [
                  {
                    "uid": "blt11b00b9a335ed526",
                    "created_at": "2019-08-16T08:05:18.935Z",
                    "updated_at": "2019-08-16T08:05:18.935Z",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "content_type": "image/jpeg",
                    "file_size": "166189",
                    "tags": [],
                    "filename": "samsung-galaxy-j1.jpg",
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
                    "ACL": [],
                    "is_dir": false,
                    "_version": 1,
                    "title": "samsung-galaxy-j1.jpg",
                    "publish_details": {
                      "environment": "blta39a4441696e35e0",
                      "locale": "en-us",
                      "time": "2019-08-19T12:28:56.964Z",
                      "user": "blt587a89fc7883c56700a95bfe"
                    }
                  }
                ],
                "instock": true,
                "launch_date": "2017-01-06",
                "price_in_usd": 159.78,
                "size": 8,
                "tags": [],
                "title": "Galaxy J1",
                "updated_at": "2020-05-11T14:05:25.577Z",
                "updated_by": "blt42e55757d70d5f81026a2b9f",
                "url": "/mobiles/galaxy-j1",
                "publish_details": {
                  "environment": "blta39a4441696e35e0",
                  "locale": "en-us",
                  "time": "2020-05-11T14:05:33.715Z",
                  "user": "blt42e55757d70d5f81026a2b9f"
                },
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "_version": 3,
                "locale": "en-us",
                "uid": "bltdbe63e789fd3d08e",
                "ACL": {},
                "_in_progress": false,
                "additional_info": [
                  {
                    "rating": {
                      "stars": 5
                    }
                  },
                  {
                    "deals": {
                      "deal_name": "Independence Day Deal",
                      "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                      "coupons": [
                        {
                          "special_coupons": {
                            "special_coupon_name": "Independence Bumper Offer",
                            "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                            "special_coupon_discount_rate": 40
                          }
                        },
                        {
                          "faqs": {
                            "coupon_faqs": [
                              {
                                "question": "How to avail coupon benefits?",
                                "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                              },
                              {
                                "question": "Where can I find the coupons I collected?",
                                "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                              },
                              {
                                "question": "Can you collect a coupon first and purchase an item later?",
                                "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                              }
                            ]
                          }
                        }
                      ]
                    }
                  },
                  {
                    "related_products": {
                      "products": [
                        {
                          "uid": "blt6549021b3bbeae5c",
                          "_content_type_uid": "product"
                        }
                      ],
                      "home_appliances": [
                        {
                          "uid": "blt0e302e4595da19c1",
                          "_content_type_uid": "electronics"
                        }
                      ]
                    }
                  }
                ],
                "bank_offers": [
                  {
                    "bank": [
                      {
                        "uid": "blt27729fae9269607c",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Credit Card"
                    ],
                    "discount_in_percentage": 60
                  },
                  {
                    "bank": [
                      {
                        "uid": "blt4526259b9dc1dd3e",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Credit Card",
                      "Debit Card"
                    ],
                    "discount_in_percentage": 55
                  }
                ],
                "brand": [
                  {
                    "uid": "blte6095f030e4b7a30",
                    "_content_type_uid": "brand"
                  }
                ],
                "categories": [
                  {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                  },
                  {
                    "uid": "blt9fa0f59d03862aa7",
                    "_content_type_uid": "category"
                  }
                ],
                "color": "Rose Gold",
                "created_at": "2020-05-11T12:47:32.533Z",
                "created_by": "blt42e55757d70d5f81026a2b9f",
                "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
                "images": [
                  {
                    "uid": "bltda02effe8bc97bb9",
                    "created_at": "2019-08-16T08:05:09.588Z",
                    "updated_at": "2019-08-16T08:05:09.588Z",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "content_type": "image/jpeg",
                    "file_size": "45091",
                    "tags": [],
                    "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
                    "ACL": [],
                    "is_dir": false,
                    "_version": 1,
                    "title": "Apple-iPhone-SE-Rose-Gold.jpg",
                    "publish_details": {
                      "environment": "blta39a4441696e35e0",
                      "locale": "en-us",
                      "time": "2019-08-19T12:28:56.964Z",
                      "user": "blt587a89fc7883c56700a95bfe"
                    }
                  }
                ],
                "instock": true,
                "launch_date": "2016-09-07",
                "price_in_usd": 649,
                "size": 32,
                "tags": [],
                "title": "iPhone 7 64GB",
                "updated_at": "2020-05-11T15:08:56.567Z",
                "updated_by": "blt42e55757d70d5f81026a2b9f",
                "url": "/mobiles/iphone-7",
                "publish_details": {
                  "environment": "blta39a4441696e35e0",
                  "locale": "en-us",
                  "time": "2020-05-11T15:09:05.364Z",
                  "user": "blt42e55757d70d5f81026a2b9f"
                },
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "_version": 3,
                "locale": "en-us",
                "uid": "blte63b2ff6f6414d8e",
                "ACL": {},
                "_in_progress": false,
                "additional_info": [
                  {
                    "rating": {
                      "stars": 2
                    }
                  },
                  {
                    "deals": {
                      "deal_name": "Deals of the Day",
                      "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                      "coupons": [
                        {
                          "daily_coupons": {
                            "coupon_name": "Lucky Twenty",
                            "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                            "coupon_discount_rate": 20
                          }
                        },
                        {
                          "special_coupons": {
                            "special_coupon_name": "Kitchen Bonanza",
                            "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                            "special_coupon_discount_rate": 60
                          }
                        }
                      ]
                    }
                  },
                  {
                    "related_products": {
                      "products": [
                        {
                          "uid": "blta250054cfa4f5aab",
                          "_content_type_uid": "product"
                        },
                        {
                          "uid": "bltd383742b89bef7af",
                          "_content_type_uid": "product"
                        }
                      ],
                      "home_appliances": [
                        {
                          "uid": "blt10e68dbbfc14b75b",
                          "_content_type_uid": "electronics"
                        }
                      ]
                    }
                  }
                ],
                "bank_offers": [
                  {
                    "bank": [
                      {
                        "uid": "blt27729fae9269607c",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Debit Card"
                    ],
                    "discount_in_percentage": 27
                  },
                  {
                    "bank": [
                      {
                        "uid": "bltfbe674ca5af1ffa3",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Debit Card",
                      "Credit Card"
                    ],
                    "discount_in_percentage": 24
                  }
                ],
                "brand": [],
                "categories": [
                  {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                  }
                ],
                "color": "Black",
                "created_at": "2020-05-11T12:44:49.928Z",
                "created_by": "blt42e55757d70d5f81026a2b9f",
                "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
                "images": [
                  {
                    "uid": "blt50a7a9dd6866776f",
                    "created_at": "2019-08-16T08:05:18.932Z",
                    "updated_at": "2019-08-16T08:05:18.932Z",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "content_type": "image/jpeg",
                    "file_size": "145200",
                    "tags": [],
                    "filename": "01.jpg",
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
                    "ACL": [],
                    "is_dir": false,
                    "_version": 1,
                    "title": "01.jpg",
                    "publish_details": {
                      "environment": "blta39a4441696e35e0",
                      "locale": "en-us",
                      "time": "2019-08-19T12:28:56.964Z",
                      "user": "blt587a89fc7883c56700a95bfe"
                    }
                  }
                ],
                "instock": true,
                "launch_date": "2016-08-17",
                "price_in_usd": 117.3,
                "size": 16,
                "tags": [],
                "title": "Redmi Note Prime",
                "updated_at": "2020-05-11T15:14:45.980Z",
                "updated_by": "blt42e55757d70d5f81026a2b9f",
                "url": "/redmi-note-prime",
                "publish_details": {
                  "environment": "blta39a4441696e35e0",
                  "locale": "en-us",
                  "time": "2020-05-11T15:15:36.629Z",
                  "user": "blt42e55757d70d5f81026a2b9f"
                },
                "_content_type_uid": "product"
              },
              {
                "title": "Redmi 3S",
                "url": "/mobiles/redmi-3s",
                "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
                "images": [
                  {
                    "uid": "blt198546991c0eea0a",
                    "created_at": "2019-08-16T08:05:21.114Z",
                    "updated_at": "2019-08-16T08:05:21.114Z",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "content_type": "image/jpeg",
                    "file_size": "28485",
                    "tags": [],
                    "filename": "xiaomi-redmi-note-3-gray.jpg",
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
                    "ACL": [],
                    "is_dir": false,
                    "_version": 1,
                    "title": "xiaomi-redmi-note-3-gray.jpg",
                    "publish_details": {
                      "environment": "blta39a4441696e35e0",
                      "locale": "en-us",
                      "time": "2019-08-19T12:28:56.964Z",
                      "user": "blt587a89fc7883c56700a95bfe"
                    }
                  }
                ],
                "categories": [
                  {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                  }
                ],
                "price_in_usd": 102.63,
                "brand": [
                  {
                    "uid": "blta2e0d2130eb86263",
                    "_content_type_uid": "brand"
                  }
                ],
                "launch_date": "2016-08-17",
                "instock": true,
                "tags": [],
                "locale": "en-us",
                "size": 16,
                "color": "Gray",
                "additional_info": [
                  {
                    "rating": {
                      "stars": 3
                    }
                  },
                  {
                    "deals": {
                      "deal_name": "Christmas Deal",
                      "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                      "coupons": [
                        {
                          "daily_coupons": {
                            "coupon_name": "Early Bird Coupon",
                            "coupon_details": "Save 50 percent on your first three purchases.",
                            "coupon_discount_rate": 50
                          }
                        },
                        {
                          "special_coupons": {
                            "special_coupon_name": "High Five",
                            "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                            "special_coupon_discount_rate": 5
                          }
                        }
                      ]
                    }
                  },
                  {
                    "related_products": {
                      "products": [
                        {
                          "uid": "blte63b2ff6f6414d8e",
                          "_content_type_uid": "product"
                        },
                        {
                          "uid": "blta250054cfa4f5aab",
                          "_content_type_uid": "product"
                        },
                        {
                          "uid": "bltd383742b89bef7af",
                          "_content_type_uid": "product"
                        }
                      ],
                      "home_appliances": [
                        {
                          "uid": "blt10e68dbbfc14b75b",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt7d3413d9daf14f5f",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt2349e9c0b7ce06fa",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt44857e1ae5e9e272",
                          "_content_type_uid": "kitchen_appliances"
                        },
                        {
                          "uid": "blt49139d483f5799bc",
                          "_content_type_uid": "kitchen_appliances"
                        },
                        {
                          "uid": "blt46128ea08fdeb168",
                          "_content_type_uid": "kitchen_appliances"
                        }
                      ]
                    }
                  }
                ],
                "bank_offers": [
                  {
                    "bank": [
                      {
                        "uid": "bltd477bad133866222",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Debit Card"
                    ],
                    "discount_in_percentage": 15
                  }
                ],
                "uid": "bltd383742b89bef7af",
                "created_by": "blt42e55757d70d5f81026a2b9f",
                "updated_by": "blt42e55757d70d5f81026a2b9f",
                "created_at": "2020-05-11T12:37:33.194Z",
                "updated_at": "2020-05-11T15:05:06.916Z",
                "_content_type_uid": "product",
                "ACL": {},
                "_version": 3,
                "_in_progress": false,
                "publish_details": {
                  "environment": "blta39a4441696e35e0",
                  "locale": "en-us",
                  "time": "2020-05-11T15:05:26.083Z",
                  "user": "blt42e55757d70d5f81026a2b9f"
                }
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "_version": 3,
                "locale": "en-us",
                "uid": "bltd8ff819f10c6973b",
                "ACL": {},
                "_in_progress": false,
                "additional_info": [
                  {
                    "rating": {
                      "stars": 2
                    }
                  },
                  {
                    "deals": {
                      "deal_name": "Christmas Deal",
                      "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                      "coupons": [
                        {
                          "daily_coupons": {
                            "coupon_name": "Early Bird Coupon",
                            "coupon_details": "Save 50 percent on your first three purchases.",
                            "coupon_discount_rate": 50
                          }
                        },
                        {
                          "special_coupons": {
                            "special_coupon_name": "High Five",
                            "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                            "special_coupon_discount_rate": 5
                          }
                        },
                        {
                          "faqs": {
                            "coupon_faqs": [
                              {
                                "question": "How to avail coupon benefits?",
                                "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                              },
                              {
                                "question": "Where can I find the coupons I collected?",
                                "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                              },
                              {
                                "question": "Can you collect a coupon first and purchase an item later?",
                                "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                              }
                            ]
                          }
                        }
                      ]
                    }
                  },
                  {
                    "related_products": {
                      "products": [
                        {
                          "uid": "blt1e1d4385e656835a",
                          "_content_type_uid": "product"
                        }
                      ],
                      "home_appliances": [
                        {
                          "uid": "blt23f4282bd1173ae9",
                          "_content_type_uid": "electronics"
                        },
                        {
                          "uid": "blt49139d483f5799bc",
                          "_content_type_uid": "kitchen_appliances"
                        }
                      ]
                    }
                  }
                ],
                "bank_offers": [
                  {
                    "bank": [
                      {
                        "uid": "blt83b7564e5d749a90",
                        "_content_type_uid": "bank"
                      }
                    ],
                    "card_type": [
                      "Debit Card"
                    ],
                    "discount_in_percentage": 8
                  }
                ],
                "brand": [
                  {
                    "uid": "blt5499dd00bb716b14",
                    "_content_type_uid": "brand"
                  }
                ],
                "categories": [
                  {
                    "uid": "blt9fa0f59d03862aa7",
                    "_content_type_uid": "category"
                  },
                  {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                  }
                ],
                "color": "Gold",
                "created_at": "2020-05-10T13:47:02.576Z",
                "created_by": "blt42e55757d70d5f81026a2b9f",
                "description": "<p>Snapdragon</p>",
                "images": [
                  {
                    "uid": "blt19c34e5374418484",
                    "created_at": "2019-08-16T08:05:30.460Z",
                    "updated_at": "2019-08-16T08:05:30.460Z",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "content_type": "image/jpeg",
                    "file_size": "69609",
                    "tags": [],
                    "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
                    "ACL": [],
                    "is_dir": false,
                    "_version": 1,
                    "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
                    "publish_details": {
                      "environment": "blta39a4441696e35e0",
                      "locale": "en-us",
                      "time": "2019-08-19T12:28:47.432Z",
                      "user": "blt587a89fc7883c56700a95bfe"
                    }
                  },
                  {
                    "uid": "bltf8c7852efd06d11f",
                    "created_at": "2019-08-16T08:05:05.009Z",
                    "updated_at": "2019-08-16T08:05:05.009Z",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "content_type": "image/png",
                    "file_size": "63422",
                    "tags": [],
                    "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
                    "ACL": [],
                    "is_dir": false,
                    "_version": 1,
                    "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
                    "publish_details": {
                      "environment": "blta39a4441696e35e0",
                      "locale": "en-us",
                      "time": "2019-08-19T12:29:04.717Z",
                      "user": "blt587a89fc7883c56700a95bfe"
                    }
                  }
                ],
                "instock": false,
                "launch_date": "2016-07-07",
                "price_in_usd": 101,
                "size": 32,
                "tags": [
                  "redmi"
                ],
                "title": "Galaxy Note",
                "updated_at": "2020-05-11T14:56:10.946Z",
                "updated_by": "blt42e55757d70d5f81026a2b9f",
                "url": "/mobiles/galaxy-note",
                "publish_details": {
                  "environment": "blta39a4441696e35e0",
                  "locale": "en-us",
                  "time": "2020-05-11T14:56:31.536Z",
                  "user": "blt42e55757d70d5f81026a2b9f"
                },
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Include All References

### Include all references

**GET** `/content_types/{content_type_uid}/entries?include_all=true&include_all_depth=3`

When fetching an entry or a list of entries, the referenced entries are not included in the response by default—you only get their UIDs.

To retrieve the content of referenced entries (up to **depth 1**), use the include\_all=true parameter. To fetch deeper references, use the include\_all\_depth parameter to specify the depth (up to **5 levels**).

Each level reflects a reference chain—for example, an entry referencing a blog (level 1), which references articles (level 2), and further, articles linking to authors (level 3).

**Note**:

*   The maximum allowed depth of **5** is applicable throughout your organization; exceeding this limit will result in an error.
*   The maximum number of reference paths that can be retrieved in a single request is **100**, regardless of the depth specified. If the number of reference paths exceeds 100, the API returns an error. To avoid this, reduce the value of the include\_all\_depth parameter and try again.
*   The include\_all parameter functions only with a delivery token.

**Example API Request**:

```
https://cdn.contentstack.io/v3/content_types/home/entries/?include_all=true&include_all_depth=3
```

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **include_all** (required)
  Set this to true to include referenced entries.
- **include_all_depth** (optional)
  Enter a value between 1 to 5 to specify levels of referenced entries to include in the response.
- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
    "entries": [
        {
            "uid": "blt7c8c0ba8b6cd6cc8",
            "_version": 2,
            "locale": "en-us",
            "ACL": {},
            "_in_progress": false,
            "blog_list": [
                {
                    "_content_type_uid": "blog",
                    "uid": "blt264df199fd36c703",
                    "title": "Blog Landing Page",
                    "article_list": [
                        {
                            "_content_type_uid": "article",
                            "uid": "blt6203ac40fb15299b",
                            "title": "Article Landing Page",
                            "author": [
                                {
                                    "_content_type_uid": "author",
                                    "uid": "blt268a4358bbea44fb",
                                    "title": "Author Profile",
                                    "tags": [],
                                    "locale": "en-us",
                                    "created_by": "blte93d4119f79db761",
                                    "updated_by": "blte93d4119f79db761",
                                    "created_at": "2024-10-24T05:54:27.194Z",
                                    "updated_at": "2024-10-24T05:54:27.194Z",
                                    "ACL": {},
                                    "_version": 1,
                                    "_in_progress": false,
                                    "publish_details": {
                                        "time": "2024-10-24T05:54:46.614Z",
                                        "user": "blte93d4119f79db761",
                                        "environment": "blta39a4441696e35e0",
                                        "locale": "en-us"
                                    }
                                }
                            ],
                            "tags": [],
                            "locale": "en-us",
                            "created_by": "blte93d4119f79db761",
                            "updated_by": "blte93d4119f79db761",
                            "created_at": "2024-10-24T05:54:07.348Z",
                            "updated_at": "2024-10-24T05:54:31.465Z",
                            "ACL": {},
                            "_version": 2,
                            "_in_progress": false,
                            "publish_details": {
                                "time": "2024-10-24T05:54:46.511Z",
                                "user": "blte93d4119f79db761",
                                "environment": "blta39a4441696e35e0",
                                "locale": "en-us"
                            }
                        }
                    ],
                    "tags": [],
                    "locale": "en-us",
                    "created_by": "blte93d4119f79db761",
                    "updated_by": "blte93d4119f79db761",
                    "created_at": "2024-10-24T05:53:45.648Z",
                    "updated_at": "2024-10-24T05:54:10.953Z",
                    "ACL": {},
                    "_version": 2,
                    "_in_progress": false,
                    "publish_details": {
                        "time": "2024-10-24T05:54:46.144Z",
                        "user": "blte93d4119f79db761",
                        "environment": "blta39a4441696e35e0",
                        "locale": "en-us"
                    }
                }
            ],
            "created_at": "2024-10-24T05:53:29.549Z",
            "created_by": "blte93d4119f79db761",
            "tags": [],
            "title": "Home Page",
            "updated_at": "2024-10-24T05:53:52.932Z",
            "updated_by": "blte93d4119f79db761",
            "publish_details": {
                "time": "2024-10-24T05:54:46.012Z",
                "user": "blte93d4119f79db761",
                "environment": "blta39a4441696e35e0",
                "locale": "en-us"
            },
            "_embedded_items": {}
        }
    ]
}
```

## Reference Search Equals

### Reference Search Equals

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"reference_field_uid":{"$in_query":{"referenced_content_type's_field_uid":"value"}}}`

Get entries having values based on referenced fields. This query retrieves all entries that satisfy the query conditions made on referenced fields.  
This query will work for entries only.

**Example:** In the Product content type, if you wish to retrieve all entries that have their brand (Reference field) title set to Apple Inc. So, the query that needs to be run is given below:

{"brand": { "$in\_query": { "title": "Apple Inc."}}}

If you have enabled multiple content type referencing, you need to mention the content type UID of the parent content type as follows:

{"brand":{"$in\_query":{"title":"Apple Inc.", "\_content\_type\_uid":"brand"}, "\_content\_type\_uid":"product"}}

You can use queries within this query (nested querying) in order to query on the referred entries. In this case, the syntax of the query will be as follows:

*   General query: {"reference\_field\_uid":{"$in\_query":{"referred\_content\_type's\_field\_uid":{"query\_to\_be\_applied"}}}}
*   Multiple content type reference query: {"reference\_field\_uid":{"$in\_query":{"referred\_content\_type's\_field\_uid":{"query\_to\_be\_applied"}}}, "\_content\_type\_uid":"UID\_of\_referred\_content\_type"}

Additionally, to retrieve entries that also include references to entries of multiple content types, you need to specify the content type UIDs of all the referred entries when querying.

For example, “Parent Reference” has a Reference field that points to “Reference content type 1” and “Reference content type 1” has a Reference field that points to both “Reference content type 2” and “Reference content type 3”.

So, to retrieve an entry in “Parent Reference” that has referred to an entry of “Reference content type 1” whose Reference field has referred an entry titled “Sample” of “Reference content type 2”. The query format is as follows:

*   General query: {"referred\_parent\_content\_type\_field\_uid": {"$in\_query": {"referred\_content\_type\_2\_field\_uid": { "$in\_query": {"title": "Sample"}}}}}
*   Multiple content type reference query: {"referred\_parent\_content\_type\_field\_uid": {"$in\_query": {"referred\_content\_type\_2\_field\_uid": { "$in\_query": {"title": "Sample", "\_content\_type\_uid": "referred\_content\_type\_3\_uid"} }, "\_content\_type\_uid": "referred\_content\_type\_2\_uid"}, "\_content\_type\_uid": "referred\_parent\_content\_type\_uid"}}

##### Reference Search Equals for Nested Querying

You can use queries within this query (nested querying) in order to query on the referred entries.This query will work for entries only.

The syntax of the query will be as follows:

*   General query: {"reference\_field\_uid": { "$in\_query": { "referred\_fieldname": {"query\_to\_be\_applied"}}}}
*   Multiple content type referencing query: {"reference\_field\_uid": { "$in\_query": { "referred\_fieldname": {"query\_to\_be\_applied"}}, "\_content\_type\_uid ":"UID\_of\_parent\_content\_type"}}

**Example**: If you want to retrieve all entries that have referenced entries with title that starts with ‘S’ within the frequently\_bought\_together field, you need to run the query given below:

*   General query: {"frequently\_bought\_together": {"$in\_query": {"title": {"$regex": "^s", "$options": "i"}}}}
*   Multiple content type referencing query: {"frequently\_bought\_together": {"$in\_query": {"title": {"$regex": "^a", "$options": "i"}, "\_content\_type\_uid": "electronics"}, "\_content\_type\_uid": "kitchen\_appliances"}}

In the above query, ‘[Search by Regex](#search-by-regex)’ query has been applied on the referred field. Other queries that can be applied are: [Equals Operator](#equals-operator), [Equals Within Group Operator](#equals-operator-within-group), [Not-equals Operator](#not-equals-operator), [Array Equals Operator,](#array-equals-operator) [Array Not-equals Operator](#array-not-equals-operator), [AND Operator](#and-operator), [OR Operator](#or-operator), [Less Than](#less-than), [Less Than Or Equal To](#less-than-or-equal-to), [Greater Than](#greater-than), [Greater Than Or Equal To](#greater-than-or-equal-to), and [Exists](#exists).

##### Reference Search Equals Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Reference Search Equals Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"group_field_id"."reference_field_uid":{"$in_query":{"referenced_content_type's_group_uid.field_uid":"value"}}}`

Get entries having values based on referenced fields. This query retrieves all entries that satisfy query conditions made on referenced fields.  

If the reference field is part of a Group field, you need to mention the Group field UID as well as the reference field UID using a dot operator, as given below.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a Reference field named Bank ("uid":"bank"). If, for instance, you want to retrieve the entries in which the value for the Bank field is ‘Citigroup,’ use the following value in the query parameter:

*   General query: {"bank\_offers.bank": {"$in\_query": { "title": "Citigroup"}}}
*   Multiple content type referencing query: {"bank\_offers.bank":{"$in\_query":{"title":"Wells Fargo", "\_content\_type\_uid": "bank"} , "\_content\_type\_uid": "blog"}}

##### Reference Search Equals Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.

#### Headers

- **api_key** (required)
  Enter the API key of stack of which you wish to retrieve the content types.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Reference Search Equals Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"modular_block_uid.block_uid.reference_field_uid":{"$in_query":{"referenced_content_type's_field_uid":"value"}}}`

Get entries having values based on referenced fields. This query retrieves all entries that satisfy query conditions made on referenced fields.If the reference is part of a Modular Blocks field, you need to mention the Modular Blocks UID, Block UID, as well as the reference field UID using a dot operatorNote that this query will work for entries only.

**Example:** In the Products content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Related Products ("uid":"related\_products") block. And, within this Related Products block, we have a field named Products ("uid":"products"). If, for instance, you want to retrieve the entries in which the values for the Title field is iPhone 7 128GB, use the following value in the ‘query’ parameter:

*   General query: {"additional\_info.related\_products.products": {"$in\_query": { "title": "iPhone 7 128GB"}}}
*   Multiple content type referencing query: {"additional\_info.related\_products.products":{"$in\_query":{"title":"iPhone 7 128GB", "\_content\_type\_uid": "product"}, "\_content\_type\_uid": "electronics"}}

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of stack of which you wish to retrieve the content types.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Reference Search Not-equals

### Reference Search Not-equals

**GET** `/content_types/{content_type_uid}/entries?environment={environment_name}&locale={locale_code}&query={"reference_field_uid":{"$nin_query":{"referenced_content_type's_field_uid":"value"}}}`

Get entries having values based on referenced fields. This query works the opposite of $in\_query and retrieves all entries that does not satisfy query conditions made on referenced fields.  
  
Note that this query will work for entries only.

**Example:** Let’s say you wish to retrieve all entries that have brand names other than Apple Inc. So, the query that needs to be made is given below:

*   General query: {"brand": {"$nin\_query": {"title": "Apple Inc."}}}
*   Multiple content type referencing query: { "brand": {"$nin\_query": {"title": "Apple Inc.", "\_content\_type\_uid": "UID\_of\_referred\_content\_type"}, "\_content\_type\_uid": "UID\_of\_parent\_content\_type"}}

**Note:** When querying on Reference field, users need to specify the Content Type UID (using the\_content\_type\_uid parameter) of entry to which the Reference field belongs to.

##### Reference Search Not-equals Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **environment** (required)
  Enter the name of the environment of which the entries needs to be included.
- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Reference Search Not-equals Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"group_field_id"."reference_field_uid":{"$nin_query":{"referenced_content_type's_group_uid.field_uid":"value"}}}`

Get entries having values based on referenced fields. This query works the opposite of $in\_query and retrieves all entries that does not satisfy query conditions made on referenced fields.Note that this query will work for entries only.If the reference is part of a Group field, you need to use the Group field UID as well as the reference field UID using a dot operator.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a Reference field named Bank ("uid":"bank"). If, for instance, you want to retrieve the entries in which the value for the Bank field is _NOT_ ‘Citigroup', use the following query:

*   General query: {"bank\_offers.bank": {"$nin\_query": {"title": "Citigroup"}}}
*   Multiple content type query: {"bank\_offers.bank": {"$nin\_query": {"title": "Citigroup", "\_content\_type\_uid": "UID\_of\_referred\_content\_type"}, "\_content\_type\_uid": "UID\_of\_parent\_content\_type"}}

##### Reference Search Not-equals Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the reference field.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Reference Search Not-equals Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"modular_block_uid.block_uid.reference_field_uid":{"$nin_query":{"referenced_content_type's_field_uid":"value"}}}`

Get entries having values based on referenced fields. This query works the opposite of $in\_query and retrieves all entries that does not satisfy query conditions made on referenced fields.

**Note:** This query will work for entries only.

If the reference is part of a Modular Blocks field, you need to use the Modular Blocks UID, Block UID, as well as the reference field UID using a dot operator.

**Example:** In the Products content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Related Products ("uid":"related\_products") block. And, within this Block field, we have a field named Products ("uid":"products"). If, for instance, you want to retrieve the entries in which the value for the Title field is _NOT_ ‘iPhone 7 128GB', use the following query:

*   General query: { "additional\_info.related\_products.products": {"$nin\_query": {"title": "iPhone 7 128GB"}}}
*   Multiple content type referencing query: { "additional\_info.related\_products.products": {"$nin\_query": {"title": "iPhone 7 128GB", "\_content\_type\_uid": "UID\_of\_referred\_content\_type"}, "\_content\_type\_uid": "UID\_of\_parent\_content\_type"}}

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Search by Regex

### Search by Regex

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={ "field_UID": { "$regex": "value" } }`

Get entries by using regular expressions to query fields of a content type. These regex queries will help to retrieve all the entries of a content type that have field values matching the condition provided in the query parameter.This query will work for both entries as well as assets.

**Example:** In the Product content type, you have a field named Color ("uid":"color") in your content type, and you want to retrieve all the entries within this content type that have values for this field starting with 'Bl'. You can use the parameter as:

{ "color": { "$regex": "^Bl" } }.

Now, in order to perform a case-insensitive search, you can use the $options key to specify any regular expressions options: 

{ "color": { "$regex": "^bl", "$options": "i" } }.

**Tip:** Some useful values for $options are m for making dot match newlines and x for ignoring whitespace in regex.

##### Search by Regex Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Search By Regex Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={ "group_UID.field_UID": { "$regex": "value" } }`

Get entries by using regular expressions to query fields of a Group field. These regex queries will help to retrieve all the entries of a content type that have field values matching the condition provided in the query parameter.

**Note:** This query is specifically for fields that are part of the Group field.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a Reference field named Bank ("uid":"bank"). If, for instance, you want to retrieve the entries in which the value for the Card Type starts with “Credit Card,” use the following value in the query parameter:

{ "bank\_offers.card\_type": { "$regex": "^Credit Card" } }

##### Search by Regex Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
    "entries": [
        {
            "title": "Redmi Note 3",
            "url": "/mobiles/redmi-note-3",
            "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
            "size": 16,
            "color": "Gold",
            "images": [
                {
                    "uid": "blt9c3dff6e3151d374",
                    "title": "download.jpg",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "created_at": "2019-08-16T08:05:27.886Z",
                    "updated_at": "2019-08-16T08:05:27.886Z",
                    "content_type": "image/jpeg",
                    "file_size": "5275",
                    "filename": "download.jpg",
                    "ACL": [],
                    "_version": 1,
                    "is_dir": false,
                    "tags": [],
                    "publish_details": {
                        "environment": "blta39a4441696e35e0",
                        "locale": "en-us",
                        "time": "2019-08-19T12:28:47.432Z",
                        "user": "blt587a89fc7883c56700a95bfe"
                    },
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg"
                }
            ],
            "categories": [
                {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                },
                {
                    "uid": "blt9fa0f59d03862aa7",
                    "_content_type_uid": "category"
                }
            ],
            "price_in_usd": 146,
            "brand": [
                {
                    "uid": "blta2e0d2130eb86263",
                    "_content_type_uid": "brand"
                }
            ],
            "launch_date": "2016-03-09",
            "instock": true,
            "additional_info": [
                {
                    "rating": {
                        "stars": 5,
                        "_metadata": {
                            "uid": "csf8f6535afcf26334"
                        }
                    }
                },
                {
                    "deals": {
                        "deal_name": "Summer Deal",
                        "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                        "coupons": [
                            {
                                "daily_coupons": {
                                    "coupon_name": "Early Bird Coupon",
                                    "coupon_details": "Save 50 percent on your first three purchases.",
                                    "coupon_discount_rate": 50,
                                    "_metadata": {
                                        "uid": "cs180286fc85d60546"
                                    }
                                }
                            },
                            {
                                "special_coupons": {
                                    "special_coupon_name": "Beat the Heat Coupon",
                                    "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                                    "special_coupon_discount_rate": 40,
                                    "_metadata": {
                                        "uid": "cs9f7c67a727d57393"
                                    }
                                }
                            },
                            {
                                "faqs": {
                                    "coupon_faqs": [
                                        {
                                            "question": "How to avail coupon benefits?",
                                            "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>",
                                            "_metadata": {
                                                "uid": "cs19857ac5abc467f3"
                                            }
                                        },
                                        {
                                            "question": "Where can I find the coupons I collected?",
                                            "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>",
                                            "_metadata": {
                                                "uid": "csc0ada9a8725ff210"
                                            }
                                        },
                                        {
                                            "question": "Can you collect a coupon first and purchase an item later?",
                                            "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>",
                                            "_metadata": {
                                                "uid": "cs7a60d1dd3e4327f8"
                                            }
                                        }
                                    ],
                                    "_metadata": {
                                        "uid": "csb5652c661bc7276c"
                                    }
                                }
                            }
                        ],
                        "_metadata": {
                            "uid": "cs5f189ae7f3044866"
                        }
                    }
                },
                {
                    "related_products": {
                        "products": [
                            {
                                "uid": "blte63b2ff6f6414d8e",
                                "_content_type_uid": "product"
                            },
                            {
                                "uid": "bltd383742b89bef7af",
                                "_content_type_uid": "product"
                            }
                        ],
                        "home_appliances": [
                            {
                                "uid": "bltee5deb99c3be1b75",
                                "_content_type_uid": "electronics"
                            },
                            {
                                "uid": "blt7d3413d9daf14f5f",
                                "_content_type_uid": "electronics"
                            },
                            {
                                "uid": "blt1ecc761f990dc547",
                                "_content_type_uid": "kitchen_appliances"
                            }
                        ],
                        "_metadata": {
                            "uid": "cs4d3587e8e37736ae"
                        }
                    }
                }
            ],
            "bank_offers": [
                {
                    "bank": [
                        {
                            "uid": "blt83b7564e5d749a90",
                            "_content_type_uid": "bank"
                        }
                    ],
                    "card_type": [
                        "Credit Card"
                    ],
                    "discount_in_percentage": 12,
                    "_metadata": {
                        "uid": "cs92f2dd7b31db24e8"
                    }
                }
            ],
            "tags": [
                "redmi",
                "smart"
            ],
            "locale": "en-us",
            "uid": "blta250054cfa4f5aab",
            "created_by": "blt42e55757d70d5f81026a2b9f",
            "updated_by": "blt6563a9b067fc1bc9",
            "created_at": "2020-05-11T14:12:28.805Z",
            "updated_at": "2021-07-18T15:51:14.934Z",
            "ACL": {},
            "_version": 4,
            "_in_progress": false,
            "frequently_bought_together": [
                {
                    "uid": "blt10e68dbbfc14b75b",
                    "_content_type_uid": "electronics"
                },
                {
                    "uid": "blt23f4282bd1173ae9",
                    "_content_type_uid": "electronics"
                },
                {
                    "uid": "blt44857e1ae5e9e272",
                    "_content_type_uid": "kitchen_appliances"
                },
                {
                    "uid": "blt46128ea08fdeb168",
                    "_content_type_uid": "kitchen_appliances"
                }
            ],
            "product_rating": 5,
            "helpful_links": {
                "seller": "https://company-name.com",
                "return-policy": "https://policies.com"
            },
            "cart_items": {
                "type": "doc",
                "attrs": {},
                "uid": "f5bb3be707ed4929b5afad253626163d",
                "children": [
                    {
                        "type": "p",
                        "attrs": {},
                        "uid": "df52846a8b554b01831d3c7a2547986b",
                        "children": [
                            {
                                "text": "Items in your Shopping Cart:"
                            }
                        ]
                    },
                    {
                        "type": "p",
                        "attrs": {},
                        "uid": "e32cd5e033a74a4198830b09bfde1918",
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "690b99c453374f1f9db532c303fe46af",
                        "type": "reference",
                        "attrs": {
                            "display-type": "block",
                            "type": "entry",
                            "class-name": "embedded-entry redactor-component block-entry",
                            "entry-uid": "bltee5deb99c3be1b75",
                            "locale": "en-us",
                            "content-type-uid": "electronics"
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "ef7011b9481e4ce18df23d9048b61096",
                        "type": "reference",
                        "attrs": {
                            "display-type": "block",
                            "type": "entry",
                            "class-name": "embedded-entry redactor-component block-entry",
                            "entry-uid": "blt46128ea08fdeb168",
                            "locale": "en-us",
                            "content-type-uid": "kitchen_appliances"
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "0350a91ca6454ae1aef23b350e820a71",
                        "type": "reference",
                        "attrs": {
                            "display-type": "block",
                            "type": "entry",
                            "class-name": "embedded-entry redactor-component block-entry",
                            "entry-uid": "blt1ecc761f990dc547",
                            "locale": "en-us",
                            "content-type-uid": "kitchen_appliances"
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "a3a55e55258d4bcbb8c5ff4c5fe83681",
                        "type": "p",
                        "attrs": {},
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "bf32bd0b7ed548f8b331746d50c7cc53",
                        "type": "p",
                        "attrs": {},
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "541c8ade61c5475e981272cb4a415dba",
                        "type": "reference",
                        "attrs": {
                            "display-type": "display",
                            "asset-uid": "blt6e0b1713123d2566",
                            "content-type-uid": "sys_assets",
                            "asset-link": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt6e0b1713123d2566/60f44c5180ce947e9b4fbe0b/Logo.png",
                            "asset-name": "Logo.png",
                            "asset-type": "image/png",
                            "type": "asset",
                            "class-name": "embedded-asset",
                            "inline": false
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    }
                ],
                "_version": 4
            },
            "publish_details": {
                "environment": "blta39a4441696e35e0",
                "locale": "en-us",
                "time": "2021-07-18T15:51:55.121Z",
                "user": "blt6563a9b067fc1bc9"
            }
        },
        {
            "title": "iPhone 7 128GB",
            "url": "/mobiles/iphone-7",
            "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
            "images": [
                {
                    "uid": "bltc4f54f7ce3155b0e",
                    "title": "iphone7.jpg",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "created_at": "2019-08-16T08:05:15.889Z",
                    "updated_at": "2019-08-16T08:05:15.889Z",
                    "content_type": "image/jpeg",
                    "file_size": "48163",
                    "filename": "iphone7.jpg",
                    "ACL": [],
                    "_version": 1,
                    "is_dir": false,
                    "tags": [],
                    "publish_details": {
                        "environment": "blta39a4441696e35e0",
                        "locale": "en-us",
                        "time": "2019-08-19T12:28:56.964Z",
                        "user": "blt587a89fc7883c56700a95bfe"
                    },
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg"
                }
            ],
            "categories": [
                {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                },
                {
                    "uid": "blt9fa0f59d03862aa7",
                    "_content_type_uid": "category"
                }
            ],
            "price_in_usd": 749,
            "brand": [
                {
                    "uid": "blte6095f030e4b7a30",
                    "_content_type_uid": "brand"
                }
            ],
            "launch_date": "2016-09-07",
            "instock": true,
            "tags": [],
            "locale": "en-us",
            "size": 128,
            "color": "Black",
            "additional_info": [
                {
                    "rating": {
                        "stars": 1,
                        "_metadata": {
                            "uid": "cscc24c2cc9cb09048"
                        }
                    }
                },
                {
                    "deals": {
                        "deal_name": "Black Friday Deal",
                        "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                        "coupons": [
                            {
                                "special_coupons": {
                                    "special_coupon_name": "Friday Bumper Coupon",
                                    "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                                    "special_coupon_discount_rate": 68,
                                    "_metadata": {
                                        "uid": "csafb68d37b06d5300"
                                    }
                                }
                            },
                            {
                                "faqs": {
                                    "coupon_faqs": [
                                        {
                                            "question": "How to avail coupon benefits?",
                                            "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>",
                                            "_metadata": {
                                                "uid": "cs17336dc2d6990bc5"
                                            }
                                        },
                                        {
                                            "question": "Where can I find the coupons I collected?",
                                            "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>",
                                            "_metadata": {
                                                "uid": "cs39abbcbd75de27ed"
                                            }
                                        },
                                        {
                                            "question": "Can you collect a coupon first and purchase an item later?",
                                            "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>",
                                            "_metadata": {
                                                "uid": "cs02f8db316b3be669"
                                            }
                                        }
                                    ],
                                    "_metadata": {
                                        "uid": "cs59ea9c4069a88ddf"
                                    }
                                }
                            }
                        ],
                        "_metadata": {
                            "uid": "cs7da177f7ae4e245e"
                        }
                    }
                },
                {
                    "related_products": {
                        "products": [
                            {
                                "uid": "bltdbe63e789fd3d08e",
                                "_content_type_uid": "product"
                            }
                        ],
                        "home_appliances": [
                            {
                                "uid": "blt2349e9c0b7ce06fa",
                                "_content_type_uid": "electronics"
                            },
                            {
                                "uid": "blt7375bb3c0e4859de",
                                "_content_type_uid": "electronics"
                            },
                            {
                                "uid": "blt44857e1ae5e9e272",
                                "_content_type_uid": "kitchen_appliances"
                            },
                            {
                                "uid": "blt49139d483f5799bc",
                                "_content_type_uid": "kitchen_appliances"
                            },
                            {
                                "uid": "blt1ecc761f990dc547",
                                "_content_type_uid": "kitchen_appliances"
                            },
                            {
                                "uid": "blt7d3413d9daf14f5f",
                                "_content_type_uid": "electronics"
                            }
                        ],
                        "_metadata": {
                            "uid": "cs2a9c02cd41711ba1"
                        }
                    }
                }
            ],
                {
                    "bank": [
                        {
                            "uid": "bltd477bad133866222",
                            "_content_type_uid": "bank"
                        }
                    ],
                    "card_type": [
                        "Debit Card",
                        "Credit Card"
                    ],
                    "discount_in_percentage": 10,
                    "_metadata": {
                        "uid": "cs898e84810f3e2553"
                    }
                }
            ],
            "uid": "blt6549021b3bbeae5c",
            "created_by": "blt42e55757d70d5f81026a2b9f",
            "updated_by": "blt6563a9b067fc1bc9",
            "created_at": "2020-05-10T13:09:01.499Z",
            "updated_at": "2021-07-18T15:50:07.899Z",
            "ACL": {},
            "_version": 6,
            "_in_progress": false,
            "frequently_bought_together": [
                {
                    "uid": "blt0e302e4595da19c1",
                    "_content_type_uid": "electronics"
                },
                {
                    "uid": "blt44857e1ae5e9e272",
                    "_content_type_uid": "kitchen_appliances"
                },
                {
                    "uid": "blt49139d483f5799bc",
                    "_content_type_uid": "kitchen_appliances"
                }
            ],
            "product_rating": 5,
            "helpful_links": {
                "seller": "https://company-name.com",
                "return-policy": "https://policies.com"
            },
            "cart_items": {
                "type": "doc",
                "attrs": {},
                "uid": "16c79b3b075048a9ba829bfd2ab5f948",
                "children": [
                    {
                        "type": "p",
                        "attrs": {},
                        "uid": "dc8342eb5899466ab9dde915dee44646",
                        "children": [
                            {
                                "text": "Items in your Shopping Cart:"
                            }
                        ]
                    },
                    {
                        "type": "p",
                        "attrs": {},
                        "uid": "85ef916a99ee4cb18b40b429ac377626",
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "1761c3a9ba954bab9e516bf2f498f70b",
                        "type": "reference",
                        "attrs": {
                            "display-type": "block",
                            "type": "entry",
                            "class-name": "embedded-entry redactor-component block-entry",
                            "entry-uid": "blt44857e1ae5e9e272",
                            "locale": "en-us",
                            "content-type-uid": "kitchen_appliances"
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "9beb74de52964ccb972c33022f2e7051",
                        "type": "reference",
                        "attrs": {
                            "display-type": "block",
                            "type": "entry",
                            "class-name": "embedded-entry redactor-component block-entry",
                            "entry-uid": "blt10e68dbbfc14b75b",
                            "locale": "en-us",
                            "content-type-uid": "electronics"
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "33c00b31c0224c749d28837090cafe51",
                        "type": "reference",
                        "attrs": {
                            "display-type": "block",
                            "type": "entry",
                            "class-name": "embedded-entry redactor-component block-entry",
                            "entry-uid": "blt49139d483f5799bc",
                            "locale": "en-us",
                            "content-type-uid": "kitchen_appliances"
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "8d740b6c0a3144ddb82e47d13ae5be35",
                        "type": "p",
                        "attrs": {},
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "b578c192d6f6415e9eb6035d915e9769",
                        "type": "p",
                        "attrs": {},
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "fa0826918c8a475a8631d49a06aaf375",
                        "type": "reference",
                        "attrs": {
                            "display-type": "display",
                            "asset-uid": "blt6e0b1713123d2566",
                            "content-type-uid": "sys_assets",
                            "asset-link": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt6e0b1713123d2566/60f44c5180ce947e9b4fbe0b/Logo.png",
                            "asset-name": "Logo.png",
                            "asset-type": "image/png",
                            "type": "asset",
                            "class-name": "embedded-asset",
                            "inline": false
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    }
                ],
                "_version": 6
            },
            "publish_details": {
                "environment": "blta39a4441696e35e0",
                "locale": "en-us",
                "time": "2021-07-18T15:51:55.129Z",
                "user": "blt6563a9b067fc1bc9"
            }
        },
        {
            "title": "iPhone 7 64GB",
            "url": "/mobiles/iphone-7",
            "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
            "images": [
                {
                    "uid": "bltda02effe8bc97bb9",
                    "title": "Apple-iPhone-SE-Rose-Gold.jpg",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "created_at": "2019-08-16T08:05:09.588Z",
                    "updated_at": "2019-08-16T08:05:09.588Z",
                    "content_type": "image/jpeg",
                    "file_size": "45091",
                    "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
                    "ACL": [],
                    "_version": 1,
                    "is_dir": false,
                    "tags": [],
                    "publish_details": {
                        "environment": "blta39a4441696e35e0",
                        "locale": "en-us",
                        "time": "2019-08-19T12:28:56.964Z",
                        "user": "blt587a89fc7883c56700a95bfe"
                    },
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg"
                }
            ],
            "categories": [
                {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                },
                {
                    "uid": "blt9fa0f59d03862aa7",
                    "_content_type_uid": "category"
                }
            ],
            "price_in_usd": 649,
            "brand": [
                {
                    "uid": "blte6095f030e4b7a30",
                    "_content_type_uid": "brand"
                }
            ],
            "launch_date": "2016-09-07",
            "instock": true,
            "tags": [],
            "locale": "en-us",
            "size": 32,
            "color": "Rose Gold",
            "additional_info": [
                {
                    "rating": {
                        "stars": 5,
                        "_metadata": {
                            "uid": "csaf7044f6ec878c06"
                        }
                    }
                },
                {
                    "deals": {
                        "deal_name": "Independence Day Deal",
                        "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                        "coupons": [
                            {
                                "special_coupons": {
                                    "special_coupon_name": "Independence Bumper Offer",
                                    "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                                    "special_coupon_discount_rate": 40,
                                    "_metadata": {
                                        "uid": "csabd69c10a6d182c0"
                                    }
                                }
                            },
                            {
                                "faqs": {
                                    "coupon_faqs": [
                                        {
                                            "question": "How to avail coupon benefits?",
                                            "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>",
                                            "_metadata": {
                                                "uid": "cs4f42a56dc637cb40"
                                            }
                                        },
                                        {
                                            "question": "Where can I find the coupons I collected?",
                                            "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>",
                                            "_metadata": {
                                                "uid": "cs043d4c2b3b499e78"
                                            }
                                        },
                                        {
                                            "question": "Can you collect a coupon first and purchase an item later?",
                                            "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>",
                                            "_metadata": {
                                                "uid": "cs392b72bdc654c66f"
                                            }
                                        }
                                    ],
                                    "_metadata": {
                                        "uid": "csfed25618659ed58a"
                                    }
                                }
                            }
                        ],
                        "_metadata": {
                            "uid": "cs79b806ce3f9ce242"
                        }
                    }
                },
                {
                    "related_products": {
                        "products": [
                            {
                                "uid": "blt6549021b3bbeae5c",
                                "_content_type_uid": "product"
                            },
                            {
                                "uid": "bltdbe63e789fd3d08e",
                                "_content_type_uid": "product"
                            },
                            {
                                "uid": "blta250054cfa4f5aab",
                                "_content_type_uid": "product"
                            }
                        ],
                        "home_appliances": [
                            {
                                "uid": "blt0e302e4595da19c1",
                                "_content_type_uid": "electronics"
                            },
                            {
                                "uid": "blt7375bb3c0e4859de",
                                "_content_type_uid": "electronics"
                            },
                            {
                                "uid": "blt49139d483f5799bc",
                                "_content_type_uid": "kitchen_appliances"
                            },
                            {
                                "uid": "blt1ecc761f990dc547",
                                "_content_type_uid": "kitchen_appliances"
                            }
                        ],
                        "_metadata": {
                            "uid": "csa3614a080ea030c6"
                        }
                    }
                }
            ],
            "bank_offers": [
                {
                    "bank": [
                        {
                            "uid": "blt27729fae9269607c",
                            "_content_type_uid": "bank"
                        }
                    ],
                    "card_type": [
                        "Credit Card"
                    ],
                    "discount_in_percentage": 60,
                    "_metadata": {
                        "uid": "csdd78a3f3499070db"
                    }
                },
                {
                    "bank": [
                        {
                            "uid": "blt4526259b9dc1dd3e",
                            "_content_type_uid": "bank"
                        }
                    ],
                    "card_type": [
                        "Credit Card",
                        "Debit Card"
                    ],
                    "discount_in_percentage": 55,
                    "_metadata": {
                        "uid": "cs011d11b13ff490a9"
                    }
                }
            ],
            "uid": "bltdbe63e789fd3d08e",
            "created_by": "blt42e55757d70d5f81026a2b9f",
            "updated_by": "blt6563a9b067fc1bc9",
            "created_at": "2020-05-11T12:47:32.533Z",
            "updated_at": "2021-07-18T15:47:11.766Z",
            "ACL": {},
            "_version": 6,
            "_in_progress": false,
            "frequently_bought_together": [
                {
                    "uid": "blt7375bb3c0e4859de",
                    "_content_type_uid": "electronics"
                },
                {
                    "uid": "blt2349e9c0b7ce06fa",
                    "_content_type_uid": "electronics"
                },
                {
                    "uid": "blt0e302e4595da19c1",
                    "_content_type_uid": "electronics"
                },
                {
                    "uid": "blt1ecc761f990dc547",
                    "_content_type_uid": "kitchen_appliances"
                },
                {
                    "uid": "blt44857e1ae5e9e272",
                    "_content_type_uid": "kitchen_appliances"
                }
            ],
            "product_rating": 4,
            "helpful_links": {
                "seller": "https://company-name.com",
                "return-policy": "https://policies.com"
            },
            "cart_items": {
                "type": "doc",
                "attrs": {},
                "uid": "e2b3c8a0c42b4f9fb951678a6ad1bae6",
                "children": [
                    {
                        "type": "p",
                        "attrs": {},
                        "uid": "cf07af8ac9f34e55ab68b35a3d19756f",
                        "children": [
                            {
                                "text": "Items in your Shopping Cart:"
                            }
                        ]
                    },
                    {
                        "type": "p",
                        "attrs": {},
                        "uid": "1f68ee412830432f88fe96fb6d5445e1",
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "db7920cc2a5a41faad1d27db252328c0",
                        "type": "reference",
                        "attrs": {
                            "display-type": "block",
                            "type": "entry",
                            "class-name": "embedded-entry redactor-component block-entry",
                            "entry-uid": "blt0e302e4595da19c1",
                            "locale": "en-us",
                            "content-type-uid": "electronics"
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "0c3c4dae7837491bb81fce8987768fd6",
                        "type": "reference",
                        "attrs": {
                            "display-type": "block",
                            "type": "entry",
                            "class-name": "embedded-entry redactor-component block-entry",
                            "entry-uid": "blt46128ea08fdeb168",
                            "locale": "en-us",
                            "content-type-uid": "kitchen_appliances"
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "b518379240794d1bb1e0124564fddea5",
                        "type": "reference",
                        "attrs": {
                            "display-type": "block",
                            "type": "entry",
                            "class-name": "embedded-entry redactor-component block-entry",
                            "entry-uid": "blt44857e1ae5e9e272",
                            "locale": "en-us",
                            "content-type-uid": "kitchen_appliances"
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "d3f73824313046e4a0546f755ed8b871",
                        "type": "p",
                        "attrs": {},
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "d5d74e99e7774d97b0650bb09af94fcc",
                        "type": "p",
                        "attrs": {},
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "3912e4b364b7475b9063a5912ee3bdc0",
                        "type": "reference",
                        "attrs": {
                            "display-type": "display",
                            "asset-uid": "blt6e0b1713123d2566",
                            "content-type-uid": "sys_assets",
                            "asset-link": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt6e0b1713123d2566/60f44c5180ce947e9b4fbe0b/Logo.png",
                            "asset-name": "Logo.png",
                            "asset-type": "image/png",
                            "type": "asset",
                            "class-name": "embedded-asset",
                            "inline": false
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    }
                ],
                "_version": 6
            },
            "publish_details": {
                "environment": "blta39a4441696e35e0",
                "locale": "en-us",
                "time": "2021-07-18T15:51:55.114Z",
                "user": "blt6563a9b067fc1bc9"
            }
        },
        {
            "title": "Redmi Note Prime",
            "url": "/redmi-note-prime",
            "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
            "images": [
                {
                    "uid": "blt50a7a9dd6866776f",
                    "title": "01.jpg",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "created_at": "2019-08-16T08:05:18.932Z",
                    "updated_at": "2019-08-16T08:05:18.932Z",
                    "content_type": "image/jpeg",
                    "file_size": "145200",
                    "filename": "01.jpg",
                    "ACL": [],
                    "_version": 1,
                    "is_dir": false,
                    "tags": [],
                    "publish_details": {
                        "environment": "blta39a4441696e35e0",
                        "locale": "en-us",
                        "time": "2019-08-19T12:28:56.964Z",
                        "user": "blt587a89fc7883c56700a95bfe"
                    },
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg"
                }
            ],
            "categories": [
                {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                },
                {
                    "uid": "blt9fa0f59d03862aa7",
                    "_content_type_uid": "category"
                }
            ],
            "price_in_usd": 117.3,
            "brand": [
                {
                    "uid": "blta2e0d2130eb86263",
                    "_content_type_uid": "brand"
                }
            ],
            "launch_date": "2016-08-17",
            "instock": true,
            "tags": [],
            "locale": "en-us",
            "size": 16,
            "color": "Black",
            "additional_info": [
                {
                    "rating": {
                        "stars": 2,
                        "_metadata": {
                            "uid": "cs291c6399e1539311"
                        }
                    }
                },
                {
                    "deals": {
                        "deal_name": "Deals of the Day",
                        "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                        "coupons": [
                            {
                                "daily_coupons": {
                                    "coupon_name": "Lucky Twenty",
                                    "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                                    "coupon_discount_rate": 20,
                                    "_metadata": {
                                        "uid": "cs2a17f3f059dd9e7b"
                                    }
                                }
                            },
                            {
                                "special_coupons": {
                                    "special_coupon_name": "Kitchen Bonanza",
                                    "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                                    "special_coupon_discount_rate": 60,
                                    "_metadata": {
                                        "uid": "cse8bc70b701541c2b"
                                    }
                                }
                            }
                        ],
                        "_metadata": {
                            "uid": "csc9f344e9eed58485"
                        }
                    }
                },
                {
                    "related_products": {
                        "products": [
                            {
                                "uid": "blta250054cfa4f5aab",
                                "_content_type_uid": "product"
                            },
                            {
                                "uid": "bltd383742b89bef7af",
                                "_content_type_uid": "product"
                            }
                        ],
                        "home_appliances": [
                            {
                                "uid": "blt2349e9c0b7ce06fa",
                                "_content_type_uid": "electronics"
                            },
                            {
                                "uid": "blt46128ea08fdeb168",
                                "_content_type_uid": "kitchen_appliances"
                            }
                        ],
                        "_metadata": {
                            "uid": "cs572e9c4a17ad2692"
                        }
                    }
                }
            ],
                {
                    "bank": [
                        {
                            "uid": "bltfbe674ca5af1ffa3",
                            "_content_type_uid": "bank"
                        }
                    ],
                    "card_type": [
                        "Debit Card",
                        "Credit Card"
                    ],
                    "discount_in_percentage": 24,
                    "_metadata": {
                        "uid": "cs9cc5da2d0bfbc08d"
                    }
                }
            ],
            "uid": "blte63b2ff6f6414d8e",
            "created_by": "blt42e55757d70d5f81026a2b9f",
            "updated_by": "blt6563a9b067fc1bc9",
            "created_at": "2020-05-11T12:44:49.928Z",
            "updated_at": "2021-07-18T15:45:50.906Z",
            "ACL": {},
            "_version": 6,
            "_in_progress": false,
            "frequently_bought_together": [
                {
                    "uid": "blt7375bb3c0e4859de",
                    "_content_type_uid": "electronics"
                },
                {
                    "uid": "blt2349e9c0b7ce06fa",
                    "_content_type_uid": "electronics"
                },
                {
                    "uid": "blt7d3413d9daf14f5f",
                    "_content_type_uid": "electronics"
                },
                {
                    "uid": "blt46128ea08fdeb168",
                    "_content_type_uid": "kitchen_appliances"
                }
            ],
            "product_rating": 4,
            "helpful_links": {
                "seller": "https://company-name.com",
                "return-policy": "https://policies.com"
            },
            "cart_items": {
                "type": "doc",
                "attrs": {},
                "uid": "2b35f3429dca426e9dcfdb614b5ce60f",
                "children": [
                    {
                        "type": "p",
                        "attrs": {},
                        "uid": "833515f543e44c4f99c6e8c406129256",
                        "children": [
                            {
                                "text": "Items in your Shopping Cart:"
                            }
                        ]
                    },
                    {
                        "type": "p",
                        "attrs": {},
                        "uid": "818774a71f8047d990d1a2ab8ad0ee17",
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "319a19710e0b4601b93bfff2d85cce2b",
                        "type": "reference",
                        "attrs": {
                            "display-type": "block",
                            "type": "entry",
                            "class-name": "embedded-entry redactor-component block-entry",
                            "entry-uid": "blt49139d483f5799bc",
                            "locale": "en-us",
                            "content-type-uid": "kitchen_appliances"
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "7d0472d3f4984e19bad7dfc672f2120d",
                        "type": "reference",
                        "attrs": {
                            "display-type": "block",
                            "type": "entry",
                            "class-name": "embedded-entry redactor-component block-entry",
                            "entry-uid": "blt10e68dbbfc14b75b",
                            "locale": "en-us",
                            "content-type-uid": "electronics"
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "d69bf28413a645e88da17927341f54be",
                        "type": "reference",
                        "attrs": {
                            "display-type": "block",
                            "type": "entry",
                            "class-name": "embedded-entry redactor-component block-entry",
                            "entry-uid": "blt1ecc761f990dc547",
                            "locale": "en-us",
                            "content-type-uid": "kitchen_appliances"
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "1dbc20aa47a349db8f1b1fd3ce192f13",
                        "type": "p",
                        "attrs": {},
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "df6e776bc88142f9a391c7d37b931852",
                        "type": "p",
                        "attrs": {},
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "bf5295ea97c34661b26b21d735136d4d",
                        "type": "reference",
                        "attrs": {
                            "display-type": "display",
                            "asset-uid": "blt6e0b1713123d2566",
                            "content-type-uid": "sys_assets",
                            "asset-link": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt6e0b1713123d2566/60f44c5180ce947e9b4fbe0b/Logo.png",
                            "asset-name": "Logo.png",
                            "asset-type": "image/png",
                            "type": "asset",
                            "class-name": "embedded-asset",
                            "inline": false
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    }
                ],
                "_version": 6
            },
            "publish_details": {
                "environment": "blta39a4441696e35e0",
                "locale": "en-us",
                "time": "2021-07-18T15:51:55.101Z",
                "user": "blt6563a9b067fc1bc9"
            }
        },
        {
            "title": "Galaxy J1",
            "url": "/mobiles/galaxy-j1",
            "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
            "size": 8,
            "color": "Black",
            "images": [
                {
                    "uid": "blt11b00b9a335ed526",
                    "title": "samsung-galaxy-j1.jpg",
                    "created_by": "bltcd82b2c6bf913241",
                    "updated_by": "bltcd82b2c6bf913241",
                    "created_at": "2019-08-16T08:05:18.935Z",
                    "updated_at": "2019-08-16T08:05:18.935Z",
                    "content_type": "image/jpeg",
                    "file_size": "166189",
                    "filename": "samsung-galaxy-j1.jpg",
                    "ACL": [],
                    "_version": 1,
                    "is_dir": false,
                    "tags": [],
                    "publish_details": {
                        "environment": "blta39a4441696e35e0",
                        "locale": "en-us",
                        "time": "2019-08-19T12:28:56.964Z",
                        "user": "blt587a89fc7883c56700a95bfe"
                    },
                    "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg"
                }
            ],
            "categories": [
                {
                    "uid": "blt9d72fa3afc11d27f",
                    "_content_type_uid": "category"
                }
            ],
            "price_in_usd": 159.78,
            "brand": [
                {
                    "uid": "blt5499dd00bb716b14",
                    "_content_type_uid": "brand"
                }
            ],
            "launch_date": "2017-01-06",
            "instock": true,
            "additional_info": [
                {
                    "rating": {
                        "stars": 4,
                        "_metadata": {
                            "uid": "cs27ff637006a76423"
                        }
                    }
                },
                {
                    "deals": {
                        "deal_name": "Black Friday Deal",
                        "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
                        "coupons": [
                            {
                                "special_coupons": {
                                    "special_coupon_name": "Friday Bumper Coupon",
                                    "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                                    "special_coupon_discount_rate": 70,
                                    "_metadata": {
                                        "uid": "cs20f74cc5a6e04d6c"
                                    }
                                }
                            },
                            {
                                "faqs": {
                                    "coupon_faqs": [
                                        {
                                            "question": "How to avail coupon benefits?",
                                            "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>",
                                            "_metadata": {
                                                "uid": "cs87b6d2e8a1d339de"
                                            }
                                        },
                                        {
                                            "question": "Where can I find the coupons I collected?",
                                            "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>",
                                            "_metadata": {
                                                "uid": "cs88ecda7859078845"
                                            }
                                        },
                                        {
                                            "question": "Can you collect a coupon first and purchase an item later?",
                                            "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>",
                                            "_metadata": {
                                                "uid": "cs80452887bd7278d8"
                                            }
                                        }
                                    ],
                                    "_metadata": {
                                        "uid": "cs0780c9446a68875c"
                                    }
                                }
                            }
                        ],
                        "_metadata": {
                            "uid": "cs04a24121462c26a1"
                        }
                    }
                },
                {
                    "related_products": {
                        "products": [
                            {
                                "uid": "bltd8ff819f10c6973b",
                                "_content_type_uid": "product"
                            },
                            {
                                "uid": "blt1e1d4385e656835a",
                                "_content_type_uid": "product"
                            }
                        ],
                        "home_appliances": [
                            {
                                "uid": "blt23f4282bd1173ae9",
                                "_content_type_uid": "electronics"
                            },
                            {
                                "uid": "blt49139d483f5799bc",
                                "_content_type_uid": "kitchen_appliances"
                            }
                        ],
                        "_metadata": {
                            "uid": "cs3dbebc9a30618e31"
                        }
                    }
                }
            ],
            "bank_offers": [
                {
                    "bank": [
                        {
                            "uid": "blt27729fae9269607c",
                            "_content_type_uid": "bank"
                        }
                    ],
                    "card_type": [
                        "Credit Card"
                    ],
                    "discount_in_percentage": 25,
                    "_metadata": {
                        "uid": "csb29efc6f8ef02d01"
                    }
                },
                {
                    "bank": [
                        {
                            "uid": "bltd477bad133866222",
                            "_content_type_uid": "bank"
                        }
                    ],
                    "card_type": [
                        "Credit Card",
                        "Debit Card"
                    ],
                    "discount_in_percentage": 30,
                    "_metadata": {
                        "uid": "csbb444f7ec5d40610"
                    }
                }
            ],
            "tags": [],
            "locale": "en-us",
            "uid": "blt1e1d4385e656835a",
            "created_by": "blt42e55757d70d5f81026a2b9f",
            "updated_by": "blt6563a9b067fc1bc9",
            "created_at": "2020-05-11T13:32:18.406Z",
            "updated_at": "2021-07-18T15:44:32.861Z",
            "ACL": {},
            "_version": 6,
            "_in_progress": false,
            "frequently_bought_together": [
                {
                    "uid": "blt7375bb3c0e4859de",
                    "_content_type_uid": "electronics"
                },
                {
                    "uid": "blt23f4282bd1173ae9",
                    "_content_type_uid": "electronics"
                },
                {
                    "uid": "blt44857e1ae5e9e272",
                    "_content_type_uid": "kitchen_appliances"
                }
            ],
            "product_rating": 2,
            "helpful_links": {
                "seller": "https://company-name.com",
                "return-policy": "https://policies.com"
            },
            "cart_items": {
                "type": "doc",
                "attrs": {},
                "uid": "b1698509b1544b7db2dba99ca1f4f8ec",
                "children": [
                    {
                        "type": "p",
                        "attrs": {},
                        "uid": "03a7cd34c2f747ed935796a417f77ad1",
                        "children": [
                            {
                                "text": "Items in your Shopping Cart:"
                            }
                        ]
                    },
                    {
                        "type": "p",
                        "attrs": {},
                        "uid": "7aef68e211cf4368b2915e77a1394cdf",
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "0316b37defe14122ab8deaab655ccc42",
                        "type": "reference",
                        "attrs": {
                            "display-type": "block",
                            "type": "entry",
                            "class-name": "embedded-entry redactor-component block-entry",
                            "entry-uid": "blt44857e1ae5e9e272",
                            "locale": "en-us",
                            "content-type-uid": "kitchen_appliances"
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "19e2c3cb90f742f7a636ba550b2b32bb",
                        "type": "reference",
                        "attrs": {
                            "display-type": "block",
                            "type": "entry",
                            "class-name": "embedded-entry redactor-component block-entry",
                            "entry-uid": "blt0e302e4595da19c1",
                            "locale": "en-us",
                            "content-type-uid": "electronics"
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "1ce6281292ff4405912b004db181af1e",
                        "type": "reference",
                        "attrs": {
                            "display-type": "block",
                            "type": "entry",
                            "class-name": "embedded-entry redactor-component block-entry",
                            "entry-uid": "blt49139d483f5799bc",
                            "locale": "en-us",
                            "content-type-uid": "kitchen_appliances"
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "21e5c329ca9e45d4ad9714e24836c1a1",
                        "type": "p",
                        "attrs": {},
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "5026a2b9171c4dc9a10f51b922dc54ea",
                        "type": "p",
                        "attrs": {},
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    },
                    {
                        "uid": "91bebb33099748068e8d048be217256f",
                        "type": "reference",
                        "attrs": {
                            "display-type": "display",
                            "asset-uid": "blt6e0b1713123d2566",
                            "content-type-uid": "sys_assets",
                            "asset-link": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt6e0b1713123d2566/60f44c5180ce947e9b4fbe0b/Logo.png",
                            "asset-name": "Logo.png",
                            "asset-type": "image/png",
                            "type": "asset",
                            "class-name": "embedded-asset",
                            "inline": false
                        },
                        "children": [
                            {
                                "text": ""
                            }
                        ]
                    }
                ],
                "_version": 6
            },
            "publish_details": {
                "environment": "blta39a4441696e35e0",
                "locale": "en-us",
                "time": "2021-07-18T15:51:55.144Z",
                "user": "blt6563a9b067fc1bc9"
            }
        }
    ]
}
```

### Search by Regex Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={ "modular_block_UID.block_UID.field_UID": { "$regex": "value" }}`

Get entries by using regular expressions to query fields of a Modular Block. These Regex queries will help to retrieve all the entries of a content type that have field values matching the condition provided in the query parameter.  
  
This query will work for entries only and works specifically for fields that are part of any block within a Modular Block field.

**Example:** In the Products content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Deals ("uid":"deals") block. And, within this Deals block, we have a field named Deal Name ("uid":"deal\_name"). If, for instance, you want to retrieve the entries where Deal Name starts with “Christmas Deal,” use the following value in the query parameter:

{ "additional\_info.deals.deal\_name": { "$regex": "^Christmas Deal" }}

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## AND Operator

### AND operator

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"$and":[{"field1_UID": "value1"},{"field2_UID": "value2"}]}`

Get entries that satisfy all the conditions provided in the '$and' query.This query will work for both entries as well as assets.

**Example:** Let’s say you want to retrieve entries in which the Title field is set to 'Redmi Note 3' and the Color field is 'Gold'. The query to be used for such a case would be:

{"$and":\[{"title": "Redmi Note 3"},{"color": "Gold"}\]}

The response will contain the entries where the values for Title is 'Redmi Note 3' and Color is 'Gold'.

##### AND Operator Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### AND Operator Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"$and":[{"group_UID.field1_UID": "value1"},{"group_UID.field2_UID": "value2"}]}`

Get entries that satisfy all the conditions provided in the $and query.This query is specifically for entries and works on fields that are part of the Group field.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have fields named Card Type ("uid":"card\_type") and Discount in Percentage ("uid":"discount\_in\_percentage"). If, for instance, you want to retrieve the entries in where the value for Card Type is ‘Credit Card’ and ‘Discount in Percentage’ is '12', use the following value in the query parameter:

{"$and":\[{"bank\_offers.card\_type": "Credit Card"},{"bank\_offers.discount\_in\_percentage": 12}\]}

##### AND Operator Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### AND Operator Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"$and":[{"modular_block_UID.block_UID.field1_UID": "value1"},{"modular_block_UID.block_UID.field2_UID": "value2"}]}`

Get entries that satisfy all the conditions provided in the $and query.This query is specifically for entries and works on fields that are part of any block within a Modular Block field.

**Example:** In the Products content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Deals ("uid":"deals") and Rating ("uid":"rating") blocks. And, within the Deals and Rating blocks, we have the Deal Name ("uid":"deal\_name") and Stars ("uid":"stars") fields, respectively. If, for instance, you want to retrieve the entries in where the values for Deals and Ratings fields are ‘Christmas Deal’ and '2', respectively, use the following value in the query parameter:

{"$and":\[{"additional\_info.deals.deal\_name": "Christmas Deal"},{"additional\_info.rating.stars": 2}\]}

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## OR Operator

### OR Operator

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"$or":[{"field1_UID": "value1"},{"field2_UID": "value2"}]}`

Get all entries that satisfy at least one of the given conditions provided in the '$or' query.  
  
This query will work for both entries as well as assets.

**Example:** Let’s say you want to retrieve entries in which either the value for the Color field is 'Gold' or 'Black'. The query to be used for such a case would be:

{ "$or": \[{ "color": "Gold" }, { "color": "Black" }\] }

The response will contain the entries that have their Color fields set to either 'Gold' or 'Black'.

##### OR Operator Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### OR Operator Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"$or":[{"group_UID.field1_UID": "value1"},{"group_UID.field2_UID": "value2"}]}`

Get all entries that satisfy at least one of the given conditions provided in the $or query.  
  
This query is specifically for entries and works for fields that are part of the Group field.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have fields named Card Type ("uid":"card\_type") and Discount in Percentage ("uid":"discount\_in\_percentage"). If, for instance, you want to retrieve the entries where either the value for Card Type is ‘Debit Card’ or the value for Discount in Percentage is '12', use the following value in the query parameter:

{ "$or": \[{ "bank\_offers.card\_type": "Debit Card" }, { "bank\_offers.discount\_in\_percentage": 12}\]}

##### OR Operator Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### OR Operator Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"$or":[{"modular_block_UID.block_UID.field1_UID": "value1"},{"modular_block_UID.block_UID.field2_UID": "value2"}]}`

Get all entries that satisfy at least one of the given conditions provided in the '$or' query.  
  
This query is specifically for entries and works on fields that are part of any block within a Modular Block field.

**Example:** In the ‘Products’ content type, we have a Modular Group field named ‘Additional Info’ ("uid":"additional\_info") that contains the Deals ("uid":"deals") and Rating ("uid":"rating") blocks. And, within the Deals and Rating blocks, we have the Deal Name ("uid":"deal\_name") and Stars ("uid":"stars") fields, respectively. If, for instance, you want to retrieve the entries where either the value for Deal Name is ‘Christmas Deal’ or the value for Stars is '2', respectively, use the following value in the query parameter:

{"$or":\[{"additional\_info.deals.deal\_name": "Christmas Deal"},{"additional\_info.rating.stars": 2}\]}

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Less Than

### Less Than

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"field_UID": { "$lt": "value" }}`

Get entries in which the value of a field is lesser than the value provided in the condition.  
  
This query will work for both entries as well as assets.

**Example:** Let’s say you want to retrieve all the entries that have value of the Price in USD field set to a value that is less than but not equal to 600. You can send the parameter as:

{ "price\_in\_usd": { "$lt": 600 } }

This will give you all the entries of mobile phones costing less than but not equal to $600.

Let’s consider another example. You want to retrieve all the entries that have their start date before 8th December, 2017. Now, you need to set this parameter with the date in the ISO Date format as below:

{ "start\_date": { "$lt": "2017-12-08T00:00:00.000Z" } }

This will give you all the entries where the start date is before 8th December, 2017, but you will not get the entries of the same date.

**Note:** Avoid using seconds and milliseconds in date/time queries. We recommend to round off to the nearest minute (at most 5 minutes).

##### Less Than Operator Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Less Than Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"group_UID.field_UID": { "$lt": "value" }}`

Get entries in which the value of a field is lesser than the value provided in the condition.  
  
This query is specifically for fields that are part of the Group field.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a subfield named Discount in Percentage ("uid":"discount\_in\_percentage"). If, for instance, you want to retrieve the entries in which the values for the Discount in Percentage field is less than ‘25’, use the following value in the query parameter:

{ "bank\_offers.discount\_in\_percentage": { "$lt": 25 } }

**Note:** Avoid using seconds and milliseconds in date/time queries. We recommend to round off to the nearest minute (at most 5 minutes).

##### Less Than Operator Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Less Than Operator Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"modular_block_UID.block_UID.field_UID": { "$lt": "value" }}`

Get entries in which the value of a field is lesser than the value provided in the condition.  
  
This query is specifically for fields that are part of any block within a Modular Block field.

**Example:** In the Products content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Rating ("uid":"rating") block. And, within this Block field, we have a field named Stars ("uid":"stars"). If, for instance, you want to retrieve the entries in which the values for the Stars field is less than ‘3’, use the following value in the query parameter:

{ "additional\_info.rating.stars": { "$lt": 3 } }

**Note:** Avoid using seconds and milliseconds in date/time queries. We recommend to round off to the nearest minute (at most 5 minutes).

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Less Than Or Equal To

### Less Than or Equal To

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"field_UID": { "$lte": "value" }}`

Get entries in which the value of a field is lesser than or equal to the value provided in the condition.This query will work for both entries as well as assets.

**Example:** Let’s say you want to retrieve all the entries that have value of the Price in USD field set to a value that is less than or equal to 146. To achieve this, send the parameter as:

{ "price\_in\_usd": { "$lte": 146 } }

This will give you all the entries of mobile phones costing less than and equal to $146.

Let’s consider another example. If you want to retrieve all the entries that have their start date before and on 8th December, 2017. Now, you need to set this parameter with the date in the ISO Date format as below:

{ "start\_date": { "$lte": "2017-11-08T00:00:00.000Z" } }

This will give you all the entries before 8th December, 2017, along with the entries of 8th December, 2017.

**Note:** Avoid using seconds and milliseconds in date/time queries. We recommend to round off to the nearest minute (at most 5 minutes).

##### Less Than Or Equal To Operator Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Less Than Or Equal To Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"group_UID.field_UID": { "$lte": "value" }}`

Get entries in which the value of a field is lesser than or equal to the value provided in the condition.This query is specifically for fields that are part of the Group field.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a subfield named Discount in Percentage ("uid":"discount\_in\_percentage"). If, for instance, you want to retrieve the entries in which the values for the Discount in Percentage field is less than or equal to ‘24’, use the following value in the query parameter:

{ "bank\_offers.discount\_in\_percentage": { "$lte": 27 } }

**Note:** Avoid using seconds and milliseconds in date/time queries. We recommend to round off to the nearest minute (at most 5 minutes).

##### Less Than Or Equal To Operator Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Less Than Or Equal To Operator Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"modular_block_UID.block_UID.field_UID": { "$lte": "value" }}`

Get entries in which the value of a field is lesser than or equal to the value provided in the condition.This query is specifically for entries and works on fields that are part of any block within a Modular Block field.

**Example:** In the Products content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Rating ("uid":"rating") block. And, within this Rating block, we have a field named Stars ("uid":"stars"). If, for instance, you want to retrieve the entries in which the values for the Stars field is less than or equal to ‘3’, use the following value in the query parameter:

{ "additional\_info.rating.stars": { "$lte": 3 } }

**Note:** Avoid using seconds and milliseconds in date/time queries. We recommend to round off to the nearest minute (at most 5 minutes).

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Greater Than

### Greater Than

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"field_UID": { "$gt": "value" }}`

Get entries in which the value for a field is greater than the value provided in the condition.This query will work for both entries as well as assets.

**Example:** Let’s say you want to retrieve all the entries that have value of the Price in USD field set to a value that is greater than but not equal to 146. You can send the parameter as:

{ "price\_in\_usd": { "$gt": 146 } }

This will give you all the entries of mobile phones costing greater than and not equal to $146.

Let’s consider another example. If you want to retrieve all the entries that have their start date later than 8th December, 2017. Now, you need to set this parameter with the date in the ISO Date format as below:

{ "start\_date": { "$gt": "2017-11-08T00:00:00.000Z" } }

This will give you all the entries after 8th December, 2017.

**Note:** Avoid using seconds and milliseconds in date/time queries. We recommend to round off to the nearest minute (at most 5 minutes).

##### Greater Than Operator Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Greater Than Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"group_UID.field_UID": { "$gt": "value" }}`

Get entries in which the value for a field is greater than the value provided in the condition.This query is specifically for entries and works on fields that are part of the Group field.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a subfield named Discount in Percentage ("uid":"discount\_in\_percentage"). If, for instance, you want to retrieve the entries in which the values for the Discount in Percentage field is greater than ‘20’, use the following value in the query parameter:

{ "bank\_offers.discount\_in\_percentage": { "$gt": 20 } }

**Note:** Avoid using seconds and milliseconds in date/time queries. We recommend to round off to the nearest minute (at most 5 minutes).

##### Greater Than Operator Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Greater Than Operator Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"modular_block_UID.block_UID.field_UID": { "$gt": "value" }}`

Get entries in which the value for a field is greater than the value provided in the condition.This query is specifically for entries and works on fields that are part of any block within a Modular Block field.

**Example:** In the Products content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Rating ("uid":"rating") block. And, within this Block field, we have a field named Stars ("uid":"stars"). If, for instance, you want to retrieve the entries in which the values for the Stars field is greater than ‘3’, use the following value in the query parameter:

{"additional\_info.rating.stars": {"$gt": 3}}

**Note:** Avoid using seconds and milliseconds in date/time queries. We recommend to round off to the nearest minute (at most 5 minutes).

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Greater Than Or Equal To

### Greater Than or Equal To

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"field_UID": { "$gte": "value" }}`

Get entries in which the value of a field is greater than or equal to the value provided in the condition.  
This query will work for both entries as well as assets.

**Example:** Let’s say you want to retrieve all the entries that have value of the Price in USD field set to a value that is greater than or equal to 146. You can send the parameter as:

{ "price\_in\_usd": { "$gte": 146 } }

This will give you all the entries of mobile phones costing greater than and equal to $146.

Let’s consider another example. You want to retrieve all the entries that have their start date 8th December, 2017, and later. Now, you need to set this parameter with the date in the ISO Date format as below:

{ "start\_date": { "$gte": "2017-11-08T00:00:00.000Z" } }

This will give you all the entries where the start date falls after 8th December, 2017, along with the entries of the same date.

**Note:** Avoid using seconds and milliseconds in date/time queries. We recommend to round off to the nearest minute (at most 5 minutes).

##### Greater Than Or Equal To Operator Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Greater Than Or Equal To Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"group_UID.field_UID": { "$gte": "value" }}`

Get entries in which the value of a field is greater than or equal to the value provided in the condition.This query is specifically for fields that are part of the Group field.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a subfield named Discount in Percentage ("uid":"discount\_in\_percentage"). If, for instance, you want to retrieve the entries in which the values for the Discount in Percentage field is greater than or equal to ‘20’, use the following value in the query parameter:

{ "bank\_offers.discount\_in\_percentage": { "$gte": 20 } }

**Note:** Avoid using seconds and milliseconds in date/time queries. We recommend to round off to the nearest minute (at most 5 minutes).

##### Greater Than Or Equal To Operator Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Greater Than Or Equal To Operator Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"modular_block_UID.block_UID.field_UID": { "$gte": "value" }}`

Get entries in which the value of a field is greater than or equal to the value provided in the condition.  
This query is specifically for fields that are part of any block within a Modular Block field.

**Example:** In the Products content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Rating ("uid":"rating") block. And, within this Rating block, we have a field named Stars' ("uid":"stars"). If, for instance, you want to retrieve the entries in which the values for the Stars field is greater than or equal to ‘3’, use the following value in the query parameter:

{"additional\_info.rating.stars": {"$gte": 3}

**Note:** Avoid using seconds and milliseconds in date/time queries. We recommend to round off to the nearest minute (at most 5 minutes).

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Limit

### Limit

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&limit={limit_value}`

The limit parameter will return a specific number of entries in the output. So for example, if the content type contains more than 100 entries and you wish to fetch only the first 2 entries, you need to specify '2' as value in this parameter.

This query will work for both entries as well as assets.

**Example:**

https://cdn.contentstack.io/v3/content\_types/product/entries?environment=production&limit=2

**Note**: By default, the limit for response details per request is 100.

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **limit** (required)
  Enter the maximum number of entries to be returned.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Skip

### Skip

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&skip={skip_value}`

The skip parameter will skip a specific number of entries in the output. So, for example, if the content type contains around 12 entries and you want to skip the first 2 entries to get only the last 10 in the response body, you need to specify ‘2’ here.This query will work for both entries as well as assets.

**Example:**

https://cdn.contentstack.io/v3/content\_types/product/entries?environment=production&skip=2

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **skip** (required)
  Enter the number of entries to be skipped.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Order by asc

### Order by asc

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&asc={field_UID}`

When fetching entries, you can sort them in the ascending order with respect to the value of a specific field in the response body.

This query will work for both entries as well as assets.

Example: In the Product content type, if you wish to sort the entries with respect to their prices, the parameter can be used as:

https://cdn.contentstack.io/v3/content\_types/product/entries?environment=production&asc=price\_in\_usd

This will give you all the entries sorted in the ascending order with respect to the Price in USD field.

**Note:** In situations where identical or empty/null values are present in the field selected for sorting, the sorting process may not yield accurate results, potentially leading to duplicate results in the output. To avoid this, consider utilizing fields without duplicate values, or fields that are indexed (for e.g., updated\_at), to effectively sort your data. Alternatively, if you must use the non-indexed fields for sorting, please contact our [Support](mailto:support@contentstack.com) team for assistance in adding indexes to the field and ensuring the correct sorting of your data within the query results. Please note that a maximum of 5 fields can be indexed per Organization.

##### Order by asc Operator Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **asc** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Order by asc Operator Within Group

**GET** `/content_types/{content_type_uid}/entries?environment={environment_name}&locale={locale_code}&asc={group_UID.field_UID}`

Sort your fetched entries in the ascending order with respect to the value of a specific field in the response body.This query is specifically for entries and works on fields that are part of the Group field.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a subfield named Discount in Percentage ("uid":"discount\_in\_percentage"). If, for instance, you want to retrieve entries in the ascending order with respect to the Discount in Percentage field, use the following URL:

https://cdn.contentstack.io/v3/content\_types/product/entries?environment=production&asc=bank\_offers.discount\_in\_percentage

##### Order by asc Operator within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **asc** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Order by asc Operator within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&asc={modular_block_UID.block_UID.field_UID}`

When fetching entries, you can sort your fetched entries in the ascending order with respect to the values of any block within a Modular Block field.

This query is specifically for entries and works on fields that are part of any block within a Modular Block field.

**Note:** Currently, this query is not applicable for Reference fields within Modular Blocks.

**Example:** In the Products content type, we have a Modular Block field named Additional Info ("uid":"additional\_info") that contains the Rating ("uid":"rating") block. And, within this Rating block, we have a field named Stars ("uid":"stars"). Use the following URL to retrieve entries in ascending order based on the values of the Stars field:

https://cdn.contentstack.io/v3/content\_types/product/entries?environment=production&asc=additional\_info.rating.stars

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries need to be included. Only the entries published in this locale will be displayed.
- **asc** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
	"entries": [{
			"title": "Galaxy Note",
			"url": "/mobiles/galaxy-note",
			"description": "<p>Snapdragon</p>",
			"size": 32,
			"color": "Gold",
			"images": [{
					"uid": "blt19c34e5374418484",
					"title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
					"created_by": "bltcd82b2c6bf913241",
					"updated_by": "bltcd82b2c6bf913241",
					"created_at": "2019-08-16T08:05:30.460Z",
					"updated_at": "2019-08-16T08:05:30.460Z",
					"content_type": "image/jpeg",
					"file_size": "69609",
					"filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
					"ACL": [],
					"_version": 1,
					"is_dir": false,
					"tags": [],
					"publish_details": {
						"environment": "blta39a4441696e35e0",
						"locale": "en-us",
						"time": "2019-08-19T12:28:47.432Z",
						"user": "blt587a89fc7883c56700a95bfe"
					},
					"url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg"
				},
				{
					"uid": "bltf8c7852efd06d11f",
					"title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
					"created_by": "bltcd82b2c6bf913241",
					"updated_by": "bltcd82b2c6bf913241",
					"created_at": "2019-08-16T08:05:05.009Z",
					"updated_at": "2019-08-16T08:05:05.009Z",
					"content_type": "image/png",
					"file_size": "63422",
					"filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
					"ACL": [],
					"_version": 1,
					"is_dir": false,
					"tags": [],
					"publish_details": {
						"environment": "blta39a4441696e35e0",
						"locale": "en-us",
						"time": "2019-08-19T12:29:04.717Z",
						"user": "blt587a89fc7883c56700a95bfe"
					},
					"url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png"
				}
			],
			"categories": [{
					"uid": "blt9fa0f59d03862aa7",
					"_content_type_uid": "category"
				},
				{
					"uid": "blt9d72fa3afc11d27f",
					"_content_type_uid": "category"
				}
			],
			"price_in_usd": 101,
			"brand": [{
				"uid": "blt5499dd00bb716b14",
				"_content_type_uid": "brand"
			}],
			"launch_date": "2016-07-07",
			"instock": false,
			"tags": [
				"redmi"
			],
			"locale": "en-us",
			"additional_info": [{
					"rating": {
						"stars": 2,
						"_metadata": {
							"uid": "cs46f74dadd613e09f"
						}
					}
				},
				{
					"deals": {
						"deal_name": "Christmas Deal",
						"deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
						"coupons": [{
								"daily_coupons": {
									"coupon_name": "Early Bird Coupon",
									"coupon_details": "Save 50 percent on your first three purchases.",
									"coupon_discount_rate": 50,
									"_metadata": {
										"uid": "cs4fec082310f933dc"
									}
								}
							},
							{
								"special_coupons": {
									"special_coupon_name": "High Five",
									"special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
									"special_coupon_discount_rate": 5,
									"_metadata": {
										"uid": "csd636c1a11257a441"
									}
								}
							},
							{
								"faqs": {
									"coupon_faqs": [{
											"question": "How to avail coupon benefits?",
											"answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>",
											"_metadata": {
												"uid": "csa2cee03fe308b928"
											}
										},
										{
											"question": "Where can I find the coupons I collected?",
											"answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>",
											"_metadata": {
												"uid": "cs0dd7cea1a72d730f"
											}
										},
										{
											"question": "Can you collect a coupon first and purchase an item later?",
											"answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>",
											"_metadata": {
												"uid": "csacf3cdc9a9ac56b9"
											}
										}
									],
									"_metadata": {
										"uid": "cs4d01ac5b84c9adf4"
									}
								}
							}
						],
						"_metadata": {
							"uid": "csa1a68c5c926c9d9b"
						}
					}
				},
				{
					"related_products": {
						"products": [{
								"uid": "blte63b2ff6f6414d8e",
								"_content_type_uid": "product"
							},
							{
								"uid": "blta250054cfa4f5aab",
								"_content_type_uid": "product"
							}
						],
						"home_appliances": [{
								"uid": "blt23f4282bd1173ae9",
								"_content_type_uid": "electronics"
							},
							{
								"uid": "blt49139d483f5799bc",
								"_content_type_uid": "kitchen_appliances"
							}
						],
						"_metadata": {
							"uid": "csc9ff9c5b2819355c"
						}
					}
				}
			],
			"bank_offers": [{
				"bank": [{
					"uid": "blt83b7564e5d749a90",
					"_content_type_uid": "bank"
				}],
				"card_type": [
					"Debit Card"
				],
				"discount_in_percentage": 8,
				"_metadata": {
					"uid": "cse76e89589b3aa0f9"
				}
			}],
			"uid": "bltd8ff819f10c6973b",
			"created_by": "blt42e55757d70d5f81026a2b9f",
			"updated_by": "blt6563a9b067fc1bc9",
			"created_at": "2020-05-10T13:47:02.576Z",
			"updated_at": "2021-07-18T15:49:06.250Z",
			"ACL": {},
			"_version": 6,
			"_in_progress": false,
			"frequently_bought_together": [{
					"uid": "blt23f4282bd1173ae9",
					"_content_type_uid": "electronics"
				},
				{
					"uid": "blt44857e1ae5e9e272",
					"_content_type_uid": "kitchen_appliances"
				},
				{
					"uid": "blt49139d483f5799bc",
					"_content_type_uid": "kitchen_appliances"
				}
			],
			"product_rating": 4,
			"helpful_links": {
				"seller": "https://company-name.com",
				"return-policy": "https://policies.com"
			},
			"cart_items": {
				"type": "doc",
				"attrs": {},
				"uid": "023c0530719c438aafaf7d7afbf10bb5",
				"children": [{
						"type": "p",
						"attrs": {},
						"uid": "642f3257a86c4928a877e9cbd474be2d",
						"children": [{
							"text": "Items in your Shopping Cart:"
						}]
					},
					{
						"type": "p",
						"attrs": {},
						"uid": "21faecb3d39d43449fb623994abc780f",
						"children": [{
							"text": ""
						}]
					},
					{
						"uid": "10eb3255e63447ffb103d1085608a378",
						"type": "reference",
						"attrs": {
							"display-type": "block",
							"type": "entry",
							"class-name": "embedded-entry redactor-component block-entry",
							"entry-uid": "blt10e68dbbfc14b75b",
							"locale": "en-us",
							"content-type-uid": "electronics"
						},
						"children": [{
							"text": ""
						}]
					},
					{
						"uid": "0d99c6ab42d94e92b7149b303c16e655",
						"type": "reference",
						"attrs": {
							"display-type": "block",
							"type": "entry",
							"class-name": "embedded-entry redactor-component block-entry",
							"entry-uid": "blt44857e1ae5e9e272",
							"locale": "en-us",
							"content-type-uid": "kitchen_appliances"
						},
						"children": [{
							"text": ""
						}]
					},
					{
						"uid": "4ae0565eab834b14b2f2107f371d28ef",
						"type": "reference",
						"attrs": {
							"display-type": "block",
							"type": "entry",
							"class-name": "embedded-entry redactor-component block-entry",
							"entry-uid": "blt1ecc761f990dc547",
							"locale": "en-us",
							"content-type-uid": "kitchen_appliances"
						},
						"children": [{
							"text": ""
						}]
					},
					{
						"uid": "1fc33192c79c4f46be8fa70d17387397",
						"type": "p",
						"attrs": {},
						"children": [{
							"text": ""
						}]
					},
					{
						"uid": "e095fce1d1ff45e192502c7a01316f51",
						"type": "p",
						"attrs": {},
						"children": [{
							"text": ""
						}]
					},
					{
						"uid": "b56879ccd99c4f339736740a28b8720f",
						"type": "reference",
						"attrs": {
							"display-type": "display",
							"asset-uid": "blt6e0b1713123d2566",
							"content-type-uid": "sys_assets",
							"asset-link": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt6e0b1713123d2566/60f44c5180ce947e9b4fbe0b/Logo.png",
							"asset-name": "Logo.png",
							"asset-type": "image/png",
							"type": "asset",
							"class-name": "embedded-asset",
							"inline": false
						},
						"children": [{
							"text": ""
						}]
					}
				],
				"_version": 6
			},
			"publish_details": {
				"environment": "blta39a4441696e35e0",
				"locale": "en-us",
				"time": "2021-07-18T15:51:55.135Z",
				"user": "blt6563a9b067fc1bc9"
			}
		},
		{
			"title": "Redmi Note Prime",
			"url": "/redmi-note-prime",
			"description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
			"images": [{
				"uid": "blt50a7a9dd6866776f",
				"title": "01.jpg",
				"created_by": "bltcd82b2c6bf913241",
				"updated_by": "bltcd82b2c6bf913241",
				"created_at": "2019-08-16T08:05:18.932Z",
				"updated_at": "2019-08-16T08:05:18.932Z",
				"content_type": "image/jpeg",
				"file_size": "145200",
				"filename": "01.jpg",
				"ACL": [],
				"_version": 1,
				"is_dir": false,
				"tags": [],
				"publish_details": {
					"environment": "blta39a4441696e35e0",
					"locale": "en-us",
					"time": "2019-08-19T12:28:56.964Z",
					"user": "blt587a89fc7883c56700a95bfe"
				},
				"url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg"
			}],
			"categories": [{
					"uid": "blt9d72fa3afc11d27f",
					"_content_type_uid": "category"
				},
				{
					"uid": "blt9fa0f59d03862aa7",
					"_content_type_uid": "category"
				}
			],
			"price_in_usd": 117.3,
			"brand": [{
				"uid": "blta2e0d2130eb86263",
				"_content_type_uid": "brand"
			}],
			"launch_date": "2016-08-17",
			"instock": true,
			"tags": [],
			"locale": "en-us",
			"size": 16,
			"color": "Black",
			"additional_info": [{
					"rating": {
						"stars": 2,
						"_metadata": {
							"uid": "cs291c6399e1539311"
						}
					}
				},
				{
					"deals": {
						"deal_name": "Deals of the Day",
						"deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
						"coupons": [{
								"daily_coupons": {
									"coupon_name": "Lucky Twenty",
									"coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
									"coupon_discount_rate": 20,
									"_metadata": {
										"uid": "cs2a17f3f059dd9e7b"
									}
								}
							},
							{
								"special_coupons": {
									"special_coupon_name": "Kitchen Bonanza",
									"special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
									"special_coupon_discount_rate": 60,
									"_metadata": {
										"uid": "cse8bc70b701541c2b"
									}
								}
							}
						],
						"_metadata": {
							"uid": "csc9f344e9eed58485"
						}
					}
				},
				{
					"related_products": {
						"products": [{
								"uid": "blta250054cfa4f5aab",
								"_content_type_uid": "product"
							},
							{
								"uid": "bltd383742b89bef7af",
								"_content_type_uid": "product"
							}
						],
						"home_appliances": [{
								"uid": "blt2349e9c0b7ce06fa",
								"_content_type_uid": "electronics"
							},
							{
								"uid": "blt46128ea08fdeb168",
								"_content_type_uid": "kitchen_appliances"
							}
						],
						"_metadata": {
							"uid": "cs572e9c4a17ad2692"
						}
					}
				}
			],
			"bank_offers": [{
					"bank": [{
						"uid": "blt27729fae9269607c",
						"_content_type_uid": "bank"
					}],
					"card_type": [
						"Debit Card"
					],
					"discount_in_percentage": 27,
					"_metadata": {
						"uid": "cs1afd9bc9e656a8c4"
					}
				},
				{
					"bank": [{
						"uid": "bltfbe674ca5af1ffa3",
						"_content_type_uid": "bank"
					}],
					"card_type": [
						"Debit Card",
						"Credit Card"
					],
					"discount_in_percentage": 24,
					"_metadata": {
						"uid": "cs9cc5da2d0bfbc08d"
					}
				}
			],
			"uid": "blte63b2ff6f6414d8e",
			"created_by": "blt42e55757d70d5f81026a2b9f",
			"updated_by": "blt6563a9b067fc1bc9",
			"created_at": "2020-05-11T12:44:49.928Z",
			"updated_at": "2021-07-18T15:45:50.906Z",
			"ACL": {},
			"_version": 6,
			"_in_progress": false,
			"frequently_bought_together": [{
					"uid": "blt7375bb3c0e4859de",
					"_content_type_uid": "electronics"
				},
				{
					"uid": "blt2349e9c0b7ce06fa",
					"_content_type_uid": "electronics"
				},
				{
					"uid": "blt7d3413d9daf14f5f",
					"_content_type_uid": "electronics"
				},
				{
					"uid": "blt46128ea08fdeb168",
					"_content_type_uid": "kitchen_appliances"
				}
			],
			"product_rating": 4,
			"helpful_links": {
				"seller": "https://company-name.com",
				"return-policy": "https://policies.com"
			},
			"cart_items": {
				"type": "doc",
				"attrs": {},
				"uid": "2b35f3429dca426e9dcfdb614b5ce60f",
				"children": [{
						"type": "p",
						"attrs": {},
						"uid": "833515f543e44c4f99c6e8c406129256",
						"children": [{
							"text": "Items in your Shopping Cart:"
						}]
					},
					{
						"type": "p",
						"attrs": {},
						"uid": "818774a71f8047d990d1a2ab8ad0ee17",
						"children": [{
							"text": ""
						}]
					},
					{
						"uid": "319a19710e0b4601b93bfff2d85cce2b",
						"type": "reference",
						"attrs": {
							"display-type": "block",
							"type": "entry",
							"class-name": "embedded-entry redactor-component block-entry",
							"entry-uid": "blt49139d483f5799bc",
							"locale": "en-us",
							"content-type-uid": "kitchen_appliances"
						},
						"children": [{
							"text": ""
						}]
					},
					{
						"uid": "7d0472d3f4984e19bad7dfc672f2120d",
						"type": "reference",
						"attrs": {
							"display-type": "block",
							"type": "entry",
							"class-name": "embedded-entry redactor-component block-entry",
							"entry-uid": "blt10e68dbbfc14b75b",
							"locale": "en-us",
							"content-type-uid": "electronics"
						},
						"children": [{
							"text": ""
						}]
					},
					{
						"uid": "d69bf28413a645e88da17927341f54be",
						"type": "reference",
						"attrs": {
							"display-type": "block",
							"type": "entry",
							"class-name": "embedded-entry redactor-component block-entry",
							"entry-uid": "blt1ecc761f990dc547",
							"locale": "en-us",
							"content-type-uid": "kitchen_appliances"
						},
						"children": [{
							"text": ""
						}]
					},
					{
						"uid": "1dbc20aa47a349db8f1b1fd3ce192f13",
						"type": "p",
						"attrs": {},
						"children": [{
							"text": ""
						}]
					},
					{
						"uid": "df6e776bc88142f9a391c7d37b931852",
						"type": "p",
						"attrs": {},
						"children": [{
							"text": ""
						}]
					},
					{
						"uid": "bf5295ea97c34661b26b21d735136d4d",
						"type": "reference",
						"attrs": {
							"display-type": "display",
							"asset-uid": "blt6e0b1713123d2566",
							"content-type-uid": "sys_assets",
							"asset-link": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt6e0b1713123d2566/60f44c5180ce947e9b4fbe0b/Logo.png",
							"asset-name": "Logo.png",
							"asset-type": "image/png",
							"type": "asset",
							"class-name": "embedded-asset",
							"inline": false
						},
						"children": [{
							"text": ""
						}]
					}
				],
				"_version": 6
			},
			"publish_details": {
				"environment": "blta39a4441696e35e0",
				"locale": "en-us",
				"time": "2021-07-18T15:51:55.101Z",
				"user": "blt6563a9b067fc1bc9"
			}
		}
	]
}
```

## Order by desc

### Order by desc

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&desc={field_UID}`

When fetching entries, you can sort them in the descending order with respect to the value of a specific field in the response body.

This query will work for both entries as well as assets.

**Example:** In the Product content type, if you wish to sort the entries with respect to their prices, the parameter can be used as:

https://cdn.contentstack.io/v3/content\_types/product/entries?environment=production&desc=price\_in\_usd

This will give you all the entries sorted in the descending order with respect to the Price in USD field.

**Note:** In situations where identical or empty/null values are present in the field selected for sorting, the sorting process may not yield accurate results, potentially leading to duplicate results in the output. To avoid this, consider utilizing fields without duplicate values, or fields that are indexed (for e.g., updated\_at), to effectively sort your data. Alternatively, if you must use the non-indexed fields for sorting, please contact our [Support](mailto:support@contentstack.com) team for assistance in adding indexes to the field and ensuring the correct sorting of your data within the query results. Please note that a maximum of 5 fields can be indexed per Organization.

##### Order by desc Operator Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **desc** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Order By desc Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&desc={group_UID.field_UID}`

Sort your fetched entries in the descending order with respect to the value of a specific field in the response body.This query is specifically for entries and works on fields that are part of the Group field.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a subfield named Discount in Percentage ("uid":"discount\_in\_percentage"). If, for instance, you want to retrieve entries in the descending order with respect to the values of the Discount in Percentage field, use the following URL:

https://cdn.contentstack.io/v3/content\_types/product/entries?environment=production&desc=bank\_offers.discount\_in\_percentage

##### Order by desc Operator Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **desc** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Order by desc Operator Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&desc={modular_block_UID.block_UID.field_UID}`

Sort your fetched entries in the descending order with respect to the value of a specific field in the response body.This query is specifically for entries and works on fields that are part of any block within a Modular Block field.

**Note:** Currently, this query is not applicable for Reference fields within Modular Blocks.

**Example:** In the Products content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Rating ("uid":"rating") block. And, within this Rating block, we have a field named Stars ("uid":"stars"). If, for instance, you want to retrieve entries in the descending order with respect to the values of the Stars field, use the following URL:

https://cdn.contentstack.io/v3/content\_types/product/entries?environment=production&desc=additional\_info.rating.stars

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **desc** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Exists

### Exists

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"field_UID": { "$exists": true } }`

Get entries if value of the field, mentioned in the condition, exists.This query will work for entries only.

**Example:** In the Product content type, we have a field named Price in USD. Now, you want to retrieve all the entries in the content type in which the field exists. You can send the parameter as:

{ "price\_in\_usd": { "$exists": true } }.

##### Exists Operator Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Exists Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"group_UID.field_UID": { "$exists": true } }`

Get entries if value of the field, mentioned in the condition, exists.This query is specifically for entries and work on fields that are part of the Group field.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a subfield named Card Type ("uid":"card\_type"). If, for instance, you want to retrieve the entries in which the values for the Discount in Percentage field exists, use the following value in the query parameter:

{"bank\_offers.discount\_in\_percentage": { "$exists": true }}

##### Exists Operator Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Exists Operator Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale_code}&query={"modular_block_UID.block_UID.field_UID": { "$exists": true } }`

Get entries if value of the field, mentioned in the condition, exists.This query is specifically for entries and works on fields that are part of any block within a Modular Block field.

**Example:** In the Products content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Deals ("uid":"deals") block. And, within this Block field, we have a field named Deal Name ("uid":"deal\_name"). If, for instance, you want to retrieve the entries in which the values for the Stars field exists, use the following value in the query parameter:

{"additional\_info.rating.stars": {"$exists": true }}

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **query** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Only Operator

### Only operator

**GET** `/content_types/{content_type_uid}/entries?locale={locale}&only[BASE][]=field_UID`

The only\[\]\[\] parameter will include the data of only the specified fields for each entry and exclude the data of all other fields. There are two approaches to this parameter. Firstly, we have the only\[BASE\]\[\] parameter, where 'BASE' is the default value and refers to the top-level fields of the schema. Secondly, we have the only\[Reference\_field\_uid\]\[\] parameter, where you need to enter the UID of the reference field in place of "Reference\_field\_uid".This query will work for entries only.

**Example:** In the Product content type, if we need to retrieve the data of only the Price in USD parameter of all the entries, you can send the parameter as:

https://cdn.contentstack.io/v3/content\_types/author/entries?environment=production&only\[BASE\]\[\]=price\_in\_usd

**Note**: To retrieve multiple fields use the following syntax:

https://cdn.contentstack.io/v3/content\_types/author/entries?environment=production&only\[BASE\]\[\]=price\_in\_usd&only\[BASE\]\[\]=color

##### Only Operator Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **only[BASE][]** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "price_in_usd": 749,
      "uid": "bltbd92ac498e3d5f96"
    },
    {
      "price_in_usd": 102.63,
      "uid": "bltf2fa776b05a127a2"
    },
    {
      "price_in_usd": 649,
      "uid": "blt70cc672f4f806d3e"
    },
    {
      "price_in_usd": 117.3,
      "uid": "blt4f1fd991ec80e52f"
    },
    {
      "price_in_usd": 146,
      "uid": "blta278bb5672180c94"
    },
    {
      "price_in_usd": 159.78,
      "uid": "bltf8ab1ad67af3c66b"
    },
    {
      "price_in_usd": 101,
      "uid": "blt5b85ef3b0587565c"
    }
  ]
}
```

### Only Operator Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale}&only[BASE][]=group_UID.field_UID`

Get entries in which the data of a specific field is included in the response JSON.This query is specifically for entries and works on fields that are part of the Group field.

**Example:** In the Products’ content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a subfield named Discount in Percentage ("uid":"discount\_in\_percentage"). If, for instance, you want to retrieve only the values of the Discount in Percentage field of all the entries, you can send the parameters as:

https://cdn.contentstack.io/v3/content\_types/product/entries?environment=production&only\[BASE\]\[\]=bank\_offers.discount\_in\_percentage

##### Only Operator Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **only[BASE][]** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "bank_offers": [
        {
          "discount_in_percentage": 12
        }
      ],
      "uid": "bltbd92ac498e3d5f96"
    },
    {
      "bank_offers": [
        {
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltf2fa776b05a127a2"
    },
    {
      "bank_offers": [
        {
          "discount_in_percentage": 60
        },
        {
          "discount_in_percentage": 55
        }
      ],
      "uid": "blt70cc672f4f806d3e"
    },
    {
      "bank_offers": [
        {
          "discount_in_percentage": 27
        },
        {
          "discount_in_percentage": 24
        }
      ],
      "uid": "blt4f1fd991ec80e52f"
    },
    {
      "bank_offers": [
        {
          "discount_in_percentage": 12
        }
      ],
      "uid": "blta278bb5672180c94"
    },
    {
      "bank_offers": [
        {
          "discount_in_percentage": 25
        },
        {
          "discount_in_percentage": 30
        }
      ],
      "uid": "bltf8ab1ad67af3c66b"
    },
    {
      "bank_offers": [
        {
          "discount_in_percentage": 8
        }
      ],
      "uid": "blt5b85ef3b0587565c"
    }
  ]
}
```

### Only Operator Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale}&only[BASE][]=modular_block_UID.block_UID.field_UID`

Get entries in which the data of a specific field is included in the response JSON.This query is specifically for fields that are part of any block within a Modular Block field.

**Example:** In the Products content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Rating ("uid":"rating") block. And, within this Rating block, we have a field named Stars ("uid":"stars"). If, for instance, you want to retrieve the values of all the Stars field from all the entries, you can send the parameters as:

https://cdn.contentstack.io/v3/content\_types/product/entries?environment=production&only\[BASE\]\[\]=additional\_info.rating.stars

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **only[BASE][]** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {}
      ],
      "uid": "bltbd92ac498e3d5f96"
    },
    {
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {}
      ],
      "uid": "bltf2fa776b05a127a2"
    },
    {
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {}
      ],
      "uid": "blt70cc672f4f806d3e"
    },
    {
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {}
      ],
      "uid": "blt4f1fd991ec80e52f"
    },
    {
      "additional_info": [
        {},
        {
          "rating": {
            "stars": 5
          }
        }
      ],
      "uid": "blta278bb5672180c94"
    },
    {
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {}
      ],
      "uid": "bltf8ab1ad67af3c66b"
    },
    {
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {}
      ],
      "uid": "blt5b85ef3b0587565c"
    }
  ]
}
```

## Exclude Operator

### Exclude operator

**GET** `/content_types/{content_type_uid}/entries?locale={locale}&except[BASE][]=field_UID`

The except\[\]\[\] parameter will exclude the data of the specified fields for each entry and will include the data of the rest of the fields. There are two approaches to this parameter. Firstly, we have the except\[BASE\]\[\] parameter, where 'BASE' is the default value and refers to the top-level fields of the schema. Secondly, we have the except\[Reference\_field\_uid\]\[\] parameter, where you need to enter the UID of the reference field in place of Reference\_field\_uid.This query will work for entries only.

**Example:** In the Product content type, if we need to retrieve the data of entries of all the other fields except the Price in USD parameter, you can send the parameter as:

https://cdn.contentstack.io/v3/content\_types/product/entries?environment=production&except\[BASE\]\[\]=price\_in\_usd

**Note**: To exclude multiple fields use the following syntax:

https://cdn.contentstack.io/v3/content\_types/author/entries?environment=production&except\[BASE\]\[\]=price\_in\_usd&except\[BASE\]\[\]=color

##### Exclude Operator Within Group

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **except[BASE][]** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Exclude Operator Within Group

**GET** `/content_types/{content_type_uid}/entries?locale={locale}&except[BASE][]=group_UID.field_UID`

Get entries in which the data of a specific field is excluded from the response JSON, but the data of the rest of the fields are included.This query is specifically for entries and works with fields that are part of the Group field.

**Example:** In the Products content type, we have a Group field named Bank Offers ("uid":"bank\_offers"). And, within this Group field, we have a subfield named Discount in Percentage ("uid":"discount\_in\_percentage"). If, for instance, you want to retrieve all the entries of a content type, but exclude the data for the Discount in Percentage field in the JSON response, you can send the parameters as:

https://cdn.contentstack.io/v3/content\_types/product/entries?environment=production&except\[BASE\]\[\]=bank\_offers.discount\_in\_percentage

##### Exclude Operator Within Modular Blocks

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **except[BASE][]** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ]
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ]
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ]
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ]
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ]
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ]
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ]
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ]
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ]
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ]
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ]
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

### Exclude Operator Within Modular Blocks

**GET** `/content_types/{content_type_uid}/entries?locale={locale}&except[BASE][]=modular_block_UID.block_UID.field_UID`

Get entries in which the data of a specific field is excluded from the response JSON, but the data of the rest of the fields are included.This query is specifically for entries and works with fields that are part of any block within a Modular Block field.

**Example:** In the Products content type, we have a Modular Group field named Additional Info ("uid":"additional\_info") that contains the Rating ("uid":"rating") block. And, within this Block field, we have a field named Stars ("uid":"stars"). If, for instance, you want to retrieve all the entries of a content type, but exclude the data for the Stars field in the JSON response, you can send the parameters as:

https://cdn.contentstack.io/v3/content\_types/product/entries?environment=production&except\[BASE\]\[\]=additional\_info.rating.stars

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **except[BASE][]** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {}
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {}
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {}
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {}
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {}
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {}
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {}
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ]
}
```

## Count

### Count

**GET** `/content_types/{content_type_uid}/entries?locale={locale}&include_count={boolean_value}`

To retrieve the count of entries, we have two parameters: include\_count (retrieves entries' details and their count) and count (retrieves only the count of entries).This query will work for both entries as well as assets.

**Example:** If you wish to know the total number of entries in the Product content type and also retrieve all the data, you need to run the following API request:

```
https://cdn.contentstack.io/v3/content_types/product/entries?environment={environment}&include_count=true
```

To get only the count, run the following API request:

```
https://cdn.contentstack.io/v3/content_types/product/entries?environment={environment}&count=true
```

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **include_count** (required)
  Enter 'true' to get the total count of the entries and their details.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.
- **count** (optional)
  Enter 'true' to only get the count of entries.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blte63b2ff6f6414d8e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Deals of the Day",
            "deal_details": "If you are looking for good Amazon deals and bargains, Deal's of The Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Lucky Twenty",
                  "coupon_details": "First five users to purchase an electronic item receive a discount of 20 percent on that item.",
                  "coupon_discount_rate": 20
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Kitchen Bonanza",
                  "special_coupon_details": "Save 60 percent when you purchase kitchen appliances worth a total price of 3000 USD.",
                  "special_coupon_discount_rate": 60
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 27
        },
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card",
            "Credit Card"
          ],
          "discount_in_percentage": 24
        }
      ],
      "brand": [],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T12:44:49.928Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>64-bit Qualcomm® SnapdragonTM 410, 2GB RAM,</p>\n<p>16GB Flash (up to 32GB microSD support), 13.97cm (5.5) HD IPS display, 13MP rear camera, 4G dual SIM, 3100mAh removable battery</p>",
      "images": [
        {
          "uid": "blt50a7a9dd6866776f",
          "created_at": "2019-08-16T08:05:18.932Z",
          "updated_at": "2019-08-16T08:05:18.932Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "145200",
          "tags": [],
          "filename": "01.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt50a7a9dd6866776f/5d5663be34d39437c37c5376/01.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "01.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-08-17",
      "price_in_usd": 117.3,
      "size": 16,
      "tags": [],
      "title": "Redmi Note Prime",
      "updated_at": "2020-05-11T15:14:45.980Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/redmi-note-prime",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:15:36.629Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltdbe63e789fd3d08e",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Independence Day Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Independence Day Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Independence Bumper Offer",
                  "special_coupon_details": "Receive a discount of flat 40 percent on purchasing any laptop on Independence Day.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the Services & Benefits section and then click on Coupons. Here, you can find all the coupons you have collected under My Coupons.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt6549021b3bbeae5c",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt0e302e4595da19c1",
                "_content_type_uid": "electronics"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt27729fae9269607c",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 60
        },
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 55
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Rose Gold",
      "created_at": "2020-05-11T12:47:32.533Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltda02effe8bc97bb9",
          "created_at": "2019-08-16T08:05:09.588Z",
          "updated_at": "2019-08-16T08:05:09.588Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "45091",
          "tags": [],
          "filename": "Apple-iPhone-SE-Rose-Gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltda02effe8bc97bb9/5d5663b546d2e3383a96ec5e/Apple-iPhone-SE-Rose-Gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "Apple-iPhone-SE-Rose-Gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 649,
      "size": 32,
      "tags": [],
      "title": "iPhone 7 64GB",
      "updated_at": "2020-05-11T15:08:56.567Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:09:05.364Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ],
  "count": 7
}
```

## Pagination

### Pagination

**GET** `/content_types/{content_type_uid}/entries?locale={locale}&include_count={boolean_value}&skip={skip_value}&limit={limit_value}`

The 'Get all entries' API request returns only the first 100 entries of the specified content type. Similarly, the 'Get all assets' request fetches the first 100 assets of a particular stack.

In both requests, first, use the include\_count parameter to get the total count of the items (entries/assets). Learn more about the [Count](#count) parameter.

Since only 100 items are returned at a time in your response (in case of both requests), you can get the rest of the items in batches using the skip parameter in subsequent requests. Learn more about the [Skip](#skip) parameter.

You can paginate the output of a request by using the limit parameter. For example, if you have 200 entries and/or assets and you want to retrieve them all but display only 10 items at a time. Use the limit=10 and skip=10 parameters, to get them all but display only 10 items per page.

The syntax of the pagination request will look like the following:

*   For entries: https://cdn.contentstack.io/v3/content\_types/product/entries?environment={environment}&locale={locale}&include\_count=true&skip={skip\_value}&limit={limit\_value}
*   For assets: https://cdn.contentstack.io/v3/assets?environment={environment\_name}&include\_dimension={boolean\_value}&include\_count=true&skip={skip\_value}&limit={limit\_value}

#### URL Parameters

- **content_type_uid** (required)
  Enter the unique ID of the content type in which you wish to search for entries.

#### Query Parameters

- **locale** (optional)
  Enter the code of the language of which the entries needs to be included. Only the entries published in this locale will be displayed.
- **include_count** (required)
  Set this parameter to 'true' to include in response the total count of entries available in a content type.
- **skip** (required)
  Enter the actual query that will be executed to retrieve entries. This query should be in JSON format.
- **limit** (required)
  Enter the maximum number of entries to be returned.
- **include_branch** (optional)
  Set this to true to include the \_branch top-level key in the response. This key states the unique ID of the branch where the concerned Contentstack module resides.

#### Headers

- **api_key** (required)
  Enter the API key of your stack.
  Default: `blt02f7b45378b008ee`
- **access_token** (required)
  Enter the environment-specific delivery token of your stack. Check [Authentication](#authentication).
  Default: `cs5b69faf35efdebd91d08bcf4`
- **branch** (optional)
  Enter your branch unique ID.
  Default: `main`

#### Sample Response

```json
{
  "entries": [
    {
      "title": "Redmi 3S",
      "url": "/mobiles/redmi-3s",
      "description": "<p>The next step in the Redmi evolution, Redmi 3S is dressed in a premium metal body. That's not all, it houses a powerful Qualcomm® SnapdragonTM 430 processor, massive 4100mAh battery, 13MP Phase Detection Autofocus (PDAF) camera and 12.6cm (5) HD display.</p>\n<p>Despite these upgrades, it is surprisingly 0.9mm thinner than Redmi 2 and sits comfortably in your hand. The combination of these in Redmi 3S are just the tools you need to connect, explore and take on the rest of the world.\n</p>",
      "images": [
        {
          "uid": "blt198546991c0eea0a",
          "created_at": "2019-08-16T08:05:21.114Z",
          "updated_at": "2019-08-16T08:05:21.114Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "28485",
          "tags": [],
          "filename": "xiaomi-redmi-note-3-gray.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt198546991c0eea0a/5d5663c1295d353852cf6bce/xiaomi-redmi-note-3-gray.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "xiaomi-redmi-note-3-gray.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "price_in_usd": 102.63,
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "launch_date": "2016-08-17",
      "instock": true,
      "tags": [],
      "locale": "en-us",
      "size": 16,
      "color": "Gray",
      "additional_info": [
        {
          "rating": {
            "stars": 3
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "blta250054cfa4f5aab",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt10e68dbbfc14b75b",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt46128ea08fdeb168",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 15
        }
      ],
      "uid": "bltd383742b89bef7af",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "created_at": "2020-05-11T12:37:33.194Z",
      "updated_at": "2020-05-11T15:05:06.916Z",
      "ACL": {},
      "_version": 3,
      "_in_progress": false,
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T15:05:26.083Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "bltd8ff819f10c6973b",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 2
          }
        },
        {
          "deals": {
            "deal_name": "Christmas Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Christma's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "High Five",
                  "special_coupon_details": "Save 5 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 5
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blt1e1d4385e656835a",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 8
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-10T13:47:02.576Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Snapdragon</p>",
      "images": [
        {
          "uid": "blt19c34e5374418484",
          "created_at": "2019-08-16T08:05:30.460Z",
          "updated_at": "2019-08-16T08:05:30.460Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "69609",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt19c34e5374418484/5d5663ca9e9032233cab321a/in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000003-back-gold.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        },
        {
          "uid": "bltf8c7852efd06d11f",
          "created_at": "2019-08-16T08:05:05.009Z",
          "updated_at": "2019-08-16T08:05:05.009Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/png",
          "file_size": "63422",
          "tags": [],
          "filename": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltf8c7852efd06d11f/5d5663b166aa1a361fba10f9/in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "in-galaxy-note-5-n9208-sm-n9208zdvins-000000006-l30-2-gold-thumb.png",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:29:04.717Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": false,
      "launch_date": "2016-07-07",
      "price_in_usd": 101,
      "size": 32,
      "tags": [
        "redmi"
      ],
      "title": "Galaxy Note",
      "updated_at": "2020-05-11T14:56:10.946Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-note",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:56:31.536Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 3,
      "locale": "en-us",
      "uid": "blt6549021b3bbeae5c",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 1
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltdbe63e789fd3d08e",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt2349e9c0b7ce06fa",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7375bb3c0e4859de",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt44857e1ae5e9e272",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "bltfbe674ca5af1ffa3",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 12
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Debit Card"
          ],
          "discount_in_percentage": 10
        }
      ],
      "brand": [
        {
          "uid": "blte6095f030e4b7a30",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-10T13:09:01.499Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>iPhone 7 dramatically improves the most important aspects of the iPhone experience. It introduces advanced new camera systems. The best performance and battery life ever in an iPhone. Immersive stereo speakers. The brightest, most colorful iPhone display. Splash and water resistance.&nbsp;And it looks every bit as powerful as it is. This is iPhone 7.</p>",
      "images": [
        {
          "uid": "bltc4f54f7ce3155b0e",
          "created_at": "2019-08-16T08:05:15.889Z",
          "updated_at": "2019-08-16T08:05:15.889Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "48163",
          "tags": [],
          "filename": "iphone7.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/bltc4f54f7ce3155b0e/5d5663bbdf859f364dbe36dd/iphone7.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "iphone7.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-09-07",
      "price_in_usd": 749,
      "size": 128,
      "tags": [],
      "title": "iPhone 7 128GB",
      "updated_at": "2020-05-11T14:29:53.230Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/iphone-7",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:30:07.305Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 1,
      "locale": "en-us",
      "uid": "blta250054cfa4f5aab",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 5
          }
        },
        {
          "deals": {
            "deal_name": "Summer Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Summer's Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "daily_coupons": {
                  "coupon_name": "Early Bird Coupon",
                  "coupon_details": "Save 50 percent on your first three purchases.",
                  "coupon_discount_rate": 50
                }
              },
              {
                "special_coupons": {
                  "special_coupon_name": "Beat the Heat Coupon",
                  "special_coupon_details": "Save 40 percent on electronic items purchased during the summer when your item costs 1500 USD and above.",
                  "special_coupon_discount_rate": 40
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "blte63b2ff6f6414d8e",
                "_content_type_uid": "product"
              },
              {
                "uid": "bltd383742b89bef7af",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "bltee5deb99c3be1b75",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt7d3413d9daf14f5f",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt1ecc761f990dc547",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt83b7564e5d749a90",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 12
        }
      ],
      "brand": [
        {
          "uid": "blta2e0d2130eb86263",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        },
        {
          "uid": "blt9fa0f59d03862aa7",
          "_content_type_uid": "category"
        }
      ],
      "color": "Gold",
      "created_at": "2020-05-11T14:12:28.805Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Redmi Note 3 is really fast—flagship fast. The high-performance Snapdragon 650 processor uses ARM's flagship Cortex-A72 cores to launch apps in a split-second. Its next-gen Adreno 510 graphics processor delivers a fluid gaming experience. The hexa-core processor delivers up to 1.8GHz clock speed, supports dual-channel memory and eMMC 5.0 flash. Combined with MIUI 7's system-level speed optimizations, Redmi Note 3 responds to every touch in a snap.</p>",
      "images": [
        {
          "uid": "blt9c3dff6e3151d374",
          "created_at": "2019-08-16T08:05:27.886Z",
          "updated_at": "2019-08-16T08:05:27.886Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "5275",
          "tags": [],
          "filename": "download.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt9c3dff6e3151d374/5d5663c79722fb38d7db52e5/download.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "download.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:47.432Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2016-03-09",
      "price_in_usd": 146,
      "size": 16,
      "tags": [
        "redmi",
        "smart"
      ],
      "title": "Redmi Note 3",
      "updated_at": "2020-05-11T14:12:28.805Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/redmi-note-3",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:12:38.975Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    },
    {
      "_version": 2,
      "locale": "en-us",
      "uid": "blt1e1d4385e656835a",
      "ACL": {},
      "_in_progress": false,
      "additional_info": [
        {
          "rating": {
            "stars": 4
          }
        },
        {
          "deals": {
            "deal_name": "Black Friday Deal",
            "deal_details": "If you are looking for good Amazon deals and bargains, Black Friday Deals is the place to come. We are your online one-stop shop for savings and specials on our products.",
            "coupons": [
              {
                "special_coupons": {
                  "special_coupon_name": "Friday Bumper Coupon",
                  "special_coupon_details": "Save up to 70 percent on purchasing items worth a total price of 2000 USD.",
                  "special_coupon_discount_rate": 70
                }
              },
              {
                "faqs": {
                  "coupon_faqs": [
                    {
                      "question": "How to avail coupon benefits?",
                      "answer": "<p>Just click on the \"Collect Coupon\" button and enjoy using your coupons while purchasing various items across our site.</p>"
                    },
                    {
                      "question": "Where can I find the coupons I collected?",
                      "answer": "<p>On the Homepage, navigate to the <strong>Services & Benefits</strong> section and then click on <strong>Coupons</strong>. Here, you can find all the coupons you have collected under <strong>My Coupons</strong>.</p>"
                    },
                    {
                      "question": "Can you collect a coupon first and purchase an item later?",
                      "answer": "<p>Sure, every coupon can be used any time before its expiry date. Once the coupon expires, however it would be deemed invalid.</p>"
                    }
                  ]
                }
              }
            ]
          }
        },
        {
          "related_products": {
            "products": [
              {
                "uid": "bltd8ff819f10c6973b",
                "_content_type_uid": "product"
              }
            ],
            "home_appliances": [
              {
                "uid": "blt23f4282bd1173ae9",
                "_content_type_uid": "electronics"
              },
              {
                "uid": "blt49139d483f5799bc",
                "_content_type_uid": "kitchen_appliances"
              }
            ]
          }
        }
      ],
      "bank_offers": [
        {
          "bank": [
            {
              "uid": "blt4526259b9dc1dd3e",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card",
            "Debit Card"
          ],
          "discount_in_percentage": 25
        },
        {
          "bank": [
            {
              "uid": "bltd477bad133866222",
              "_content_type_uid": "bank"
            }
          ],
          "card_type": [
            "Credit Card"
          ],
          "discount_in_percentage": 30
        }
      ],
      "brand": [
        {
          "uid": "blt5499dd00bb716b14",
          "_content_type_uid": "brand"
        }
      ],
      "categories": [
        {
          "uid": "blt9d72fa3afc11d27f",
          "_content_type_uid": "category"
        }
      ],
      "color": "Black",
      "created_at": "2020-05-11T13:32:18.406Z",
      "created_by": "blt42e55757d70d5f81026a2b9f",
      "description": "<p>Enjoy vibrant colours and deeper contrast while you watch your favourite videos on a Super AMOLED display. All the while getting the most out of your 4G experience with Ultra Data Saving Mode that helps you save up to 50% of data.</p>",
      "images": [
        {
          "uid": "blt11b00b9a335ed526",
          "created_at": "2019-08-16T08:05:18.935Z",
          "updated_at": "2019-08-16T08:05:18.935Z",
          "created_by": "bltcd82b2c6bf913241",
          "updated_by": "bltcd82b2c6bf913241",
          "content_type": "image/jpeg",
          "file_size": "166189",
          "tags": [],
          "filename": "samsung-galaxy-j1.jpg",
          "url": "https://images.contentstack.io/v3/assets/blt02f7b45378b008ee/blt11b00b9a335ed526/5d5663be995bf53944dfaf7b/samsung-galaxy-j1.jpg",
          "ACL": [],
          "is_dir": false,
          "_version": 1,
          "title": "samsung-galaxy-j1.jpg",
          "publish_details": {
            "environment": "blta39a4441696e35e0",
            "locale": "en-us",
            "time": "2019-08-19T12:28:56.964Z",
            "user": "blt587a89fc7883c56700a95bfe"
          }
        }
      ],
      "instock": true,
      "launch_date": "2017-01-06",
      "price_in_usd": 159.78,
      "size": 8,
      "tags": [],
      "title": "Galaxy J1",
      "updated_at": "2020-05-11T14:05:25.577Z",
      "updated_by": "blt42e55757d70d5f81026a2b9f",
      "url": "/mobiles/galaxy-j1",
      "publish_details": {
        "environment": "blta39a4441696e35e0",
        "locale": "en-us",
        "time": "2020-05-11T14:05:33.715Z",
        "user": "blt42e55757d70d5f81026a2b9f"
      }
    }
  ],
  "count": 7
}
```