1. Before You Begin
1.1. About
This document is intended for enterprise developers who wish to integrate maya.ai Choice API into their digital channels or build 'Taste Enabled' choice applications.
1.2. What to expect
This document will provide you with a basic walkthrough of the maya.ai API and the key concepts required for successful integration into any digital channel.
1.3. Prior Knowledge
This document assumes you are clueless as it comes to maya.ai and hence, will bring you up to speed with the basics you need to get started. At the same time, we do assume you are experienced in consuming online REST APIs in whatever your favourite development environment is. If you are not, please look it up online as it is beyond the scope of this document.
2. About Our maya.ai
We live in an age whereby choices are available everywhere. In fact too many of them… Did you know that if you are presented with more than 6 or less than 4 choices you are likely to have a hard time making a choice? It is even likely that you will postpone the decision. Compound that with the Google results page on each and every search you do. Page after page of information that you simply can’t process. Haunting. Isn’t it? This is why we built maya.ai.
maya.ai is the name of our product. You will be using maya.ai as a set of APIs. This is what you need to know about it. For now…
maya.ai is the only choice engine globally which is centred around 'Taste'. It is powered by a global Taste Graph that allows connecting various objects by taste. To give you an idea: Our Taste Graph knows about every digitally discoverable restaurant on this blue planet and connects them all to each other by taste. Pause! pick two distinct restaurants that are completely not related and appreciate the fact that we actually scored how closely these two are related by the taste of people. We think it’s awesome!
Next big piece of maya.ai is the ‘Maestro’, the Choice.AI engine. It has numerous taste algorithms orchestrated in real time (also in batches) working for maya.ai’s choice engine, the Choice.AI. It provides you with the best set of lifestyle choices to showcase on your application.
maya.ai recommended choices perform better with customer response on almost every aspect that you can imagine. This is because maya.ai is trained to balance between ‘discovery’ and ‘reinforcement’ (of behaviour) when selecting the right mix of choices to present. It also cleverly knows how to predict as well as optimise the best choices for a specific objective (like I want to surprise people by the choices I present, or I want to make sure they simply take it by feeling comfortable).
Our choice engine Choice.AI is built with machine learning technology embedded. So, you can be rest assured that with the loopback mechanism we introduced, maya.ai will serve not only the best choices from the get go, but maya.ai will also be able to learn and respond to the slightest clues customers can provide. Implicit; like page view, time spent on a page etc. or explicit; like adding something to the favorites.
When you get to read this, most of the heavy lifting is already done. The relevant data has been provided to maya.ai; maya.ai has already processed and calculated taste fingerprint used to guide the choices it issues to each and every customer.
maya.ai is crafted with Love @ Singapore and Chennai, India.
We hope you enjoy this read.
- The maya.ai Product Team
3. Overview
By the end of this document, you should be able to know exactly what you need to do to get your application to showcase maya.ai recommended choices and how to engage customers with campaigns targeted by taste.
The getting started section will help you make sure you have everything you need and also cover one important piece of terminology. Then, we will cover the main data model leading to examples.
The API reference is best used when actually getting into development. Easy to come back to the documentation.
We also did our best to include an effective FAQ list. For any recommendations please drop us a line at support@crayondata.com.
4. Getting Started
Before you begin let’s get you setup with the basics.
4.1. Setup up your Swagger
We use Swagger to provide you with interactive API and more documentation. Access to Swagger UI should be provided to you by your project manager once your maya.ai Choice API is all setup and ready for action.
Once you get the link, follow one of the two approaches to authorize for access:
API Key based authentication :
. Along with the API Link you should get an API key
. Go to the swagger ui and click on 'Authorize' button on the top right corner
. Enter the API key provided in the 'api_key' text box
. Click on the ‘Authorize’ button to complete
That’s it, now you should be able to get access to the maya.ai choice API online documentation.
To make sure you are all good to go, simply test this in your browser.
In Swagger UI, expand 'Data List API' and select '/api/v3/list/{id}' and key in inputs as below:
'id' |
cities |
You should be getting something like this:
{
"id": "list-cities",
"description": "List of available cities",
"items": [
{
"label": "Abu Dhabi",
"value": "Abu Dhabi"
}
...
]
}
5. Key Concepts
5.1. Boundaries
maya.ai Choice API does one thing well. It gets you the best set of choices to present to your users based on the context with which you have consumed the APIs and basis the set of filters you apply. That’s it. To make sure bounties are clear, and you do not misuse maya.ai to other ends.
maya.ai does not manage your application state.
maya.ai does not handle complicated state reconciliation.
maya.ai does not manage your user profile.
maya.ai lists the best choices to be presented during a given session.
maya.ai is obsessively collecting taste signals to serve better and better choices.
What is BEST CHOICES? Or BETTER CHOICES?
The quality of choice is measured by the response triggered by the customer and the level of trust you build by presenting things that may be new to them, but still relevant. This is all that maya.ai does.
5.2. Managing User Identity
maya.ai operates on an anonymized userId or a UUID auto-generated at the client application(web or mobile app) to identify a unique user.
User Access Token:
It is mandatory for each and every API call to include this token and is essential for getting the correct relevant choices for your user. The client application should make sure to manage the user identities it uses to retrieve choices from maya.ai Choice API.
It can be obtained in two ways as follows,
5.2.1. API-Key based authentication
|
The user access token must be a device ID or a UUID having a length of 36 characters of the following format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx where x is a hexadecimal digit. Eg. 7faeba52-9217-40db-9def-af9c80fedc47 |
5.3. Choices
Choices are a set of selections that can be presented to a user. This can include and is not limited to Restaurants, Stores, Brands, Offers, Products etc.. maya.ai focuses on lifestyle choices.
The abstract form of a choice resembles a promotion or a product. It may have a title, description, image, an offer (discount), address, contact number etc..
Choices will be tagged with an id to help keep a reference of them. It is advised you do not cache choice lists or specific choice id and always rebuild your application state on application startup.
5.4. Interactions
We already mentioned that maya.ai is enabled with machine learning engine, Choice.AI. While maya.ai learns implicitly (like Google) by the nature of the activity over the API, Application must also report back to maya.ai on key users interactions. This loopback makes sure that maya.ai is up-to-date with the taste preferences of the users.
This API has no desire to manage the user profile. It is up to you. However, the interactions of the user must be reported to maya.ai.
Below is the list of possible interactions.
LIKE |
User likes a choice (Add to favorites) |
UNDO_LIKE |
User un-likes a choice (Remove from favorites) |
WISHLIST |
User wishlists a choice |
UNDO_WISHLIST |
User removes wishlisted choice from wishlisted list |
DISLIKE |
User does not like a choice |
VIEW |
User viewed choice details |
SEARCH |
User searched for a choice |
BUY |
User bought a specific choice presented |
CLAIM |
User claims an offer which is present as part of choice item |
Clearly, your applications may not implement all of the above interactions, however, if you are presenting choices to your users, making sure that favourites are included in you application design is strongly recommended. In case your product manager decides against it, you can still use the VIEW interaction as a fallback.
There is no such thing as over-communicating. Let maya.ai handle the noise and make sure to direct any piece of interaction to maximise your application performance.
Here is a simple guide to follow: If you have doubt if you should report an interaction or not, you probably should. Simple.
5.5. Campaigns
Campaigns are themed group of choices that may be made available to some users at some period of time. An example could be ‘Christmas Special’ offers provided to all user from Dec 1 - Dec 31 or ‘Summer Vacations’ made available only to the customer who like to travel during summer (depending on where you are on the globe.)
Applications should check to see on startup if there is a campaign the specific user is eligible for. Once identified, the application can retrieve and render the information required around the specific campaign. Campaigns are denoted by 'campaignToken' and 'knownUserId' in the Choice API.
Note that at any given point of time, users may be eligible to some campaigns and at times to none. The list of campaigns is not really limited to a specific number per user, but please do put in place the correct measures to accommodate more if needed around the UX you design.
5.6. Filters
maya.ai Choice API allows you to reduce the number of choices the API returns. We recommend always to set the number of choices you retrieve to 18 (see note). However, you can actively ask maya.ai to provide you with the best choices for dining in a specific location, a specific city or serving a specific cuisine. This is accomplished with filters.
When submitting your POST request to get choices, the body of your REST request will carry a ChoiceRequest json that will describe what filters you wish to apply on the request.
These filters may include filter choices to a specific country (in case you have international coverage) or even to a GeoCode level. There are more filters (check the API documentation)
The term filter is specifically used as maya.ai will always work against an infinite list of choices, ranked and ordered by the user’s taste. Filter essentially removes the ones that do not match the filter criteria and retains the respective rank ordering with respect to the user taste.
When choices are returned, they are always listed by their taste relevance to the user. We call that taste relevance the 'Taste Affinity' of the user.
When displaying the choices in an order different from that returned by maya.ai, you are actually showing less relevant choices to the user. This is more than valid in certain use cases (e.g. client side sort), but consider presenting the choices in the order maya.ai provides most of the time.
6. Examples
Here are some simple examples for common tasks you would like to accomplish and include in your project.
6.1. Common APIs
6.1.1. Example 1: Get Campaigns
Get the list of campaigns
In Swagger UI, Expand 'User Profile and Campaigns' and select '/api/v3/user/campaigns'.
| Name | Description |
|---|---|
|
User access token |
|
Client asset identifier |
| Parameter | Description |
|---|---|
|
Known user identifier |
|
Flag to filter only hero campaigns |
|
Applicable offer source |
|
User’s city |
|
User’s latitude |
|
User’s longitude |
|
Category filter (default: all) |
|
Number of items to be returned (default: 10) |
|
Language (default: en) |
|
Request timestamp in ISO-8601 format |
Key in inputs as below:
GET /api/v3/user/campaigns?category=all&heroCampaign=true&lang=en&city=Abudhabi&servedAt=2026-04-21T05:36:39.732Z HTTP/1.1
Content-Type: application/json
User-Access-Token: 04025959-b191-38f9-9e3f-924f0940515f
client-asset-id: WEB_APP
Host: localhost:8080
where 'User-Access-Token' is a UUID generated at client side(or a device ID) representing an user +
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 2160
{
"campaigns" : [ {
"bannerCampaign" : false,
"images" : {
"default" : "https://dpimages.crayondata.com/high-res-image/hdfc/visa/banner_images/web/Hotels.webp",
"thumbnail" : "https://dpimages.crayondata.com/high-res-image/hdfc/visa/banner_images/mobile/Hotels.webp"
},
"campaignType" : "MANUALLY_CURATED",
"heroCampaign" : true,
"cities" : [ "all" ],
"allUsers" : true,
"applicableForClient" : "LIFESTYLE",
"created" : "2026-03-25T07:10:43.210948852Z",
"heroCampaignOrBannerCampaign" : true,
"campaignItems" : {
"2a8b485b-4e1e-32dd-8107-14e4a467b163" : 1.0
},
"description" : "New manual Campaign English",
"externalId" : 50000002,
"active" : true,
"hideOnHomePage" : false,
"endDateTime" : "2026-05-20T12:48:39.005Z",
"lastUpdated" : "2026-03-25T07:10:43.210949652Z",
"startDateTime" : "2026-03-27T11:48:39.005Z",
"campaignSubtype" : "OFFER_MERCHANTS",
"name" : "Test Campaign Manually Curated Campaign - 999",
"id" : "50000002",
"clientAssetIds" : [ "ALL" ]
}, {
"bannerCampaign" : false,
"images" : {
"default" : "https://dpimages.crayondata.com/high-res-image/hdfc/visa/banner_images/web/Hotels.webp",
"thumbnail" : "https://dpimages.crayondata.com/high-res-image/hdfc/visa/banner_images/mobile/Hotels.webp"
},
"campaignType" : "MANUALLY_CURATED",
"heroCampaign" : true,
"cities" : [ "all" ],
"allUsers" : true,
"applicableForClient" : "LIFESTYLE",
"created" : "2026-03-04T13:24:23.658039104Z",
"heroCampaignOrBannerCampaign" : true,
"campaignItems" : {
"2a8b485b-4e1e-32dd-8107-14e4a467b163" : 1.0
},
"description" : "New manual Campaign English",
"externalId" : 900037,
"active" : true,
"hideOnHomePage" : false,
"endDateTime" : "2026-05-20T12:48:39.005Z",
"lastUpdated" : "2026-03-04T13:24:23.658040404Z",
"startDateTime" : "2026-03-04T13:26:39.005Z",
"campaignSubtype" : "OFFER_MERCHANTS",
"name" : "Test Campaign Manually Curated Campaign - Update - 2",
"id" : "900037",
"clientAssetIds" : [ "ALL" ]
} ],
"error" : false
}
6.1.2. Example 2: Get choices for specific category and list type
Get choices for specific category and list type
In Swagger UI, Expand 'Choice API' and select '/api/v3/choice/list'
| Name | Description |
|---|---|
|
User access token |
|
Client asset identifier |
| Path | Type | Description |
|---|---|---|
|
|
Client identifier |
|
|
Known user identifier |
|
|
Anonymous user identifier |
|
|
Campaign identifier |
|
|
Category filter (default: all) |
|
|
User location details |
|
|
City name |
|
|
City name in Spanish (if available) |
|
|
List of choice list types to be fetched |
|
|
Type of choice list (e.g., BIGBRANDS, RESUME, TRENDING) |
|
|
Optional filters for this list type |
|
|
Optional sort criteria for this list type |
|
|
Total number of items to be returned |
|
|
Number of campaigns to be returned |
|
|
Language (default: en) |
|
|
Flag to include campaigns in response |
|
|
Flag to include offers in response (default: true) |
|
|
Request timestamp in ISO-8601 format |
|
|
User timezone |
|
|
Applicable offer source |
Key in inputs as below:
POST /api/v3/choice/list HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Content-Length: 521
Host: localhost:8080
{
"clientId" : null,
"knownUserId" : null,
"anonymousUserId" : null,
"campaignId" : null,
"category" : "travel",
"location" : {
"city" : "Mumbai",
"cityES" : "Mumbai"
},
"choiceList" : [ {
"choiceListType" : "BIGBRANDS",
"filters" : null,
"sortBy" : null
} ],
"choiceCount" : 10,
"campaignCount" : 50,
"lang" : "en",
"includeCampaigns" : true,
"includeOffers" : true,
"servedAt" : "2026-04-21T05:36:35.362Z",
"timeZone" : null,
"applicableOfferSource" : "LIFESTYLE"
}
You should be getting output as below:
HTTP/1.1 404 Not Found
Content-Type: application/json
Content-Length: 73
{
"status" : 404,
"message" : "Choices not found for given request"
}
where in request, 'totalCount' is the number of items that match the given list type & number of
choices returned as response at maximum is equal to 'choiceCount' which is given in the request
6.1.3. Example 3: Get choices for all supported list types and categories
In Swagger UI, Expand 'Choice API' and select '/api/v3/choice/list'
| Name | Description |
|---|---|
|
User access token |
|
Client asset identifier |
| Path | Type | Description |
|---|---|---|
|
|
Client identifier |
|
|
Known user identifier |
|
|
Anonymous user identifier |
|
|
Campaign identifier |
|
|
Category filter (default: all) |
|
|
User location details |
|
|
City name |
|
|
City name in Spanish (if available) |
|
|
List of choice list types to be fetched |
|
|
Total number of items to be returned |
|
|
Number of campaigns to be returned |
|
|
Language (default: en) |
|
|
Flag to include campaigns in response |
|
|
Flag to include offers in response (default: true) |
|
|
Request timestamp in ISO-8601 format |
|
|
User timezone |
|
|
Applicable offer source |
Key in inputs as below:
POST /api/v3/choice/list HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Content-Length: 435
Host: localhost:8080
{
"clientId" : null,
"knownUserId" : null,
"anonymousUserId" : null,
"campaignId" : null,
"category" : "all",
"location" : {
"city" : "Mumbai",
"cityES" : "Mumbai"
},
"choiceList" : null,
"choiceCount" : 10,
"campaignCount" : 50,
"lang" : "en",
"includeCampaigns" : true,
"includeOffers" : true,
"servedAt" : "2026-04-21T05:36:47.155Z",
"timeZone" : null,
"applicableOfferSource" : "LIFESTYLE"
}
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 417416
{
"id" : "ff32edc9-b2d9-4aa3-b574-fff4bd110664",
"choices" : [ {
"id" : "UMmXTC0AR1WFLZ5Ih_1t9g",
"listName" : "Big Brands",
"listType" : "BIGBRANDS",
"totalCount" : 3,
"offerCardType" : "brandLogo",
"items" : [ {
"item" : {
"id" : "4bc63579-a6a4-3866-8308-880f3cc42147",
"name" : "ACE",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DC2_webp_Ace_Hardware_card.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DC2",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DC2_webp_Ace_Hardware_card.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/DC2_webp_DC2_webp_Ace_Hardware_card_Logo.webp",
"url" : "https://www.aceuae.com/en-ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/DC2_webp_Ace_Hardware_banner.webp",
"tasteMatchScore" : 83,
"distance" : 0.0
},
"offers" : [ {
"id" : "179493",
"name" : "Get up to 10% off on your purchase at ACE",
"description" : "Get up to 10% off on your purchase at ACE till 31-12-2023\nonline offer",
"validFrom" : "2023-02-23T00:00:00.389Z",
"validTo" : "2026-11-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "MPR31JY",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/ace-offer.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.aceuae.com/en-ae/?subid=testuser&subid1=DC2&subid2=179493&subid3=crayon",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:Electronics, Promotional Items & Promotional Services – ex Free Assembly\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/ace-offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "MONEYBACK" ]
} ],
"tags" : [ "hardware", "kitchen-appliances", "automobile-and-accessories", "home-improvement-supplies", "pet-supplies", "furniture", "pet-and-pet-supplies", "online-and-in-store", "plant-nursery", "home-appliances", "home-furnishings", "home-and-kitchen", "gardening-supplies", "kitchen-accessories", "paint-supplies", "kids-furniture", "building-supplies", "computer-and-electronics", "tools-and-home-improvement", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "17e59176-b45d-3845-9a15-5940a3fb52a5",
"name" : "Adventure Cove Waterpark",
"category" : "entertainment",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/HO2_Adventure_Cove_Waterpark_Merchant.webp",
"externalId" : "DP256",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/HO2_Adventure_Cove_Waterpark_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/headout-logo.webp",
"url" : "https://www.headout.com/tour/7444/?bi=JTdCJTIydCUyMiUzQSUyMjEwJTI1JTIwb2ZmJTIwb24lMjB0b3AlMjBTaW5nYXBvcmUlMjBleHBlcmllbmNlcyUzRiUyMFllcyUyQyUyMHBsZWFzZSElMjIlMkMlMjJkZXNjJTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmMlMjIlM0ElMjJIT0hTQkMxMCUyMiUyQyUyMnR5cGUlMjIlM0ElMjJQUk9NT19NQU5VQUwlMjIlMkMlMjJzdWJUZXh0JTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmJhY2tncm91bmQlMjIlM0ElN0IlMjJ1cmwlMjIlM0ElMjJodHRwcyUzQSUyRiUyRmNkbi1pbWdpeC5oZWFkb3V0LmNvbSUyRnRvdXIlMkYxMzQ0MCUyRlRPVVItSU1BR0UlMkZiYzYzNTc2OS05NTE2LTRhOGQtOWI4OC0wM2Q4ZTBiNjYyNWUtNzM1OC1zaW5nYXBvcmUtZ2FyZGVucy1ieS10aGUtYmF5LWRpcmVjdC1lbnRyeS10aWNrZXRzLTAzLmpwZWclMjIlN0QlMkMlMjJ0bmMlMjIlM0ElMjJPZmZlciUyMHZhbGlkJTIwZnJvbSUyMDE1dGglMjBBcHJpbCUyMDIwMjMlMjB0byUyMDE1dGglMjBTZXB0ZW1iZXIlMjAyMDIzLiUyMFRlcm1zJTIwYW5kJTIwQ29uZGl0aW9ucyUyMEFwcGx5JTIwKGJpdC5seSUyRkhPSFNCQzEwX1Rlcm1zKSUyMiU3RA==&utm_source=partnership&utm_medium=CDPortal&utm_campaign=HSBC",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/HO2_Adventure_Cove_Waterpark_Banner.webp",
"tasteMatchScore" : 72,
"distance" : 0.0
},
"offers" : [ {
"id" : "201889",
"name" : "Get 10% off on Adventure Cove Waterpark entry tickets",
"description" : "Get 10% off on Adventure Cove Waterpark entry tickets till 15-09-2023\nOnline offer",
"validFrom" : "2023-04-15T00:00:00.389Z",
"validTo" : "2026-09-15T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "HOHSBC10",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/HO2_Adventure_Cove_Waterpark_Offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.headout.com/tour/7444/?bi=JTdCJTIydCUyMiUzQSUyMjEwJTI1JTIwb2ZmJTIwb24lMjB0b3AlMjBTaW5nYXBvcmUlMjBleHBlcmllbmNlcyUzRiUyMFllcyUyQyUyMHBsZWFzZSElMjIlMkMlMjJkZXNjJTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmMlMjIlM0ElMjJIT0hTQkMxMCUyMiUyQyUyMnR5cGUlMjIlM0ElMjJQUk9NT19NQU5VQUwlMjIlMkMlMjJzdWJUZXh0JTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmJhY2tncm91bmQlMjIlM0ElN0IlMjJ1cmwlMjIlM0ElMjJodHRwcyUzQSUyRiUyRmNkbi1pbWdpeC5oZWFkb3V0LmNvbSUyRnRvdXIlMkYxMzQ0MCUyRlRPVVItSU1BR0UlMkZiYzYzNTc2OS05NTE2LTRhOGQtOWI4OC0wM2Q4ZTBiNjYyNWUtNzM1OC1zaW5nYXBvcmUtZ2FyZGVucy1ieS10aGUtYmF5LWRpcmVjdC1lbnRyeS10aWNrZXRzLTAzLmpwZWclMjIlN0QlMkMlMjJ0bmMlMjIlM0ElMjJPZmZlciUyMHZhbGlkJTIwZnJvbSUyMDE1dGglMjBBcHJpbCUyMDIwMjMlMjB0byUyMDE1dGglMjBTZXB0ZW1iZXIlMjAyMDIzLiUyMFRlcm1zJTIwYW5kJTIwQ29uZGl0aW9ucyUyMEFwcGx5JTIwKGJpdC5seSUyRkhPSFNCQzEwX1Rlcm1zKSUyMiU3RA==&utm_source=partnership&utm_medium=CDPortal&utm_campaign=HSBC",
"termsAndConditions" : "1. Headout has the sole authority for the interpretation of these terms and conditions. \n2. In addition to these terms and conditions, Headout's terms of use and privacy policy shall also apply. \n3. This offer is applicable on all Singapore based experiences listed on Headout's Website. \n4. The offer shall be redeemed by Users through the use of coupon codes that are issued to them via their bank portal. To redeem the offer, Users must select the offer on the bank portal and obtain a coupon code. The User will then be directed to the relevant product page on the Headout's website. Upon reaching the Headout's website, the User must enter the unique coupon code at the checkout page before making any payment. The offer cannot be redeemed after the payment has been processed. In case, if Headout finds out that User has redeemed the offer in any other manner, Headout reserves the right to either cancel the booking or take any other action as it may deem fit. \n5. The coupon code application shall be restricted to a maximum of three uses per individual User. If a user cancels their booking, the coupon code will remain valid for the tenure provided in clause 6 below, as long as it has not been used three times. Any additional uses of the coupon code will not be honored. \n6. The coupon code shall be valid from 15th April 2023 to 15th September 2023. \n7. Discount provided under this coupon code will not be clubbed with any other offer. \n8. In case of full/partial cancellation, the offer redeemed under the coupon code shall stand void and the user will not be eligible for the discount. Headout shall process the refund, to the original source, post adjusting the discount and/or any other applicable charges and penalties. \n9. In case of the loss of the Coupon code because of any reason that is directly related to the User neither Crayon nor Headout shall have any liability whatsoever. \n10. Coupon Codes are non transferable and can only be used for the purchases of experiences listed on the Headout website. \n11. In case Headout witnesses any fraudulent activity from User's end, it shall have the right to disqualify that particular User from the benefits of the offer and take any corrective action as per the law. \n12. Headout shall not be liable for any loss or damage arising due to force majeure scenarios like act of god, epidemic/pandemic, government restrictions, strikes,riots etc. \n13. Only individual Users are allowed to claim benefits under this offer. Travel agents are barred from availing any benefits under this offer. Headout reserves the right to deny any benefit under this offer to travel agents. Headout may also opt to cancel such bookings without processing any refunds against the same. \n14. User understands that their participation in this offer is voluntary in nature. If a User claims any benefit under this offer it will be construed that they have read understood and accepted these terms and conditions. \n15. In the events of any dispute, the courts of the state of New York (United States) shall have exclusive jurisdiction.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/HO2_Adventure_Cove_Waterpark_Offer.webp",
"offerType" : "offline coupon",
"offerSource" : "headout",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "landmarks-and-points-of-interest", "water-and-amusement-parks", "amusement-parks", "theme-parks" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "b7df5b96-4c9a-3bfb-b99c-9a33fcf04a22",
"name" : "CityLaila",
"category" : "entertainment",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/CityLaila_MerchantImage.webp",
"externalId" : "DC1101",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/CityLaila_MerchantImage.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/CityLaila_Logo.webp",
"url" : "https://citylaila.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Citylaila_Banner.webp",
"tasteMatchScore" : 70,
"distance" : 0.0
},
"offers" : [ {
"id" : "183370",
"name" : "Get up to 10% off on your purchase at CityLaila",
"description" : "Get up to 10% off on your purchase at CityLaila till 31-12-2023\nOnline offer",
"validFrom" : "2023-03-09T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "CTL38",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/CityLaila_OfferImage.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://citylaila.com/",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/CityLaila_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "DCM",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "fun-experiences", "rides-and-activities", "zipline-and-aerial-adventure-parks", "4wd-atv-and-off-road-tours", "all", "fun-and-games", "other-indoor-games", "water-sports", "online", "indoor-games", "ticketing-agents", "video-games-and-arcade", "sports-and-recreation", "performances-and-events" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
} ],
"created" : "2026-04-21T05:36:51.011904353Z"
}, {
"id" : "S8YOxnPHToKdCVm8FfGOIA",
"listName" : "Exciting offers near you",
"listType" : "NEAR_BY",
"totalCount" : 1,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "9e99fdbb-dd61-3265-9c87-690a09744973",
"name" : "Voltas",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Voltas.webp",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Voltas.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Voltas.webp",
"merchantBannerImage" : "",
"url" : "",
"externalId" : "BO5024",
"dominantColorCode" : "",
"distance" : 10.8,
"tasteMatchScore" : 81,
"totalViews" : 57
},
"offers" : [ {
"id" : "241011",
"name" : "EASYEMI up to 6 months",
"description" : "EASYEMI up to 6 months",
"validFrom" : "2023-07-02T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : false,
"sensitiveFlag" : false,
"offerActive" : true,
"locations" : [ "332509", "426354", "332516", "332520", "332522", "332512", "332528", "332517", "332521", "426347", "332532", "426340", "426339", "426352", "426345", "426342", "426359", "332511", "426356", "426353", "426350", "426348", "332524", "332529", "332531", "332533", "332519", "426346", "426337", "426358", "332513", "332518", "426351", "426343", "332526", "426341", "426360", "332510", "426357", "426349", "332523", "332525", "332530", "426336", "332514", "426355", "332515", "426344", "332527", "426338" ],
"offerCities" : [ "Indore", "Bhubaneswar", "Nagpur", "Cochin", "New Delhi", "Pune", "Faridabad", "Jamshedpur", "Chennai", "Vijayawada", "Mumbai", "Chandigarh", "Kolkata", "Ahmedabad", "Hyderabad", "Bengaluru", "Guwahati", "Coimbatore", "Jaipur", "Patna", "Lucknow", "Ghaziabad", "Raipur" ],
"offerCountries" : [ "India" ],
"offerGeoCodes" : [ {
"latitude" : "23.00286",
"longitude" : "72.51028"
}, {
"latitude" : "10.99705",
"longitude" : "76.98204"
}, {
"latitude" : "28.67434",
"longitude" : "77.44399"
}, {
"latitude" : "26.89381",
"longitude" : "75.74721"
}, {
"latitude" : "22.57398",
"longitude" : "88.43837"
}, {
"latitude" : "30.70897",
"longitude" : "76.80318"
}, {
"latitude" : "28.32133",
"longitude" : "77.3103"
}, {
"latitude" : "26.19196",
"longitude" : "91.77436"
}, {
"latitude" : "22.78717",
"longitude" : "86.18384"
}, {
"latitude" : "22.57398",
"longitude" : "88.43837"
}, {
"latitude" : "19.20703",
"longitude" : "72.9569"
}, {
"latitude" : "25.60725",
"longitude" : "85.1381"
}, {
"latitude" : "18.54298",
"longitude" : "73.85154"
}, {
"latitude" : "26.19196",
"longitude" : "91.77436"
}, {
"latitude" : "18.98579",
"longitude" : "72.8377"
}, {
"latitude" : "28.52024",
"longitude" : "77.29391"
}, {
"latitude" : "12.95752",
"longitude" : "77.58592"
}, {
"latitude" : "20.27161",
"longitude" : "85.81384"
}, {
"latitude" : "13.03589",
"longitude" : "80.24529"
}, {
"latitude" : "28.67434",
"longitude" : "77.44399"
}, {
"latitude" : "22.7481",
"longitude" : "75.89591"
}, {
"latitude" : "22.78717",
"longitude" : "86.18384"
}, {
"latitude" : "18.98579",
"longitude" : "72.8377"
}, {
"latitude" : "25.60725",
"longitude" : "85.1381"
}, {
"latitude" : "21.26154",
"longitude" : "81.64495"
}, {
"latitude" : "16.50617",
"longitude" : "80.64802"
}, {
"latitude" : "22.7481",
"longitude" : "75.89591"
}, {
"latitude" : "26.86952",
"longitude" : "81.00911"
}, {
"latitude" : "19.20703",
"longitude" : "72.9569"
}, {
"latitude" : "20.27161",
"longitude" : "85.81384"
}, {
"latitude" : "13.03589",
"longitude" : "80.24529"
}, {
"latitude" : "17.45487",
"longitude" : "78.441"
}, {
"latitude" : "17.45487",
"longitude" : "78.441"
}, {
"latitude" : "21.1283",
"longitude" : "79.04622"
}, {
"latitude" : "21.1283",
"longitude" : "79.04622"
}, {
"latitude" : "28.32133",
"longitude" : "77.3103"
}, {
"latitude" : "23.00286",
"longitude" : "72.51028"
}, {
"latitude" : "12.95752",
"longitude" : "77.58592"
}, {
"latitude" : "30.70897",
"longitude" : "76.80318"
}, {
"latitude" : "26.89381",
"longitude" : "75.74721"
}, {
"latitude" : "26.86952",
"longitude" : "81.00911"
}, {
"latitude" : "18.98643",
"longitude" : "72.83612"
}, {
"latitude" : "18.54298",
"longitude" : "73.85154"
}, {
"latitude" : "16.50617",
"longitude" : "80.64802"
}, {
"latitude" : "9.95954",
"longitude" : "76.28886"
}, {
"latitude" : "9.95954",
"longitude" : "76.28886"
}, {
"latitude" : "10.99705",
"longitude" : "76.98204"
}, {
"latitude" : "18.98643",
"longitude" : "72.83612"
}, {
"latitude" : "28.52024",
"longitude" : "77.29391"
}, {
"latitude" : "21.26154",
"longitude" : "81.64495"
} ],
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Voltas.webp",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Voltas.webp",
"offerSourceImage" : "",
"redemptionCode" : "",
"cashbackValue" : 0.0,
"currency" : "",
"offerType" : "card linked",
"offerStatus" : "active",
"url" : "",
"howToRedeem" : "T&C Apply $ EasyEMI Applicable on Select products",
"payoutType" : "cpa_flat",
"offerSource" : "hdfc",
"termsAndConditions" : "",
"offerVariant" : "",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "" ],
"applicableChannel" : [ "online", "offline" ]
} ],
"tags" : [ "" ],
"cities" : [ "Ahmedabad", "Coimbatore", "Ghaziabad", "Jaipur", "Kolkata", "Chandigarh", "Faridabad", "Guwahati", "Jamshedpur", "Kolkata", "Mumbai", "Patna", "Pune", "Guwahati", "Mumbai", "New Delhi", "Bengaluru", "Bhubaneswar", "Chennai", "Ghaziabad", "Indore", "Jamshedpur", "Mumbai", "Patna", "Raipur", "Vijayawada", "Indore", "Lucknow", "Mumbai", "Bhubaneswar", "Chennai", "Hyderabad", "Hyderabad", "Nagpur", "Nagpur", "New Delhi", "Ahmedabad", "Bengaluru", "Chandigarh", "Jaipur", "Lucknow", "Mumbai", "Pune", "Vijayawada", "Cochin", "Cochin", "Coimbatore", "Mumbai", "New Delhi", "Raipur" ],
"geoCodes" : [ {
"latitude" : "23.00286",
"longitude" : "72.51028"
}, {
"latitude" : "10.99705",
"longitude" : "76.98204"
}, {
"latitude" : "28.67434",
"longitude" : "77.44399"
}, {
"latitude" : "26.89381",
"longitude" : "75.74721"
}, {
"latitude" : "22.57398",
"longitude" : "88.43837"
}, {
"latitude" : "30.70897",
"longitude" : "76.80318"
}, {
"latitude" : "28.32133",
"longitude" : "77.3103"
}, {
"latitude" : "26.19196",
"longitude" : "91.77436"
}, {
"latitude" : "22.78717",
"longitude" : "86.18384"
}, {
"latitude" : "22.57398",
"longitude" : "88.43837"
}, {
"latitude" : "19.20703",
"longitude" : "72.9569"
}, {
"latitude" : "25.60725",
"longitude" : "85.1381"
}, {
"latitude" : "18.54298",
"longitude" : "73.85154"
}, {
"latitude" : "26.19196",
"longitude" : "91.77436"
}, {
"latitude" : "18.98579",
"longitude" : "72.8377"
}, {
"latitude" : "28.52024",
"longitude" : "77.29391"
}, {
"latitude" : "12.95752",
"longitude" : "77.58592"
}, {
"latitude" : "20.27161",
"longitude" : "85.81384"
}, {
"latitude" : "13.03589",
"longitude" : "80.24529"
}, {
"latitude" : "28.67434",
"longitude" : "77.44399"
}, {
"latitude" : "22.7481",
"longitude" : "75.89591"
}, {
"latitude" : "22.78717",
"longitude" : "86.18384"
}, {
"latitude" : "18.98579",
"longitude" : "72.8377"
}, {
"latitude" : "25.60725",
"longitude" : "85.1381"
}, {
"latitude" : "21.26154",
"longitude" : "81.64495"
}, {
"latitude" : "16.50617",
"longitude" : "80.64802"
}, {
"latitude" : "22.7481",
"longitude" : "75.89591"
}, {
"latitude" : "26.86952",
"longitude" : "81.00911"
}, {
"latitude" : "19.20703",
"longitude" : "72.9569"
}, {
"latitude" : "20.27161",
"longitude" : "85.81384"
}, {
"latitude" : "13.03589",
"longitude" : "80.24529"
}, {
"latitude" : "17.45487",
"longitude" : "78.441"
}, {
"latitude" : "17.45487",
"longitude" : "78.441"
}, {
"latitude" : "21.1283",
"longitude" : "79.04622"
}, {
"latitude" : "21.1283",
"longitude" : "79.04622"
}, {
"latitude" : "28.32133",
"longitude" : "77.3103"
}, {
"latitude" : "23.00286",
"longitude" : "72.51028"
}, {
"latitude" : "12.95752",
"longitude" : "77.58592"
}, {
"latitude" : "30.70897",
"longitude" : "76.80318"
}, {
"latitude" : "26.89381",
"longitude" : "75.74721"
}, {
"latitude" : "26.86952",
"longitude" : "81.00911"
}, {
"latitude" : "18.98643",
"longitude" : "72.83612"
}, {
"latitude" : "18.54298",
"longitude" : "73.85154"
}, {
"latitude" : "16.50617",
"longitude" : "80.64802"
}, {
"latitude" : "9.95954",
"longitude" : "76.28886"
}, {
"latitude" : "9.95954",
"longitude" : "76.28886"
}, {
"latitude" : "10.99705",
"longitude" : "76.98204"
}, {
"latitude" : "18.98643",
"longitude" : "72.83612"
}, {
"latitude" : "28.52024",
"longitude" : "77.29391"
}, {
"latitude" : "21.26154",
"longitude" : "81.64495"
} ],
"isOnline" : false,
"merchantType" : [ "offline" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
} ],
"created" : "2026-04-21T05:36:51.139518329Z"
}, {
"id" : "MB8a2aL4RS6bTT8IkdlFnA",
"listName" : "Fresh out of the box",
"listType" : "NEW_OFFERS",
"totalCount" : 1,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "aec6fd93-dcd0-33c9-acb2-c6cd3a72a422",
"name" : "Baskin Robin inc",
"category" : "dining",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/talabat-logo.webp",
"curatedImage" : "",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Talabat_MerchantImage.webp",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Talabat_Banner.webp",
"url" : "https://ebay.com",
"externalId" : "HDFC105792",
"dominantColorCode" : "",
"distance" : 1024.0968870039599,
"tasteMatchScore" : 70,
"totalViews" : 9
},
"offers" : [ {
"id" : "415174",
"name" : "15% off on Total Bill",
"description" : "<p>15% off on Total Bill</p>",
"validFrom" : "2026-04-09T00:00:00.389Z",
"validTo" : "2026-05-28T23:59:59.389Z",
"partner" : true,
"isOnline" : false,
"sensitiveFlag" : false,
"offerActive" : true,
"locations" : [ "1044944" ],
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : "0.0",
"longitude" : "0.0"
} ],
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Baskin_robins_logo_new.webp",
"curatedOfferImage" : "",
"offerSourceImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Baskin_robins_logo_new.webp",
"redemptionCode" : "",
"cashbackValue" : 15.0,
"currency" : "",
"offerType" : "card linked",
"offerStatus" : "active",
"url" : "https://ebay.com",
"howToRedeem" : "Visit your nearest store, show the offer communication before billing and use your HDFC Bank Cards for this discount.",
"payoutType" : "cpa_percentage",
"offerSource" : "hdfc",
"termsAndConditions" : "<p>T&C</p>",
"offerVariant" : "",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "ALL CREDIT CARDS (EXCEPT CO-BRANDED)", "ALL CREDIT/DEBIT CARDS (EXCEPT CO-BRANDED)", "ALL DEBIT CARDS", "CONSUMER LOANS", "DINERS BLACK", "INFINIA", "OTHER CREDIT CARDS", "REGALIA", "TATA NEU INFINITY", "TATA NEU PLUS" ],
"applicableChannel" : [ "online", "offline" ]
} ],
"tags" : [ "" ],
"cities" : [ "all", "Chennai", "Chennai" ],
"geoCodes" : [ {
"latitude" : "0.0",
"longitude" : "0.0"
}, {
"latitude" : "13.0029",
"longitude" : "80.2711"
}, {
"latitude" : "13.0417",
"longitude" : "80.1302"
} ],
"isOnline" : false,
"merchantType" : [ "offline" ],
"isHyperLocal" : true
},
"liked" : false,
"wishlisted" : false
} ],
"created" : "2026-04-21T05:36:51.154186921Z"
}, {
"id" : "PNAgoNi5RVeQ9EmwgAVsOA",
"listName" : "Best-selling offers",
"listType" : "POPULARITY",
"totalCount" : 1,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "8a72244c-e903-33c3-a5cd-e19034a64949",
"name" : "Via.com",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "HDFC15903",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"url" : "https://in.via.com/",
"tasteMatchScore" : 84,
"totalViews" : 39,
"distance" : 0.0
},
"offers" : [ {
"id" : "178714",
"name" : "Use coupon code: FLYVIAHDFC, Get Flat 7% Instant Discount upto Rs 7000 on international fligts, minimum booking value should be Rs 10000",
"description" : "Flat Rs.500 off on One way and Flat Rs.1000 off on Round trip on Domestic Flights\nFlat Rs.300 on one way and Rs.600 on round trip on International Flights\nFlat 2% off on Hotel booking\nFlat 3% on Bus booking",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFC",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"payoutType" : "cpa_flat",
"offerVariant" : "Consumer Durable Loan (CDL)",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "1. Offer valid on HDFC Credit cards only \n\n2. Offer on all days\n\n3. This offer is funded by Via.com",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"offerSource" : "CARDS & EASYEMI",
"howToRedeem" : "use promo code VIAHDFC while checkout for Domestic flights\n\nuse promo code VIAHDFC while checkout for International flights\n\nuse promo code VIAHDFCHTL while checkout for Hotels\n\nuse promo code VIAHDFCBUS while checkout for Buses",
"currency" : "",
"payoutValue" : "500",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "TEST CARDS" ]
}, {
"id" : "287456",
"name" : "Rs. 500 off on Minimum Billing of Rs. 4500 on Domestic Flights.\nRs. 1000 off on Minimum Billing of Rs. 10,000 on International Flights.\nRs. 500 off on Minimum Billing of Rs. 4000 on Hotels Booking.\nRs. 100 off on Minimum Billing of Rs. 1200 on Bus Booking.",
"description" : "Rs. 500 off on Minimum Billing of Rs. 4500 on Domestic Flights.\nRs. 1000 off on Minimum Billing of Rs. 10,000 on International Flights.\nRs. 500 off on Minimum Billing of Rs. 4000 on Hotels Booking.\nRs. 100 off on Minimum Billing of Rs. 1200 on Bus Booking.",
"validFrom" : "2023-10-20T00:00:00.389Z",
"validTo" : "2026-11-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "India" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "VIATHRIWE",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerVariant" : "EASY EMI",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "The Offer is valid till 30th November 2024\nUnder this Offer, Cardholders gets Up to 1000/- Rs. off\nOffer valid only on online orders placed via https://in.via.com/\nOffer is valid on flights/hotels/bus transactions only.\nOffer is valid on website/m-site/app transactions. \nOffer is valid once per user per product per month during offer duration.\nOther generic platform t&c's will be applicable.\nFlat discount starts from the minimum Billing as stated in the offer construct table. Flat discount remains the same for any value above minimum order for all the products.\nThe Exclusive offers/discounts under these Programs cannot be clubbed with any other offer.\nThe Offer is available only upon making full payment by a valid and unexpired Mastercard card issued in India.\nOffer is not valid for Cash on Delivery.\nTo redeem this offer, cardholders should login to their account or create an account, if they are not registered.\nThe Offer is non-transferable and cannot be exchanged for cash or cheque or any form of credit.\nTotal spends will be calculated on the basis of product cost only excluding all taxes, GST, delivery charges, etc. Any taxes or liabilities or charges payable to the Government or any other authority or body, if any, shall be borne directly by the cardholder and/ or billed to the account of the cardholder\nAny dispute regarding delivery, service, suitability, merchantability, availability or quality of the offer/or product/services availed under this offer must be addressed in writing, by the cardholder directly to info@thriwe.com. Mastercard or the issuing bank will not be liable for the same.\nCardholders are not bound in any way to participate in the Offer. Any participation shall be voluntary and all participants understand, acknowledge and agree that the Offer is purely on a best effort basis and Mastercard does not assume any liability whatsoever regarding the Offer, the delivery of services or any incidental matter.\nNo two offers can be clubbed together and no additional discount/offer will be applicable.\nAny cardholder who utilises, participates in, or attempts to utilise or participate in the Mastercard Card Offers programme, irrevocably agrees to the following: Mastercard will not be liable under contract, tort or any other theory of law for any claim regarding loss or damage howsoever incurred in relation to the use (or attempted use) of the Offer; and accordingly, the cardholder will not make any claim against Mastercard regarding the same.\nEach benefit/privilege may be subject to additional terms and conditions imposed by Via.com. Cardholders are solely responsible for checking and complying with the same.\nThese terms and conditions shall be governed by the laws of India and any dispute arising out of or in connection with these terms and conditions shall be subject to the exclusive jurisdiction of the courts in Mumbai.\nMastercard reserves the right to add, alter, modify, change or vary any of these terms and conditions or to replace, wholly or in part, this Offer by another offer, whether similar or not, or to withdraw it altogether at any point in time, without any prior notice.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via.webp",
"offerType" : "online coupon",
"offerSource" : "CARDS & EASYEMI",
"howToRedeem" : "Get Specials offers at Via.com\n\nRs. 500 off on Minimum Billing of Rs. 4500 on Domestic Flights.\nRs. 1000 off on Minimum Billing of Rs. 10,000 on International Flights.\nRs. 500 off on Minimum Billing of Rs. 4000 on Hotels Booking.\nRs. 100 off on Minimum Billing of Rs. 1200 on Bus Booking.\nUse promocode VIATHRIWE at checkout and payment by Mastercard card.\n\nLink: https://in.via.com/\n\nOffer valid till 30th November 2024",
"currency" : "",
"payoutValue" : "500.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "178727",
"name" : "Use coupon code: FLYVIAHDFC, Get Flat 7% Instant Discount upto Rs 7000 on international fligts, minimum booking value should be Rs 10000",
"description" : "Use coupon code: FLYVIAHDFC $ Get Flat 7% upto Rs 7000 Instant Discount oxn international flights $ minimum booking value should be Rs 10000",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFCHTL",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "SMARTBUY",
"howToRedeem" : "1. Log in to website\n\n2. Add products to your cart\n\n3. Pay using your HDFC Bank Cards to avail this offer",
"currency" : "",
"payoutValue" : "2",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "Applicable once per month",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "MILLENIA" ]
}, {
"id" : "178728",
"name" : "Using your HDFC Bank Card avail this offer",
"description" : "Flat 3% on Bus booking",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFCBUS",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "SMARTBUY",
"howToRedeem" : "use promo code VIAHDFCBUS while checkout?for Buses in https://in.via.com/",
"currency" : "",
"payoutValue" : "3",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "1. Offer valid on HDFC Credit cards only \n2. Offer on all days\n3. This offer is funded by Via.com",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "IRCTC" ]
}, {
"id" : "178726",
"name" : "Using your HDFC Bank Card avail this offer",
"description" : "Flat Rs.500 off on One way and Flat Rs.1000 off on Round trip on Domestic Flights\nFlat Rs.300 on one way and Rs.600 on round trip on International Flights\nFlat 2% off on Hotel booking\nFlat 3% on Bus booking",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFC",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"payoutType" : "cpa_flat",
"offerSource" : "SMARTBUY",
"howToRedeem" : "use promo code VIAHDFC while checkout for International flights in https://in.via.com/",
"currency" : "",
"payoutValue" : "300",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "1. Offer valid on HDFC Credit cards only \n2. Offer on all days\n3. This offer is funded by Via.com",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "REGALIA" ]
} ],
"tags" : [ "travel-agency", "travel-agencies-and-operators", "tour", "air-ticket-booking", "train-ticket-booking", "bus-ticket-booking", "hotel-booking" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
} ],
"created" : "2026-04-21T05:36:51.144765448Z"
}, {
"id" : "5lO7L7qIQZ6fCbYwxGm1cQ",
"listName" : "Recently viewed",
"listType" : "RESUME",
"totalCount" : 6,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "39c3f5d4-8e6d-37be-b521-7b20bc4507b5",
"name" : "St Regis At Saadiyat Island",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/The_St_Regis_Saadiyat_Island_Resort_Offer_Image.webp.webp",
"dominantColorCode" : "#fff57a",
"distance" : 0.0,
"externalId" : "DP38",
"totalViews" : 11,
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/The_St_Regis_Saadiyat_Island_Resort_Offer_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB1316_The_St._Regis_Amman_New_Logo.webp.webp",
"tasteMatchScore" : 91,
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/The_St_Regis_Saadiyat_Island_Resort_Banner.webp.webp"
},
"offers" : [ {
"id" : "80514",
"name" : "Get up to 15% off on your stay at St Regis at saadiyat Island",
"description" : "Get up to 15% off on your stay at St Regis at saadiyat Island till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/The_St_Regis_Saadiyat_Island_Resort_Merchant_Image.webp.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=the-st-regis-saadiyat-island-resort-1333855",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : P.O. Box 54345, Abu Dhabi, United Arab Emirates ; Contact : reservations.saadiyat@stregis.com\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/The_St_Regis_Saadiyat_Island_Resort_Merchant_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "business-traveller", "family-room", "room-service", "bathrobe", "couple", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "sofitel", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ]
},
"liked" : true,
"wishlisted" : false
}, {
"item" : {
"id" : "cdb0a2c5-6b4f-3f61-bedb-6a20f3cc9fc9",
"name" : "The Ritz-Carlton",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1308-TheRitzCarltonAbuDhabiGrandCanal.webp.webp",
"dominantColorCode" : "#3750ad",
"distance" : 0.0,
"externalId" : "DP35",
"totalViews" : 1,
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1308-TheRitzCarltonAbuDhabiGrandCanal.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB1308_The_Ritz_Carlton_Abu_Dhabi_Grand_Canal_New_Logo.webp.webp",
"tasteMatchScore" : 85,
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/BB1308-TheRitzCarltonAbuDhabiGrandCanal.webp.webp"
},
"offers" : [ {
"id" : "80529",
"name" : "Get up to 15% off on your stay at The Ritz-Carlton, Dubai",
"description" : "Get up to 15% off on your stay at The Ritz-Carlton, Dubai till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1308_The_Ritz_Carlton_Abu_Dhabi_Grand_Canal_Merchant_Card_Image.webp.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/ja/cheap-hotels/profile/The-Ritz-Carlton-Dubai-1507233",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : P.O. Box 26525, Al Mamsha Street, Dubai, United Arab Emirates ; Contact : 97143994000/dxbrz.leads@ritzcarlton.com\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1308_The_Ritz_Carlton_Abu_Dhabi_Grand_Canal_Merchant_Card_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "business-traveller", "family-room", "room-service", "bathrobe", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "acb1cfbc-0ef4-3e59-9a4c-89168ce167e7",
"name" : "Fairmont Hotel",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP189_Fairmont_Card.webp",
"dominantColorCode" : "#FBB3BD",
"distance" : 0.0,
"externalId" : "DP189",
"totalViews" : 1,
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP189_Fairmont_Card.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/DP189_Fairmont_logo.webp",
"tasteMatchScore" : 85,
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/DP189_Fairmont_Banner.webp"
},
"offers" : [ {
"id" : "98319",
"name" : "Get up to 15% off on your stay at Fairmont hotel, Cairo",
"description" : "Get up to 15% off on your stay at Fairmont hotel, Cairo until 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98319_Fairmont_Offer.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=fairmont-nile-city-hotel-1307205",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.The offer is valid on bookings done on rehlat.ae website or app only \n4.Offer is not valid in conjunction with any other offer, discount, and special promotion\n5.Offer is valid for ADIB card users only\n6.Offer is subject to merchant approval and till stock is available\n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n *The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98319_Fairmont_Offer.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "suite", "front-desk", "shopping-outlets", "banquet-hall", "king-room", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "luxury-hotel", "backpacker", "business-traveller", "family-room", "couple", "room-service", "bathrobe", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "garden", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "luggage-storage", "airport-transportation", "desk", "queen-room", "soundproof-room", "museum", "security", "classical-design", "swimming-pool", "fitness-centre", "atm", "free-internet", "air-conditioner", "hair-dryer", "fairmont", "large-beds" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "eedd023a-4a05-3f88-84bc-e14742bbfcee",
"name" : "Sterling Holidays",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"distance" : 0.0,
"externalId" : "HDFC24541",
"totalViews" : 144,
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"tasteMatchScore" : 85,
"url" : "https://www.sterlingholidays.com"
},
"offers" : [ {
"id" : "287462",
"name" : "25% off on Room Rates & Exclusive Value Voucher of Rs. 1000/-",
"description" : "25% off on Room Rates & Exclusive Value Voucher of Rs. 1000/-",
"validFrom" : "2023-10-20T00:00:00.389Z",
"validTo" : "2026-10-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "India" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.sterlingholidays.com?aff_sub=testuser&aff_sub2=HDFC24541&aff_sub3=287462&aff_sub4=crayon",
"termsAndConditions" : "The Offer is valid till 25% off on Room Rates & Exclusive Value Voucher of Rs. 1000/-\nMinimum 2 Night Booking to Avail this Offer\nCardholders need to indicate their intention to redeem the Offer before the bill is generated and may be asked to present their Mastercard card for confirmation\nFor participating outlets Click here\nThe Offer is available only upon making full payment by a valid and unexpired Mastercard card issued in India.\nOffer cannot be combined with any other offer/ promotion/ scheme.\nThe Offer is non-transferable and cannot be exchanged for cash or cheque or any form of credit.\nTotal spending will be calculated based on the product cost only excluding all taxes, GST, delivery charges, etc. Any taxes or liabilities or charges payable to the Government or any other authority or body, if any, shall be borne directly by the cardholder and/ or billed to the account of the cardholder.\nAny dispute regarding delivery, service, suitability, merchantability, availability or quality of the offer/or product/services availed under this offer must be addressed in writing, by the cardholder directly to info@thriwe.com. Mastercard or the issuing bank will not be liable for the same.\nCardholders are not bound in any way to participate in the Offer. Any participation shall be voluntary, and all participants understand, acknowledge and agree that the Offer is purely on a best effort basis and Mastercard does not assume any liability whatsoever regarding the Offer, the delivery of services or any incidental matter.\nAny cardholder who utilises, participates in or attempts to utilise or participate in the Mastercard Card Offers program, irrevocably agrees to the following: Mastercard will not be liable under contract, tort or any other theory of law for any claim regarding loss or damage howsoever incurred in relation to the use (or attempted use) of the Offer; and accordingly, the cardholder will not make any claim against Mastercard regarding the same.\nEach benefit/privilege may be subject to additional terms and conditions imposed by Sterling Holidays The right of admission is reserved with the merchant. Cardholders are solely responsible for checking and complying with the same.\nThese terms and conditions shall be governed by the laws of India and any dispute arising out of or in connection with these terms and conditions shall be subject to the exclusive jurisdiction of the courts in Mumbai.\nMastercard reserves the right to add, alter, modify, change or vary any of these terms and conditions or to replace, wholly or in part, this Offer by another offer, whether similar or not, or to withdraw it altogether at any point in time, without any prior notice.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"offerType" : "card linked",
"offerSource" : "hdfc",
"howToRedeem" : "Redeemable at The Time of Booking on Sterling Website - sterlingholidays.com",
"currency" : "",
"payoutValue" : "25.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "travel-agency", "travel-agencies-and-operators", "hotel-booking" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "46c4b57b-a976-3e67-bd6a-7d13c08239e8",
"name" : "Anotah",
"description" : "Discover the new Anotah Fashion Online. The latest trends for Woman, Top Girls, Kids.",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC560_3_Anotah_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"distance" : 0.0,
"externalId" : "AC560",
"totalViews" : 6,
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC560_3_Anotah_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/AC560_Anotah_New_Logo.webp.webp",
"tasteMatchScore" : 83,
"url" : "https://www.anotah.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/AC560_Anotah_New_Banner.webp.webp"
},
"offers" : [ {
"id" : "1637",
"name" : "Get up to 10% off on your purchase at Anotah",
"description" : "Get up to 10% off on your purchase at Anotah till 21-12-2022\nOnline offer",
"validFrom" : "2021-05-01T00:00:00.389Z",
"validTo" : "2026-12-21T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "AC63",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC560_1_Anotah_New_Image.webp.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.anotah.com/?aff_sub=testuser&aff_sub2=AC560&aff_sub3=1637&aff_sub4=crayon",
"termsAndConditions" : "1.\tThe offer is valid upto 21-12-2022\n2.\tThe offer is valid for Women's Apparel, Beauty only\n3.\tThe categories/products which are excluded from this offer are: N/A\n4.\tThe offer is valid on app & website purchases only\n5.\tThe offer is applicable for new & repeat users\n6.\tCoupons are applicable for ADIB card users only\n7.\tCoupon is applicable for online purchase only\n8.\tAccidental loss of coupon shall not be covered \n9.\tCoupons are not transferable \n10.\tCoupons cannot be replaced if lost.\n11.\tCustomer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.\tCoupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC560_1_Anotah_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "KWD",
"payoutValue" : "16.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "perfumery", "health-and-beauty", "multi-brand", "online-and-in-store", "large-product-range", "apparel-and-accessories", "international", "average-pricing", "shopping-mall", "cosmetics-and-skincare", "clothing-store", "personal-care", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "70e01d02-fa9c-3045-9ef7-9cc4a2f8496a",
"name" : "Christmas Wonderland Singapore",
"category" : "entertainment",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/HO6_Christmas_Wonderland_Singapore_Merchant.webp",
"distance" : 0.0,
"externalId" : "DP259",
"totalViews" : 2,
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/HO6_Christmas_Wonderland_Singapore_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/headout-logo.webp",
"tasteMatchScore" : 72,
"url" : "https://www.headout.com/tour/19773/?bi=JTdCJTIydCUyMiUzQSUyMjEwJTI1JTIwb2ZmJTIwb24lMjB0b3AlMjBTaW5nYXBvcmUlMjBleHBlcmllbmNlcyUzRiUyMFllcyUyQyUyMHBsZWFzZSElMjIlMkMlMjJkZXNjJTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmMlMjIlM0ElMjJIT0hTQkMxMCUyMiUyQyUyMnR5cGUlMjIlM0ElMjJQUk9NT19NQU5VQUwlMjIlMkMlMjJzdWJUZXh0JTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmJhY2tncm91bmQlMjIlM0ElN0IlMjJ1cmwlMjIlM0ElMjJodHRwcyUzQSUyRiUyRmNkbi1pbWdpeC5oZWFkb3V0LmNvbSUyRnRvdXIlMkYxMzQ0MCUyRlRPVVItSU1BR0UlMkZiYzYzNTc2OS05NTE2LTRhOGQtOWI4OC0wM2Q4ZTBiNjYyNWUtNzM1OC1zaW5nYXBvcmUtZ2FyZGVucy1ieS10aGUtYmF5LWRpcmVjdC1lbnRyeS10aWNrZXRzLTAzLmpwZWclMjIlN0QlMkMlMjJ0bmMlMjIlM0ElMjJPZmZlciUyMHZhbGlkJTIwZnJvbSUyMDE1dGglMjBBcHJpbCUyMDIwMjMlMjB0byUyMDE1dGglMjBTZXB0ZW1iZXIlMjAyMDIzLiUyMFRlcm1zJTIwYW5kJTIwQ29uZGl0aW9ucyUyMEFwcGx5JTIwKGJpdC5seSUyRkhPSFNCQzEwX1Rlcm1zKSUyMiU3RA==&utm_source=partnership&utm_medium=CDPortal&utm_campaign=HSBC",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/HO6_Christmas_Wonderland_Singapore_Banner.webp"
},
"offers" : [ {
"id" : "201893",
"name" : "Get 10% off on Tickets to Christmas Wonderland 2022 at Gardens By The Bay",
"description" : "Get 10% off on Tickets to Christmas Wonderland 2022 at Gardens By The Bay till 15-09-2023\nOnline offer",
"validFrom" : "2023-04-15T00:00:00.389Z",
"validTo" : "2026-09-15T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "HOHSBC10",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/HO6_Christmas_Wonderland_Singapore_Offer.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.headout.com/tour/19773/?bi=JTdCJTIydCUyMiUzQSUyMjEwJTI1JTIwb2ZmJTIwb24lMjB0b3AlMjBTaW5nYXBvcmUlMjBleHBlcmllbmNlcyUzRiUyMFllcyUyQyUyMHBsZWFzZSElMjIlMkMlMjJkZXNjJTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmMlMjIlM0ElMjJIT0hTQkMxMCUyMiUyQyUyMnR5cGUlMjIlM0ElMjJQUk9NT19NQU5VQUwlMjIlMkMlMjJzdWJUZXh0JTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmJhY2tncm91bmQlMjIlM0ElN0IlMjJ1cmwlMjIlM0ElMjJodHRwcyUzQSUyRiUyRmNkbi1pbWdpeC5oZWFkb3V0LmNvbSUyRnRvdXIlMkYxMzQ0MCUyRlRPVVItSU1BR0UlMkZiYzYzNTc2OS05NTE2LTRhOGQtOWI4OC0wM2Q4ZTBiNjYyNWUtNzM1OC1zaW5nYXBvcmUtZ2FyZGVucy1ieS10aGUtYmF5LWRpcmVjdC1lbnRyeS10aWNrZXRzLTAzLmpwZWclMjIlN0QlMkMlMjJ0bmMlMjIlM0ElMjJPZmZlciUyMHZhbGlkJTIwZnJvbSUyMDE1dGglMjBBcHJpbCUyMDIwMjMlMjB0byUyMDE1dGglMjBTZXB0ZW1iZXIlMjAyMDIzLiUyMFRlcm1zJTIwYW5kJTIwQ29uZGl0aW9ucyUyMEFwcGx5JTIwKGJpdC5seSUyRkhPSFNCQzEwX1Rlcm1zKSUyMiU3RA==&utm_source=partnership&utm_medium=CDPortal&utm_campaign=HSBC",
"termsAndConditions" : "1. Headout has the sole authority for the interpretation of these terms and conditions. \n2. In addition to these terms and conditions, Headout's terms of use and privacy policy shall also apply. \n3. This offer is applicable on all Singapore based experiences listed on Headout's Website. \n4. The offer shall be redeemed by Users through the use of coupon codes that are issued to them via their bank portal. To redeem the offer, Users must select the offer on the bank portal and obtain a coupon code. The User will then be directed to the relevant product page on the Headout's website. Upon reaching the Headout's website, the User must enter the unique coupon code at the checkout page before making any payment. The offer cannot be redeemed after the payment has been processed. In case, if Headout finds out that User has redeemed the offer in any other manner, Headout reserves the right to either cancel the booking or take any other action as it may deem fit. \n5. The coupon code application shall be restricted to a maximum of three uses per individual User. If a user cancels their booking, the coupon code will remain valid for the tenure provided in clause 6 below, as long as it has not been used three times. Any additional uses of the coupon code will not be honored. \n6. The coupon code shall be valid from 15th April 2023 to 15th September 2023. \n7. Discount provided under this coupon code will not be clubbed with any other offer. \n8. In case of full/partial cancellation, the offer redeemed under the coupon code shall stand void and the user will not be eligible for the discount. Headout shall process the refund, to the original source, post adjusting the discount and/or any other applicable charges and penalties. \n9. In case of the loss of the Coupon code because of any reason that is directly related to the User neither Crayon nor Headout shall have any liability whatsoever. \n10. Coupon Codes are non transferable and can only be used for the purchases of experiences listed on the Headout website. \n11. In case Headout witnesses any fraudulent activity from User's end, it shall have the right to disqualify that particular User from the benefits of the offer and take any corrective action as per the law. \n12. Headout shall not be liable for any loss or damage arising due to force majeure scenarios like act of god, epidemic/pandemic, government restrictions, strikes,riots etc. \n13. Only individual Users are allowed to claim benefits under this offer. Travel agents are barred from availing any benefits under this offer. Headout reserves the right to deny any benefit under this offer to travel agents. Headout may also opt to cancel such bookings without processing any refunds against the same. \n14. User understands that their participation in this offer is voluntary in nature. If a User claims any benefit under this offer it will be construed that they have read understood and accepted these terms and conditions. \n15. In the events of any dispute, the courts of the state of New York (United States) shall have exclusive jurisdiction.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/HO6_Christmas_Wonderland_Singapore_Offer.webp",
"offerType" : "offline coupon",
"offerSource" : "headout",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "landmarks-and-points-of-interest", "amusement-parks", "theme-parks" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
} ],
"created" : "2026-04-21T05:36:51.421298759Z"
}, {
"id" : "YBOJvFqzQouwWCBGYGbHoA",
"listName" : "More of what you love!",
"listType" : "TAG_BASED",
"totalCount" : 10,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "62ea2f16-60bc-3340-8516-c185e79db61b",
"name" : "Lightinthebox",
"description" : "LightInTheBox is a global online retail company that delivers products directly to consumers around the world. Founded in 2007, LightInTheBox has offered customers a convenient way to shop for a wide selection of lifestyle products at attractive prices through www.lightinthebox.com, www.miniinthebox.com, and other websites, which are available in multiple major languages.LightInTheBox offers products in the categories of apparel and other general merchandise.LightInTheBox's innovative data-driven business model allows itself to offer customized products, such as wedding dress and evening dress, at scale for optimal marketing, merchandising and fulfillment.",
"category" : "apparel and accessories",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AD1985_17_Lightinthebox_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AD1985",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AD1985_17_Lightinthebox_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/AD1985_Lightinthebox_New_Logo.webp.webp",
"url" : "https://lightinthebox.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/AD1985_Lightinthebox_New_Banner.webp.webp",
"tasteMatchScore" : 85,
"distance" : 0.0
},
"offers" : [ {
"id" : "40440",
"name" : "Get 37 AED off on minimum purchase of 290 AED at Lightinthebox",
"description" : "Get 37 AED off on minimum purchase of 290 AED at Lightinthebox till 30-06-2022\nOnline offer",
"validFrom" : "2022-02-25T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "LTS17",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AD1985_16_Lightinthebox_New_Image.webp.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 6.4,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/m237c1q153d1931805367d95a12660/?i=3&subid=testuser&subid1=AD1985&subid2=40440&subid3=crayon",
"termsAndConditions" : "1. The offer is valid upto 30-06-2022\n2. The offer is valid for Accessories & Bags, Homeware, Toys, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AD1985_16_Lightinthebox_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "8.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "1346",
"name" : "Get up to 15% off on your purchase at Lightinthebox",
"description" : "Get up to 15% off on your purchase at Lightinthebox till 21-12-2022\nOnline offer",
"validFrom" : "2022-06-18T00:00:00.389Z",
"validTo" : "2026-12-21T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "AC67",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AD1985_17_Lightinthebox_New_Image.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 5.0,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=917&aff_id=68962&aff_sub=testuser&aff_sub2=AD1985&aff_sub3=1346&aff_sub4=crayon",
"termsAndConditions" : "1. The offer is valid upto 21-12-2022\n2. The offer is valid for 'Beauty', 'Fashion', 'Services', 'Baby & Kids', 'Books & Education', 'Cars & Automotive', 'TV & Electronics', 'Mobiles, Tablets & Computers', 'Entertainment & Restaurants', 'Business & Finance', 'Grocery & Food', 'Home, Kitchen & Garden', 'Coupon Offers' only\n3. The offer is applicable for 'Mobile', 'Desktop / Web'\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AD1985_17_Lightinthebox_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "",
"payoutValue" : "6.4",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "40441",
"name" : "Get 55 AED off on minimum purchase of 360 AED at Lightinthebox",
"description" : "Get 55 AED off on minimum purchase of 360 AED at Lightinthebox till 30-06-2022\nOnline offer",
"validFrom" : "2022-02-25T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "LTS18",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AD1985_3_Lightinthebox_New_Image.webp.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 6.4,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/671w1sh9p5d1931805367d95a12660/?i=3&subid=testuser&subid1=AD1985&subid2=40441&subid3=crayon",
"termsAndConditions" : "1. The offer is valid upto 30-06-2022\n2. The offer is valid for Accessories & Bags, Homeware, Toys, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AD1985_3_Lightinthebox_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "8.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "40439",
"name" : "Get 15 AED off on minimum purchase of 140 AED at Lightinthebox",
"description" : "Get 15 AED off on minimum purchase of 140 AED at Lightinthebox till 30-06-2022\nOnline offer",
"validFrom" : "2022-02-25T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "LTS16",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AD1985_2_Lightinthebox_New_Image.webp.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 6.4,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/hgkbjzgkmnd1931805367d95a12660/?i=3&subid=testuser&subid1=AD1985&subid2=40439&subid3=crayon",
"termsAndConditions" : "1. The offer is valid upto 30-06-2022\n2. The offer is valid for Accessories & Bags, Homeware, Toys, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AD1985_2_Lightinthebox_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "8.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "perfumery", "housewares", "bicycle-and-accessories", "pet-supplies", "health-and-beauty", "pet-and-pet-supplies", "multi-brand", "sporting-equipment", "toys-and-games", "sports-and-outdoors", "toys", "computer-and-accessories", "large-product-range", "home-and-kitchen", "online", "apparel-and-accessories", "kids-utilities", "kitchen-accessories", "books-and-music", "accessories-store", "mobile-phones", "cosmetics-and-skincare", "musical-instrument", "personal-care", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "81544fb8-6bd9-3dcf-ac5b-c3fdb51a0f65",
"name" : "Wish",
"category" : "apparel and accessories",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/wish_merchant.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AD4476",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/wish_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/wish_logo.webp",
"url" : "https://www.wish.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/wish_banner.webp",
"tasteMatchScore" : 85,
"distance" : 0.0
},
"offers" : [ {
"id" : "185113",
"name" : "Get 19% discount on your purchase at Wish",
"description" : "Get 19% discount on your purchase at Wish till 31-12-2023\nOnline offer",
"validFrom" : "2023-01-13T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "WISH2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/wish_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.9,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/i8fmujrk1yd193180536915730f414/?i=3&subid=testuser&subid1=AD4476&subid2=185113&subid3=crayon",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/wish_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "1.4",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "hardware", "perfumery", "automobile-and-accessories", "video-games", "cameras-and-accessories", "pet-and-pet-supplies", "health-and-beauty", "footwear-store", "toys-and-games", "home-appliances", "home-and-kitchen", "online", "home-furnishings", "kids-utilities", "kitchen-accessories", "kids-furniture", "computer-and-electronics", "tools-and-home-improvement", "basic-service", "hypermarket", "housewares", "kitchen-appliances", "home-improvement-supplies", "pet-supplies", "home-audio-and-accessories", "art-and-craft-supplies", "sporting-equipment", "sports-and-outdoors", "toys", "computer-and-accessories", "games", "gifts-and-souvenirs", "tobacco-products", "mobile-phones", "cosmetics-and-skincare", "personal-care" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "52122e47-b8c1-34cf-b16e-af11f5513aaf",
"name" : "Conrad Hotel",
"description" : "We're across the street from the World Trade Centre and a metro stop with links to Burj Khalifa, Museum of the Future, and Dubai Frame. Blending modern décor with local design, our rooms offer panoramic views of the Arabian Gulf and the Dubai Skyline. Enjoy our hidden pool oasis and spa, free shuttle to La Mer beach, plus six restaurants and bars.",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB169-ConradAbuDhabiEtihadTowers.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DP23",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB169-ConradAbuDhabiEtihadTowers.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB169_Conrad_Abu_Dhabi_Etihad_Towers_New_Logo.webp.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/BB169-ConradAbuDhabiEtihadTowers.webp.webp",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "81442",
"name" : "Get up to 15% off on your stay at Conrad Hotel, Istanbul",
"description" : "Get up to 15% off on your stay at Conrad Hotel, Istanbul untill 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81442_webp_Conrad_Hotel.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=Conrad-Istanbul-Bosphorus-1076297",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81442_webp_Conrad_Hotel.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "80521",
"name" : "Get up to 15% off on your stay at Conrad Hotel, Dubai",
"description" : "Get up to 15% off on your stay at Conrad Hotel, Dubai untill 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/80521_webp_Conrad_Hotel.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/profile/conrad-dubai-1199931/",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/80521_webp_Conrad_Hotel.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "81400",
"name" : "Get up to 15% off on your stay at Conrad Hotel, Cairo",
"description" : "Get up to 15% off on your stay at Conrad Hotel, Cairo till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1434-ConradCairo_New_Image.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=conrad-cairo-1147416",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : Sheikh Zayed Road, Dubai, United Arab Emirates ; Contact : 97144447444/conrad.dubai_reservations@conradhotels.com\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1434-ConradCairo_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "luxury-hotel", "backpacker", "business-traveller", "family-room", "room-service", "couple", "landmark-view", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "sofitel", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "07d3d92e-a0fb-3d22-881c-92426ea6b312",
"name" : "Intercontinental Heliopolis",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP175_Intercontinental_card.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DP175",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP175_Intercontinental_card.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/DP175_Intercontinental_heliopolis_logo.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/DP175_Intercontinenatal_Banner.webp",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "93434",
"name" : "Get up to 15% off on your stay at Intercontinental Heliopolis",
"description" : "Get up to 15% off on your stay at Intercontinental Heliopolis until 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/93434_intercontinental_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=intercontinental-cairo-semiramis-1014251",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.The offer is valid on bookings done on rehlat.ae website or app only \n4.Offer is not valid in conjunction with any other offer, discount, and special promotion\n5.Offer is valid for ADIB card users only\n6.Offer is subject to merchant approval and till stock is available\n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n *The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/93434_intercontinental_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "suite", "front-desk", "banquet-hall", "king-room", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "places-of-worship", "sauna", "free-toiletries", "luxury-hotel", "backpacker", "business-traveller", "bathrobe", "couple", "room-service", "disabled-friendly", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "luggage-storage", "tour-desk", "modern-design", "paid-parking", "desk", "mini-bar", "queen-room", "shuttle-service", "museum", "bar", "security", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "ihg" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "d7b88e08-6914-3a6c-aec5-b2e3c271b31a",
"name" : "Mandarin Oriental Jumeirah",
"description" : "With a pristine oceanfront setting, Mandarin Oriental Jumeira, Dubai is a stylish urban resort overlooking the clear blue waters of the Arabian Gulf and Dubai’s glittering skyline, which is dominated by Burj Khalifa, the tallest building in the world. The hotel's beachfront location and al fresco facilities are designed to bring a new level of relaxed luxury to the city.",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB843-MandarinOrientalDoha.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DP33",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB843-MandarinOrientalDoha.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB843_Mandarin_Oriental_Doha_New_Logo.webp.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/BB843-MandarinOrientalDoha.webp.webp",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "80524",
"name" : "Get up to 15% off on your stay at Mandarin Oriental Jumeirah",
"description" : "Get up to 15% off on your stay at Mandarin Oriental Jumeirah till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB843_Mandarin_Oriental_Doha.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=mandarin-oriental-jumeira-1159014",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : PO BOX 62092, Jumeirah Beach Road, Dubai, United Arab Emirates ; Contact : 97147772222/MODUB-RESERVATIONS@MOHG.COM\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB843_Mandarin_Oriental_Doha.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "front-desk", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "hot-tub", "wifi", "24-by-7-support", "sauna", "free-toiletries", "backpacker", "couple", "disabled-friendly", "concierge", "kids-and-family", "restaurant", "business-centre", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "security", "bar", "sofitel", "business-meeting", "swimming-pool", "fitness-centre", "large-group", "atm", "hotel", "suite", "banquet-hall", "king-room", "luxury-dining", "house-keeping", "spa", "luxury-hotel", "business-traveller", "family-room", "room-service", "bathrobe", "free-parking", "multilingual-staff", "photocopier", "parks-and-gardens", "currency-exchange", "laundry-service", "dry-cleaning", "shuttle-service", "free-internet", "air-conditioner", "hair-dryer", "large-beds" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "9baa2015-e7f4-3d11-9f35-840137ce6fb9",
"name" : "Palazzo Versace",
"description" : "Palazzo Versace is the world’s first fashion-branded hotel, born from the desire to combine the design and spirt of Versace with a highly luxurious hotel concept. Palazzo Versace offers an unforgettable experience in two of the world’s most desirable resort destinations: the Gold Coast of Australia and Dubai in the United Arab Emirates.",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/LL173_Enigma_Palazzo_Versace_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DP73",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/LL173_Enigma_Palazzo_Versace_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/LL173_Enigma_Palazzo_Versace_New_Logo.webp.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/LL173_Enigma_Palazzo_Versace_New_Banner.webp.webp",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "81382",
"name" : "Get up to 15% off on your stay at Palazzo Versace",
"description" : "Get up to 15% off on your stay at Palazzo Versace till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/LL173_Enigma_Palazzo_Versace_New_Offer.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=palazzo-versace-1537467",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : 94 Seaworld Dr, 4217, Main Beach, United Arab Emirates \n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/LL173_Enigma_Palazzo_Versace_New_Offer.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "front-desk", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "hot-tub", "wifi", "24-by-7-support", "sauna", "free-toiletries", "backpacker", "couple", "disabled-friendly", "concierge", "kids-and-family", "sea-view", "restaurant", "business-centre", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "security", "bar", "sofitel", "swimming-pool", "fitness-centre", "large-group", "atm", "hotel", "suite", "banquet-hall", "king-room", "luxury-dining", "house-keeping", "spa", "luxury-hotel", "business-traveller", "family-room", "room-service", "bathrobe", "free-parking", "multilingual-staff", "photocopier", "parks-and-gardens", "currency-exchange", "laundry-service", "dry-cleaning", "shuttle-service", "free-internet", "air-conditioner", "hair-dryer", "large-beds" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "a4c9957f-88db-3913-82c1-86c4ab845e90",
"name" : "Cakerush",
"description" : "CakeRush is an online cake delivery service that provides FREE same-day delivery within Klang Valley for orders placed before 3pm. It is the one-stop cake shop for Kuala Lumpur.",
"category" : "dining",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_4_CakeRush_merchant.webp",
"externalId" : "DP371",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_4_CakeRush_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_4_CakeRush_logo.webp",
"url" : "https://www.cakerush.my",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_4_CakeRush_Banner.webp",
"tasteMatchScore" : 70,
"totalViews" : 24,
"distance" : 0.0
},
"offers" : [ {
"id" : "216725",
"name" : "Get 10% off with no minimum spend with CakeRush when you pay with your Visa card",
"description" : "Get 10% off with no minimum spend with CakeRush when you pay with your Visa card till 30-09-2023\nOnline offer",
"validFrom" : "2022-12-01T00:00:00.389Z",
"validTo" : "2026-06-18T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "VISA10",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VSA_4_CakeRush_Offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.cakerush.my",
"termsAndConditions" : "1. The offer is valid till 30-09-2023\n2. The Merchant is the sole provider of all goods and/or services under this offer and solely responsible for this offer. \n3. Offer details as shown are based on information provided by the Merchant. \n4. Merchant reserves the right to update or modify any of the terms and conditions at any time. In the event of any updates or changes being made, the revised terms and conditions will be posted on Merchant's website at least 1 week before they take effect. \n5. Payment must be made with a valid Credit/ Debit/ Prepaid Visa card to enjoy the privilege. \n6. Privilege is valid for Visa cards issued in Malaysia and outside of Malaysia. \n7. The privilege cannot be exchanged for cash and not valid in conjunction with other promotion, discount or vouchers unless otherwise stated. \n8. No cash alternatives or refund will be offered in lieu of the discount. Privilege is valid in Malaysia and Philippines only.\n9. The offer is valid on: Visa Platinum, Visa Gold, Visa Classic, Visa Electron, Visa Infinite, Visa Signature, Visa Signature Preferred, Visa Traditional, Visa Traditional Rewards, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa, Infinite Business, Visa Infinite Privilege, Visa UHNW, Visa Gold Business, Visa Rewards\n10. To enjoy the privilege, payment must be made with valid Visa Credit/Debit/Prepaid card issued in Malaysia and outside of Malaysia during the stated campaign period. Promotion is subject to change. Promotion may alter or extended with notification on respective merchant's website. Other terms and conditions apply.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VSA_4_CakeRush_Offer.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Use valid VISA card as per terms and conditions to make the payment\n3. Apply the code at the checkout to avail the discount",
"currency" : "SGD",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "bakery", "casual-dining", "cafe", "delivery-services", "general" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "69ed5970-3b92-3761-89c6-fd154a7bc07b",
"name" : "Daily Mealz",
"description" : "Dailymealz Is a healthy food subscription app, delivers fresh, healthy and tasty meals to your office daily, with weekly or monthly subscriptions.",
"category" : "miscellaneous stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/dailymealz_merchant.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC31",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/dailymealz_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/dailymealz_logo.webp",
"url" : "https://dailymealz.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/dailymealz_banner.webp",
"tasteMatchScore" : 70,
"totalViews" : 1,
"distance" : 0.0
},
"offers" : [ {
"id" : "207358",
"name" : "Get extra 15% discount on your purchase at Daily Mealz",
"description" : "Get extra 15% discount on your purchase at Daily Mealz till 31-12-2023\nOnline offer",
"validFrom" : "2023-05-08T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "OM81",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/dailymealz_offer.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://dailymealz.com/",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/dailymealz_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "optimise media",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "11.5",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "online", "food-and-beverages", "food-products", "subscription-services", "food-delivery-services" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "c297c09f-e0ae-3111-b10d-727038bc3507",
"name" : "Jashanmal",
"category" : "miscellaneous stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/jashanmal_merchant.webp",
"externalId" : "BO2221",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/jashanmal_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/jashanmal_logo.webp",
"url" : "https://www.jashanmal.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/jashanmal_banner.webp",
"tasteMatchScore" : 70,
"distance" : 0.0
},
"offers" : [ {
"id" : "210496",
"name" : "Get 15% discount on your purchase at Jashanmal",
"description" : "Get 15% discount on your purchase at till 12-07-2023\nOnline offer",
"validFrom" : "2023-02-06T00:00:00.389Z",
"validTo" : "2026-07-12T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/jashanmal_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 2.0,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/4gwxonvp2od19318053662651c44e1/?i=8&subid=testuser&subid1=BO2221&subid2=210496&subid3=crayon",
"termsAndConditions" : "1.The offer is valid till 12-07-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/jashanmal_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "3.5",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "perfumery", "housewares", "kitchen-appliances", "furniture", "health-and-beauty", "online-and-in-store", "toys-and-games", "travel-utilities", "toys", "home-appliances", "home-and-kitchen", "home-furnishings", "kitchen-accessories", "cosmetics-and-skincare", "travel-accessories", "personal-care", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "16b4a89a-bd89-364f-afaf-9a747fb334ae",
"name" : "Life Pharmacy",
"category" : "personal service providers",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/AD4403_Life_Pharmacy_Card.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AD4403",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/AD4403_Life_Pharmacy_Card.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/AD4403_Life_Pharmacy_logo.webp",
"url" : "https://www.lifepharmacy.com/product/trister-blood-glucose-monitoring-system-25-test-strips-model-ts-375bg",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/AD4403_Life_pharmacy_banner.webp",
"tasteMatchScore" : 70,
"distance" : 0.0
},
"offers" : [ {
"id" : "98340",
"name" : "Get 20% off up to AED 30 on your first purchase at Life Pharmacy",
"description" : "Get 20% off up to AED 30 on your first purchase at Life Pharmacy until 31-12-2022\nOnline offer",
"validFrom" : "2022-07-01T00:00:00.389Z",
"validTo" : "2026-07-07T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "AD3N",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98340_Life_Pharmacy_Offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.lifepharmacy.com/product/trister-blood-glucose-monitoring-system-25-test-strips-model-ts-375bg?subid=testuser&subid1=AD4403&subid2=98340&subid3=crayon",
"termsAndConditions" : "1.The offer is valid upto 31-12-2022\n2.The offer is valid for Pharmacy only\n3.The categories/products which are excluded from this offer are: N/A\n4.The offer is valid on app & website purchases only\n5.The offer is applicable for new & repeat users\n6.Coupons are applicable for ADIB covered & debit card users only\n7.Coupon is applicable for online purchase above AED 100 only\n8.Accidental loss of coupon shall not be covered \n9.Coupons are not transferable \n10.Coupons cannot be replaced if lost.\n11.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n13.Coupon is applicable on first purchase only\n14.Coupon is applicable on brands: Muscle Core, Muscle Tech, Dymatize, Optimum Nutrition, Rule1, Cellucor, Pure Protein, Scivation, BSN, Nakd, Nutrabolics, Muscle Med, Trek, Balance Bar\n *The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98340_Life_Pharmacy_Offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "3.64",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "shopping-mall", "health-and-beauty", "regional", "cosmetics-and-skincare", "personal-care", "online-and-in-store", "pharmacy", "delivery-service", "nutritional-supplements", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
} ],
"created" : "2026-04-21T05:36:51.316276524Z"
}, {
"id" : "q4QzFRVvTAiMAlI0EYI19A",
"listName" : "Expiring Soon",
"listType" : "EXPIRING_SOON",
"totalCount" : 10,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "416c4b83-ea08-302f-a658-e6aff8cbd6a4",
"name" : "Sun & Sand Sports",
"category" : "apparel and accessories",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/sss_merchant.webp",
"distance" : 0.0,
"externalId" : "BE25788",
"totalViews" : 2,
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/sss_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/sss_logo.webp",
"tasteMatchScore" : 85,
"url" : "https://en-ae.sssports.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/sss_banner.webp"
},
"offers" : [ {
"id" : "207359",
"name" : "Get 20% discount up to 50 AED on orders above 100 AED at Sun & Sand Sports",
"description" : "Get 20% discount up to 50 AED on orders above 100 AED at Sun & Sand Sports till 30-04-2024\nOnline offer",
"validFrom" : "2023-05-20T00:00:00.389Z",
"validTo" : "2026-04-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB25",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/sss_offer.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://en-ae.sssports.com/",
"termsAndConditions" : "1.The offer is valid till 30-04-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Offer valid on entire site\n13.Coupon is applicable on discounted products\n14.Coupon valid for UAE only \n15.Coupon code will be applied on an order level\n16.Minimum cart value - AED 200\n17.Discount cap - AED 100 per user \n18.Coupon is applicable with Sun & Sand Sports eWallet payment \n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/sss_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "gmg",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "179488",
"name" : "Get 10% off upto AED 100 on your purchase above AED 100 at Sun & Sand Sports",
"description" : "Get 10% off upto AED 100 on your purchase above AED 100 at Sun & Sand Sports till 31-12-2023\nonline offer",
"validFrom" : "2023-02-23T00:00:00.389Z",
"validTo" : "2026-06-04T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "AD8",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/sun_sand_offer.webp",
"payoutType" : "cpa_percent",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://ar-sa.sssports.com/home?subid=testuser&subid1=BE25788&subid2=179488&subid3=crayon",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n12.Get 25%-50% discount on selected items\n13.Coupon code valid on orders above AED 100 with a discount capping of AED 100\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/sun_sand_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "premium", "other-styles", "golf-shoes", "sports-shoes", "running-shoes", "gym-wear", "tennis-shoes", "men-women-children-shoes", "indoor-sports-shoes", "cycling-apparel", "online-and-in-store", "footwear-store", "rubber-shoes", "yoga-wear", "basketball-shoes", "large-product-range", "flipflops", "international", "soccer-shoes-and-boots", "waterproof", "clothing-store", "active-and-sports-wear", "western-clothing", "men-women-children-clothing", "sneakers", "running-apparel", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "40ce542c-fc8c-3868-84db-7b49eb765927",
"name" : "Under Armour",
"category" : "apparel and accessories",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/UA_merchant.webp",
"dominantColorCode" : "#FFFFFF",
"distance" : 0.0,
"externalId" : "BO4876",
"totalViews" : 5,
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/UA_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/UA_logo.webp",
"tasteMatchScore" : 85,
"url" : "https://www.underarmour.ae/en/home",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/ua_banner.webp"
},
"offers" : [ {
"id" : "207360",
"name" : "Get 20% discount up to 50 AED on orders above 100 AED at Under Armour",
"description" : "Get 20% discount up to 50 AED on orders above 100 AED at Under Armour till 30-04-2024\nOnline offer",
"validFrom" : "2023-05-20T00:00:00.389Z",
"validTo" : "2026-04-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB25",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/ua_offer.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.underarmour.ae/en/home",
"termsAndConditions" : "1.The offer is valid till 30-04-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Offer valid on entire site\n13.Coupon is applicable on discounted products\n14.Coupon valid for UAE only \n15.Coupon code will be applied on an order level\n16.Minimum cart value - AED 200\n17.Discount cap - AED 100 per user \n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/ua_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "gmg",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "37456",
"name" : "Get 25% off on your purchases at Under Armour",
"description" : "Get 25% off on your purchases at Under Armour untill 31-12-2022\nOnline offer",
"validFrom" : "2022-07-20T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "UR01",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/37456_webp_Under_Armour.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 10.0,
"offerStatus" : "active",
"url" : "https://www.underarmour.ae/en/home",
"termsAndConditions" : "1. The offer is valid upto 31-12-2022\n2. The offer is valid for 'Fashion & Accessories', ' Online Services', 'Sports' only\n3. The offer is applicable for app & website purchases only\n4. The offer is valid on new users only\n5. The offer is applicable for ADIB card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/37456_webp_Under_Armour.webp",
"offerType" : "offline coupon",
"offerSource" : "DCM",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "12.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "golf-shoes", "sports-shoes", "running-shoes", "jackets-and-blazers", "outerwear", "men-women-children-shoes", "daily-clothing", "online-and-in-store", "footwear-store", "yoga-wear", "basketball-shoes", "casual-wear", "hiking-shoes", "casual-shoes", "clothing-store", "inner-wear-and-lingerie", "active-and-sports-wear", "men-women-children-clothing", "t-shirts" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "8ff73b11-d2b7-3c91-af97-0ea116dc1e93",
"name" : "United Designer",
"category" : "apparel and accessories",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/united_designer_merchant.webp",
"distance" : 0.0,
"externalId" : "DC1103",
"totalViews" : 1,
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/united_designer_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/united_designer_logo.webp",
"tasteMatchScore" : 85,
"url" : "https://uniteddesigners.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/united_designer_banner.webp"
},
"offers" : [ {
"id" : "183371",
"name" : "Get up to 10% off on your purchase at United Designer",
"description" : "Get up to 10% off on your purchase at United Designer till 30-04-2023\nOnline offer",
"validFrom" : "2023-03-09T00:00:00.389Z",
"validTo" : "2026-04-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "UN22",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/united_designer_offer.webp",
"payoutType" : "cpa_percent",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://uniteddesigners.ae/",
"termsAndConditions" : "1.The offer is valid till 30-04-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/united_designer_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "DCM",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "necklaces", "other-styles", "wallets", "middle-east-clothing", "jackets-and-blazers", "outerwear", "casual-bags", "daily-clothing", "fashion-jewellery", "loungewear", "party-wear", "specialty-wear", "swim-and-beach-wear", "women's-clothing", "dresses", "jewellery-store", "accessories-store", "coats", "clothing-store", "satchels-and-shoulder-bags", "basic-service", "winter-wear", "formal-wear", "bangles", "bracelets", "fine-jewellery", "regional", "online-and-in-store", "others", "large-product-range", "bags-and-wallets", "gowns", "pants", "occasional-clothing", "boutique-store", "casual-wear", "active-and-sports-wear", "western-clothing", "shirts", "religious-wear" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "470f460a-bce4-31b2-87f1-33d02c317212",
"name" : "Dukes The Palm A Royal Hideaway Hotel",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Dukes_The_Palm_A_Royal_Hideaway_Hotel_Merchant.webp",
"dominantColorCode" : "#FFFFFF",
"distance" : 0.0,
"externalId" : "BB253",
"totalViews" : 4,
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Dukes_The_Palm_A_Royal_Hideaway_Hotel_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Dukes_The_Palm_A_Royal_Hideaway_Hotel_Logo.webp",
"tasteMatchScore" : 84,
"url" : "https://www.barcelo.com/en-ww/dukes-the-palm-royal-hideaway/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Dukes_The_Palm_A_Royal_Hideaway_Hotel_Banner.webp"
},
"offers" : [ {
"id" : "213419",
"name" : "Get 26% off on 1 night stay at Deluxe Room at Dukes The Palm, A Royal Hideaway Hotel from dnata Travel, Abu Dhabi",
"description" : "Get 26% off on 1 night stay at Deluxe Room at Dukes The Palm, A Royal Hideaway Hotel from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Dukes_The_Palm_A_Royal_Hideaway_Hotel_Offer.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Dukes_The_Palm,_A_Royal_Hideaway_Hotel",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Half Board meal plan\n9.Get savings on stay\n10.Offer stay is valid till 30-06-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Dukes_The_Palm_A_Royal_Hideaway_Hotel_Offer.webp",
"offerType" : "card linked",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "non-smoking-room", "tv", "5-star", "house-keeping", "spa", "24-by-7-support", "resort", "free-toiletries", "backpacker", "business-traveller", "family-room", "bathrobe", "room-service", "couple", "disabled-friendly", "nature-and-wildlife", "free-parking", "concierge", "public-transport", "multilingual-staff", "kids-and-family", "currency-exchange", "water-and-amusement-park", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "tour-desk", "modern-design", "kitchenette", "soundproof-room", "microwave", "security", "bar", "swimming-pool", "fitness-centre", "babysitting", "large-group", "atm", "refrigerator", "air-conditioner", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "33ebc54b-6457-3a77-a5e1-475faf1ee41e",
"name" : "Make My Trip",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/mmt_merchant.webp",
"distance" : 0.0,
"externalId" : "BE14766",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/mmt_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/mmt_logo.webp",
"tasteMatchScore" : 84,
"url" : "https://www.makemytrip.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/mmt_banner.webp"
},
"offers" : [ {
"id" : "180946",
"name" : "Get 20% off on your hotel bookings at Make My Trip",
"description" : "Get 20% off on your hotel bookings at Make My Trip till 30-04-2023\nOnline offer",
"validFrom" : "2023-03-21T00:00:00.389Z",
"validTo" : "2026-04-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "MMTADIB",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/mmt_offer.webp",
"payoutType" : "cpa_percent",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.makemytrip.com/promos/gcc-adib-offer-071022.html/?region=AE&ccde=AE",
"termsAndConditions" : "1.The offer is valid till 30-04-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on website and app\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n12.Get 10% off up to AED 200 & 10% cashback in MMT wallet up to AED 200 on hotel bookings\n13.Offer valid on select hotels and on a minimum transaction value of AED 300 for hotel bookings\n14.Offer can be used once per user per quarter\n15.Wallet validity will be 60 days\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/mmt_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "loyolink",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "180947",
"name" : "Get 20% off on your flight bookings at Make My Trip",
"description" : "Get 20% off on your flight bookings at Make My Trip till 30-04-2023\nOnline offer",
"validFrom" : "2023-03-21T00:00:00.389Z",
"validTo" : "2026-04-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "MMTADIB",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/mmt_flight_offer.webp",
"payoutType" : "cpa_percent",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.makemytrip.com/promos/gcc-adib-offer-071022.html/?region=AE&ccde=AE",
"termsAndConditions" : "1.The offer is valid till 30-04-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on website and app\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n12.Get10% off up to AED 50 & 10% cashback in MMT wallet up to AED 50 on flight bookings\n13.Offer can be used once per user per quarter\n14.Wallet validity will be 60 days\n15.No min transaction value for flight bookings\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/mmt_flight_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "loyolink",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213372",
"name" : "Get 20% off on your flight bookings at Make My Trip",
"description" : "Get 20% off on your flight bookings at Make My Trip till 31-07-2023\nOnline offer",
"validFrom" : "2023-06-11T00:00:00.389Z",
"validTo" : "2026-07-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "MMTADIB",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/mmt_flight_offer.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.makemytrip.com/flights/",
"termsAndConditions" : "1.The offer is valid till 31-07-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on website and app\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n12.Get10% off up to AED 50 & 10% cashback in MMT wallet up to AED 50 on flight bookings\n13.Offer can be used once per user per quarter\n14.Wallet validity will be 60 days\n15.No min transaction value for flight bookings\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/mmt_flight_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "make my trip",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213371",
"name" : "Get 20% off on your hotel bookings at Make My Trip",
"description" : "Get 20% off on your hotel bookings at Make My Trip till 31-07-2023\nOnline offer",
"validFrom" : "2023-06-11T00:00:00.389Z",
"validTo" : "2026-07-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "MMTADIB",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/mmt_offer.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.makemytrip.com/",
"termsAndConditions" : "1.The offer is valid till 31-07-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on website and app\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n12.Get 10% off up to AED 200 & 10% cashback in MMT wallet up to AED 200 on hotel bookings\n13.Offer valid on select hotels and on a minimum transaction value of AED 300 for hotel bookings\n14.Offer can be used once per user per quarter\n15.Wallet validity will be 60 days\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/mmt_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "make my trip",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "120325",
"name" : "Get up to 20% off on hotel and flight bookings at Make My Trip",
"description" : "Get up to 20% off on hotel and flight bookings at Make My Trip till 31-10-2022\nOnline offer",
"validFrom" : "2022-10-01T00:00:00.389Z",
"validTo" : "2026-10-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "MMTADIB",
"image" : "https://dpimages.crayondata.com/high-res-image/20092022/MMT_Offer_Image_New.webp",
"payoutType" : "cpa_percent",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.makemytrip.com/?ccde=ae&cmp=SEM|D|GCCDF|G|Brand|B_M_Makemytrip_Variants|Brand-Variants-Exact|Expanded|Regular|V2|434491663915&s_kwcid=AL!1631!3!434491663915!e!!g!!make%20my%20trip%20uae&gclid=CjwKCAjwpqCZBhAbEiwAa7pXeb6CPdCA1wLPHV06qQ3UcpfU38MF_6VkSODywWUwwCYQuNCzjXQggxoCVkwQAvD_BwE",
"termsAndConditions" : "1.The offer is valid till 31-10-2022\n2.The offer gives 10% off up to AED 100 & 10% cashback in MakeMyTrip wallet up to AED 100 / Minimum transaction is AED 400 on hotel bookings\n3.The offer gives 10% off up to AED 50 & 10% cashback in MakeMyTrip wallet up to AED 50 on flight booking \n4.The offer is valid on app & website purchases only\n5.The offer is applicable for new & repeat users\n6.Offer can be used once during the campaign period \n7.Wallet validity will be 30 days\n8.Hotel offer is not applicable on payment mode pay at hotel\n9.Hotel offer is applicable only on selected hotels \n10.Coupons are applicable for ADIB card users only\n11.Coupon is applicable for online purchase only\n12.Accidental loss of coupon shall not be covered\n13.Coupons are not transferable\n14.Coupons cannot be replaced if lost.\n15.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n16.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/20092022/MMT_Offer_Image_New.webp",
"offerType" : "offline coupon",
"offerSource" : "mmt",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "online", "travel-agencies-and-operators", "tour-operator", "international", "average-pricing", "air-ticket-booking", "cruises-packages", "hotel-booking" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "0fc89781-3413-317b-a9bd-54976725f319",
"name" : "Sofitel Abu Dhabi Corniche",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Abu_Dhabi_Corniche_Merchant.webp",
"distance" : 0.0,
"externalId" : "DT10",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Abu_Dhabi_Corniche_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Abu_Dhabi_Corniche_Logo.webp",
"tasteMatchScore" : 84,
"url" : "https://www.sofitelabudhabicorniche.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Abu_Dhabi_Corniche_Banner.webp"
},
"offers" : [ {
"id" : "213413",
"name" : "Get 20% off on 1 night stay at Superior Room at Sofitel Abu Dhabi Corniche from dnata Travel, Abu Dhabi",
"description" : "Get 20% off on 1 night stay at Superior Room at Sofitel Abu Dhabi Corniche from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Sofitel_Abu_Dhabi_Corniche_Offer.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Sofitel_Abu_Dhabi_Corniche",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get savings on stay\n10.Offer stay is valid till 31-07-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Sofitel_Abu_Dhabi_Corniche_Offer.webp",
"offerType" : "card linked",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "front-desk", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "house-keeping", "hot-tub", "spa", "24-by-7-support", "steam-room", "sauna", "free-toiletries", "places-of-worship", "luxury-hotel", "family-room", "bathrobe", "room-service", "couple", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "currency-exchange", "sea-view", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "luggage-storage", "airport-transportation", "tour-desk", "airport", "desk", "mini-bar", "shuttle-service", "bar", "business-meeting", "security", "swimming-pool", "fitness-centre", "sofitel", "large-group", "atm", "free-internet", "air-conditioner", "heater", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "d2eea428-6e9b-3ebc-8fbd-f723b587ac35",
"name" : "Sofitel Dubai Jumeirah Beach",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Dubai_Jumeirah_Beach_Merchant.webp",
"dominantColorCode" : "#FFFFFF",
"distance" : 0.0,
"externalId" : "BB1217",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Dubai_Jumeirah_Beach_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Dubai_Jumeirah_Beach_Logo.webp",
"tasteMatchScore" : 84,
"url" : "https://www.sofitel-dubai-jumeirahbeach.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Dubai_Jumeirah_Beach_Banner.webp"
},
"offers" : [ {
"id" : "213408",
"name" : "Get 23% off on 1 night stay at Superior Room at Sofitel Dubai Jumeirah Beach from dnata Travel, Abu Dhabi",
"description" : "Get 23% off on 1 night stay at Superior Room at Sofitel Dubai Jumeirah Beach from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Sofitel_Dubai_Jumeirah_Beach_Offer.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Sofitel_Dubai_Jumeirah_Beach",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Half Board meal plan and One child up to 11 years stays and eats free\n9.Get 40% savings on stay\n10.Offer stay is valid till 05-07-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Sofitel_Dubai_Jumeirah_Beach_Offer.webp",
"offerType" : "card linked",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "marine-life", "front-desk", "banquet-hall", "suite", "king-room", "shopping-outlets", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "spa", "24-by-7-support", "places-of-worship", "sauna", "free-toiletries", "family-room", "bathrobe", "room-service", "couple", "disabled-friendly", "free-parking", "concierge", "public-transport", "multilingual-staff", "photocopier", "beachfront", "currency-exchange", "water-and-amusement-park", "sea-view", "laundry-service", "restaurant", "business-centre", "dry-cleaning", "luggage-storage", "airport", "tour-desk", "desk", "pool-bar", "mini-bar", "bar", "business-meeting", "security", "sofitel", "swimming-pool", "fitness-centre", "atm", "free-internet", "air-conditioner", "hair-dryer", "beach" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "f4f9e4ec-4f62-31c9-bd0c-0067e4240eb9",
"name" : "Taj Exotica Resort & Spa",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Taj_Exotica_Resort_&_Spa_The_Palm_Dubai_Merchant.webp",
"dominantColorCode" : "#FFFFFF",
"distance" : 0.0,
"externalId" : "BB1270",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Taj_Exotica_Resort_&_Spa_The_Palm_Dubai_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Taj_Exotica_Resort_&_Spa_The_Palm_Dubai_Logo.webp",
"tasteMatchScore" : 84,
"url" : "https://www.tajhotels.com/en-in/taj/taj-exotica-dubai/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Taj_Exotica_Resort_&_Spa_The_Palm_Dubai_Banner.webp"
},
"offers" : [ {
"id" : "213403",
"name" : "Get 20% off on 1 night stay at Luxury Room at Taj Exotica Resort & Spa, The Palm Dubai from dnata Travel, Abu Dhabi",
"description" : "Get 20% off on 1 night stay at Luxury Room at Taj Exotica Resort & Spa, The Palm Dubai from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Taj_Exotica_Resort_&_Spa_The_Palm_Dubai_Offer.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Taj_Exotica_Resort_&_Spa,_The_Palm_Dubai",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Half Board meal plan and Two child up to 11 years stays and eats free\n9.Offer stay is valid till 31-07-2023\n10.Get free upgrade to half board\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Taj_Exotica_Resort_&_Spa_The_Palm_Dubai_Offer.webp",
"offerType" : "card linked",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "front-desk", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "night-club", "hot-tub", "24-by-7-support", "sauna", "free-toiletries", "disabled-friendly", "public-transport", "kids-and-family", "sea-view", "restaurant", "business-centre", "airport", "luggage-storage", "airport-transportation", "gaming-area", "desk", "fishing", "mini-bar", "museum", "bar", "business-meeting", "security", "fitness-centre", "allergy-free-room", "taj-hotels", "beach", "suite", "banquet-hall", "king-room", "sun-terrace", "dance-floor", "house-keeping", "country-design", "spa", "private-beach", "villa", "family-room", "room-service", "nature-and-wildlife", "multilingual-staff", "photocopier", "garden", "parks-and-gardens", "beachfront", "currency-exchange", "laundry-service", "dry-cleaning", "kitchenette", "shuttle-service", "private-attached-pool", "free-internet", "air-conditioner", "hair-dryer", "infinity-pool" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "a51d744c-888f-3276-a088-4777a7bc1655",
"name" : "Lapita Dubai Parks And Resorts Autograph Collection",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Lapita_Dubai_Parks_and_Resorts_Autograph_Collection_Merchant.webp",
"distance" : 0.0,
"externalId" : "DT7",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Lapita_Dubai_Parks_and_Resorts_Autograph_Collection_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Lapita_Dubai_Parks_and_Resorts_Autograph_Collection_Logo.webp",
"tasteMatchScore" : 84,
"url" : "https://www.marriott.com/en-us/hotels/dxbak-lapita-dubai-parks-and-resorts-autograph-collection/overview/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Lapita_Dubai_Parks_and_Resorts_Autograph_Collection_Banner.webp"
},
"offers" : [ {
"id" : "213405",
"name" : "Get 23% off on 1 night stay at Deluxe Resort View Room at Lapita, Dubai Parks and Resorts, Autograph Collection from dnata Travel, Abu Dhabi",
"description" : "Get 23% off on 1 night stay at Deluxe Resort View Room at Lapita, Dubai Parks and Resorts, Autograph Collection from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Lapita_Dubai_Parks_and_Resorts_Autograph_Collection_Offer.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Lapita_Dubai_Parks_and_Resorts_Autograph_Collection",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Half Board meal plan and One child up to 11 years stays and eats free\n9.Offer stay is valid till 31-07-2023\n10.Get free park access\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Lapita_Dubai_Parks_and_Resorts_Autograph_Collection_Offer.webp",
"offerType" : "card linked",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "non-smoking-room", "tv", "landmark", "house-keeping", "marriott", "spa", "24-by-7-support", "sauna", "resort", "free-toiletries", "backpacker", "business-traveller", "family-room", "room-service", "bathrobe", "couple", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "river-view", "photocopier", "kids-and-family", "garden", "parks-and-gardens", "currency-exchange", "water-and-amusement-park", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "luggage-storage", "tour-desk", "modern-design", "mini-bar", "eat-outs", "security", "bar", "swimming-pool", "fitness-centre", "large-group", "refrigerator", "free-internet", "air-conditioner", "atm", "hair-dryer", "4-star" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "e28890e7-53df-39c9-a85e-027b90f9d5f8",
"name" : "The St. Regis Abu Dhabi",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/The_St._Regis_Abu_Dhabi_Merchant.webp",
"distance" : 0.0,
"externalId" : "DT173",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/The_St._Regis_Abu_Dhabi_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/The_St._Regis_Abu_Dhabi_Logo.webp",
"tasteMatchScore" : 84,
"url" : "https://www.marriott.com/en-us/hotels/auhrx-the-st-regis-abu-dhabi/overview/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/The_St._Regis_Abu_Dhabi_Banner.webp"
},
"offers" : [ {
"id" : "213415",
"name" : "Get 21% off on 1 night stay at Superior Room at The St. Regis Abu Dhabi from dnata Travel, Abu Dhabi",
"description" : "Get 21% off on 1 night stay at Superior Room at The St. Regis Abu Dhabi from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/The_St._Regis_Abu_Dhabi_Offer.webp",
"payoutType" : "cpa_percentage",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=The_St_Regis_Abu_Dhabi",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan and One child up to 11 years stays and eats free\n9.Get 30% savings on stay\n10.Offer stay is valid till 31-07-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/The_St._Regis_Abu_Dhabi_Offer.webp",
"offerType" : "card linked",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "breakfast-included", "tv", "designated-smoking-area", "5-star", "house-keeping", "spa", "sauna", "free-toiletries", "bathrobe", "room-service", "couple", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "garden", "beachfront", "currency-exchange", "sea-view", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "luggage-storage", "desk", "mini-bar", "eat-outs", "microwave", "security", "bar", "swimming-pool", "fitness-centre", "babysitting", "st-regis", "refrigerator", "heater", "free-internet", "atm", "hair-dryer", "beach" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
} ],
"created" : "2026-04-21T05:36:51.504759431Z"
}, {
"id" : "9Kt5hIBvTiG5tvQUidtS2Q",
"listName" : "More in Sightseeing",
"listType" : "USER_PREFERRED_CATEGORY",
"totalCount" : 10,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "ee3b80e0-c5b4-35c4-afba-dae73d4ccb20",
"name" : "Dar Al Iman InterContinental Hotel",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB747_Intercontinental_Madinah_Dar_Al_Iman.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DP53",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB747_Intercontinental_Madinah_Dar_Al_Iman.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB747_Intercontinental_Madinah_Dar_Al_Iman_New_Logo.webp.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/BB747-IntercontinentalMadinahDarAlIman.webp.webp",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "81432",
"name" : "Get up to 15% off on your stay at Dar Al iman intercontinental hotel",
"description" : "Get up to 15% off on your stay at Dar Al iman intercontinental hotel till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB747-IntercontinentalMadinahDarAlIman.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=dar-al-iman-intercontinental-1553342",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : 2657-Badaah, Unit No:10, Al Madinah Al Munawarah, 42311-3910Badaah, Medina, Saudi Arabia ; Contact : reservations.icdaraliman@ihg.com\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB747-IntercontinentalMadinahDarAlIman.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "backpacker", "business-traveller", "family-room", "room-service", "bathrobe", "couple", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "sofitel", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "d2a10ea2-fbe7-3ac7-9a92-908ed5d9afca",
"name" : "Four Seasons",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP190_Fourseasons_Card.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DP190",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP190_Fourseasons_Card.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/DP190_Fourseasons_logo.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/DP190_Fourseasons_Banner.webp",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "98303",
"name" : "Get up to 15% off on your stay at Four Seasons, Istanbul",
"description" : "Get up to 15% off on your stay at Four Seasons, Istanbul until 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98303_Fourseason_Offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=Four-Seasons-Hotel-Istanbul-At-The-Bosphorus-1116402",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.The offer is valid on bookings done on rehlat.ae website or app only \n4.Offer is not valid in conjunction with any other offer, discount, and special promotion\n5.Offer is valid for ADIB card users only\n6.Offer is subject to merchant approval and till stock is available\n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n *The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98303_Fourseason_Offer.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "98320",
"name" : "Get up to 15% off on your stay at Four Seasons, Cairo",
"description" : "Get up to 15% off on your stay at Four Seasons, Cairo until 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98320_Fourseasons_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=four-seasons-hotel-cairo-at-nile-plaza-1370950",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.The offer is valid on bookings done on rehlat.ae website or app only \n4.Offer is not valid in conjunction with any other offer, discount, and special promotion\n5.Offer is valid for ADIB card users only\n6.Offer is subject to merchant approval and till stock is available\n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n *The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98320_Fourseasons_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "98318",
"name" : "Get up to 15% off on your stay at Four Seasons, Dubai",
"description" : "Get up to 15% off on your stay at Four Seasons, Dubai until 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98318_Fourseason_Offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=four-seasons-resort-dubai-at-jumeirah-beach-1516899",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.The offer is valid on bookings done on rehlat.ae website or app only \n4.Offer is not valid in conjunction with any other offer, discount, and special promotion\n5.Offer is valid for ADIB card users only\n6.Offer is subject to merchant approval and till stock is available\n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n *The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98318_Fourseason_Offer.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "98295",
"name" : "Get up to 15% off on your stay at Four Seasons, Baku",
"description" : "Get up to 15% off on your stay at Four Seasons, Baku until 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98295_Fourseason_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=four-seasons-hotel-baku-1164310",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.The offer is valid on bookings done on rehlat.ae website or app only \n4.Offer is not valid in conjunction with any other offer, discount, and special promotion\n5.Offer is valid for ADIB card users only\n6.Offer is subject to merchant approval and till stock is available\n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n *The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98295_Fourseason_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "98325",
"name" : "Get up to 15% off on your stay at Four Seasons, Kuwait City",
"description" : "Get up to 15% off on your stay at Four Seasons, Kuwait City until 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98325_Fourseasons_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=four-seasons-hotel-kuwait-at-burj-alshaya-1067965",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.The offer is valid on bookings done on rehlat.ae website or app only \n4.Offer is not valid in conjunction with any other offer, discount, and special promotion\n5.Offer is valid for ADIB card users only\n6.Offer is subject to merchant approval and till stock is available\n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n *The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98325_Fourseasons_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "98298",
"name" : "Get up to 15% off on your stay at Four Seasons, Saudi Arabia",
"description" : "Get up to 15% off on your stay at Four Seasons, Saudi Arabia until 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98298_Fourseasons_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=four-seasons-riyadh-at-kingdom-centre-1526635",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.The offer is valid on bookings done on rehlat.ae website or app only \n4.Offer is not valid in conjunction with any other offer, discount, and special promotion\n5.Offer is valid for ADIB card users only\n6.Offer is subject to merchant approval and till stock is available\n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n *The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98298_Fourseasons_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "suite", "front-desk", "shopping-outlets", "banquet-hall", "king-room", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "luxury-hotel", "backpacker", "business-traveller", "family-room", "couple", "room-service", "bathrobe", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "luggage-storage", "airport-transportation", "modern-design", "desk", "four-seasons", "mini-bar", "museum", "security", "swimming-pool", "fitness-centre", "allergy-free-room", "large-group", "babysitting", "refrigerator", "free-internet", "heater", "atm", "hair-dryer", "air-conditioner", "large-beds" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "6b958e40-7d36-31e5-8f44-5102d57dacd5",
"name" : "Hilton Hotel",
"description" : "Rehlat.ae - Be it a vacation, staycation or business trip, find a hotel that suits your occasion, budget & requirements! Rehlat - Your one-stop-shop for travel booking!",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP59_webp_Hilton_Hotel_card.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DP59",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP59_webp_Hilton_Hotel_card.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/DP59_webp_DP59_webp_Hilton_Hotel_card_Logo.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/DP59_webp_Hilton_Hotel_banner.webp",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "81436",
"name" : "Get up to 15% off on your stay at Hilton Hotel, Turkey",
"description" : "Get up to 15% off on your stay at Hilton Hotel, Turkey untill 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81436_webp_Hilton_Hotel.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=hilton-istanbul-bosphorus-hotel-1321482",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81436_webp_Hilton_Hotel.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "81420",
"name" : "Get up to 15% off on your stay at Hilton Hotel, Baku",
"description" : "Get up to 15% off on your stay at Hilton Hotel, Baku untill 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81420_webp_Hilton_Hotel.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=hilton-baku-1161920",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81420_webp_Hilton_Hotel.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "81392",
"name" : "Get up to 15% off on your stay at Hilton Hotel, London",
"description" : "Get up to 15% off on your stay at Hilton Hotel, London untill 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81392_webp_Hilton_Hotel.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=london-hilton-on-park-lane-1155588",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81392_webp_Hilton_Hotel.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "81408",
"name" : "Get up to 15% off on your stay at Hilton Hotel, Cairo",
"description" : "Get up to 15% off on your stay at Hilton Hotel, Cairo till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB394-HiltonCairoHeliopolisHotel.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=hilton-cairo-heliopolis-hotel-1301167",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : 22 Park Lane, W1K 1BE, London, United Kingdom \n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB394-HiltonCairoHeliopolisHotel.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "81426",
"name" : "Get up to 15% off on your stay at Hilton Hotel, Riyadh",
"description" : "Get up to 15% off on your stay at Hilton Hotel, Riyadh untill 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81426_webp_Hilton_Hotel.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=hilton-riyadh-hotel--residences-1211134",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81426_webp_Hilton_Hotel.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "luxury-hotel", "backpacker", "business-traveller", "family-room", "room-service", "bathrobe", "couple", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "pet-friendly", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel", "hilton" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "b501dedb-6992-3c59-b842-e39ca05e9f55",
"name" : "Hotel NH Collection Milano President",
"description" : "NH Collection Milano President is a five-star hotel conveniently located in the center of Milan, within easy walking distance to main shopping areas and the Duomo cathedral.",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB933_Nh_Collection_Milano_President.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DP71",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB933_Nh_Collection_Milano_President.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB933_Nh_Collection_Milano_President_New_Logo.webp.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/BB933-NhCollectionMilanoPresident.webp.webp",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "81444",
"name" : "Get up to 15% off on your stay at Hotel NH Collection Milano President",
"description" : "Get up to 15% off on your stay at Hotel NH Collection Milano President till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB933-NhCollectionMilanoPresident.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=NH-Collection-Milano-President-1356642",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : Largo Augusto 10, Milan, Italy ; Contact : nhcollectionpresident@nh-hotels.com\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB933-NhCollectionMilanoPresident.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "luxury-hotel", "backpacker", "business-traveller", "family-room", "room-service", "couple", "landmark-view", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "sofitel", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "6d04561a-8762-3149-950f-21cc0e33fbea",
"name" : "Hyatt Hotel",
"description" : "Steeped in authentic British charm, five star luxury hotel, Hyatt Regency London - The Churchill, offers a sophisticated stay in Marylebone. The hotel overlooks Portman Square and is ideally located near Hyde Park, Marble Arch as well as buzzing Oxford Street. Designed to honor Sir Winston Churchill, the hotel features bespoke tailoring, refined décor, and subtle nods to his life and legacy. ",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP64_webp_Hyatt_Hotel_card.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DP64",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP64_webp_Hyatt_Hotel_card.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/DP64_webp_DP64_webp_Hyatt_Hotel_card_Logo.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/DP64_webp_Hyatt_Hotel_banner.webp",
"tasteMatchScore" : 84,
"totalViews" : 1,
"distance" : 0.0
},
"offers" : [ {
"id" : "81437",
"name" : "Get up to 15% off on your stay at Hyatt Hotel, London",
"description" : "Get up to 15% off on your stay at Hyatt Hotel, London till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1018-ParkHyattDubai.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=hyatt-regency-london-the-churchill-1310536",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : Via Tommaso Grossi 1, Milan, Italy ; Contact : milan.park@hyatt.com\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1018-ParkHyattDubai.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "81397",
"name" : "Get up to 15% off on your stay at Hyatt Hotel, Istanbul",
"description" : "Get up to 15% off on your stay at Hyatt Hotel, Istanbul untill 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81397_webp_Hyatt_Hotel.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=park-hyatt-istanbul-macka-palas-boutique-class-1425499",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81397_webp_Hyatt_Hotel.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "81425",
"name" : "Get up to 15% off on your stay at Hyatt Hotel, Riyadh",
"description" : "Get up to 15% off on your stay at Hyatt Hotel, Riyadh untill 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81425_webp_Hyatt_Hotel.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=hotel-hyatt-regency-riyadh-olaya-1538223",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81425_webp_Hyatt_Hotel.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "81443",
"name" : "Get up to 15% off on your stay at Hyatt Hotel, Milan",
"description" : "Get up to 15% off on your stay at Hyatt Hotel, Milan untill 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81443_webp_Hyatt_Hotel.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=Park-Hyatt-Milan-1339220",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81443_webp_Hyatt_Hotel.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "81417",
"name" : "Get up to 15% off on your stay at Hyatt Hotel, Kuwait",
"description" : "Get up to 15% off on your stay at Hyatt Hotel, Kuwait untill 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81417_webp_Hyatt_Hotel.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=hyatt-regency-al-kout-mall-1584207",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/81417_webp_Hyatt_Hotel.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "international", "backpacker", "business-traveller", "family-room", "room-service", "bathrobe", "couple", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "sofitel", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "acb5bdda-3c1d-38c8-89ef-16ffe34e9f51",
"name" : "Shaza Al Madinah Hotel",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1467_1_Shaza_Madinah_Hotel.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DP82",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1467_1_Shaza_Madinah_Hotel.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB1467_Shaza_Madinah_Hotel_New_Logo.webp.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/BB1467-ShazaMadinahHotel.webp.webp",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "81434",
"name" : "Get up to 15% off on your stay at Shaza Al Madinah Hotel",
"description" : "Get up to 15% off on your stay at Shaza Al Madinah Hotel till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1467-ShazaMadinahHotel_New_Image.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=shaza-al-madina-hotel-1550792",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : 21452, Medina, Saudi Arabia \n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1467-ShazaMadinahHotel_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "front-desk", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "hot-tub", "24-by-7-support", "sauna", "free-toiletries", "backpacker", "couple", "disabled-friendly", "concierge", "kids-and-family", "restaurant", "business-centre", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "security", "bar", "sofitel", "swimming-pool", "fitness-centre", "large-group", "atm", "hotel", "suite", "banquet-hall", "king-room", "salon", "house-keeping", "spa", "buffet", "mediterraneancuisine", "business-traveller", "family-room", "room-service", "bathrobe", "free-parking", "multilingual-staff", "photocopier", "parks-and-gardens", "currency-exchange", "laundry-service", "dry-cleaning", "continental-cuisine", "shuttle-service", "free-internet", "air-conditioner", "hair-dryer", "large-beds" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "62927578-73f8-30ff-9e1f-4270d0e81f86",
"name" : "Sheraton Grand London Park Lane",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1468_Sheraton_Grand_London_Park_Lane.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DP84",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1468_Sheraton_Grand_London_Park_Lane.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB1468_Sheraton_Grand_London_Park_Lane_New_Logo.webp.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/BB1468-SheratonGrandLondonParkLane.webp.webp",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "81394",
"name" : "Get up to 15% off on your stay at Sheraton Grand London Park Lane",
"description" : "Get up to 15% off on your stay at Sheraton Grand London Park Lane till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1468-SheratonGrandLondonParkLane.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=sheraton-grand-london-park-lane-1512740",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : W1J 7BX, London, United Kingdom\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1468-SheratonGrandLondonParkLane.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "backpacker", "business-traveller", "family-room", "room-service", "bathrobe", "couple", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "ballroom", "shuttle-service", "security", "sofitel", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "eaf0ba64-d202-3ce8-81af-1367e4a95315",
"name" : "Swissotel",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1267_Swissotel_The_Bosphorus_Istanbul_Merchant_Card_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DP85",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1267_Swissotel_The_Bosphorus_Istanbul_Merchant_Card_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB1267_Swissotel_The_Bosphorus_Istanbul_New_Logo.webp.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/BB1267-SwissotelTheBosphorusIstanbul.webp.webp",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "81441",
"name" : "Get up to 15% off on your stay at Swissotel",
"description" : "Get up to 15% off on your stay at Swissotel till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1267-SwissotelTheBosphorusIstanbul.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=Swissotel-The-Bosphorus-Istanbul-Hotel-1560333",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : 34357, Istanbul, Turkey ; Contact : ISTANBUL@SWISSOTEL.COM\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1267-SwissotelTheBosphorusIstanbul.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "swissotel", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "luxury-hotel", "backpacker", "business-traveller", "family-room", "room-service", "bathrobe", "couple", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "adc4150d-bcfe-343b-a20a-cd75b9c4cdda",
"name" : "Togofa",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/togofa_merchant.webp",
"externalId" : "DP45",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/togofa_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/togofa_logo01.webp",
"url" : "https://www.togofa.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/togofa_banner03.webp",
"distance" : 0.0,
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "80937",
"name" : "Get 10% off on 6 nights and 7 days stay in Europe on Togofa",
"description" : "Get 10% off on 6 nights and 7 days stay in Europe on Togofa till 30-09-2022\nOnline offer",
"validFrom" : "2022-06-15T00:00:00.389Z",
"validTo" : "2026-09-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBTGF01",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/A_piece_of_Europe_Package_2.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.togofa.com/PackageWithcategory3.aspx?ShowDetails=True&ID=69",
"termsAndConditions" : "1.The offer is valid till 30-09-2022\n2. Offer is valid on all ADIB Covered & Debit cards\n3. Submit your booking request through ToGoFa.com website quoting your Coupon Code. \n4. ADIB Cardholders can contact our call center on 04-266 2925 or send an email to enquiry@togofa.com to avail this offer\n5. Rates are per person, inclusive of Tax & are subject to availability at the time of booking.\n6. The discount detailed above will be fully and solely borne by the service provider.\n7. Service provider's terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n8. ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.\n9.The offer is subject to merchant approval\n10.This offer is applicable to selected packages only and cannot be combined with any other offers.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/A_piece_of_Europe_Package_2.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "togofa",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "80936",
"name" : "Get 10% off on 5 nights and 6 days stay in Amsterdam & Paris on Togofa",
"description" : "Get 10% off on 5 nights and 6 days stay in Amsterdam & Paris on Togofa till 30-09-2022\nOnline offer",
"validFrom" : "2022-06-15T00:00:00.389Z",
"validTo" : "2026-09-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBTGF01",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/Amsterdam_and_Paris_Package_2.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.togofa.com/PackageWithcategory3.aspx?ShowDetails=True&ID=47",
"termsAndConditions" : "1.The offer is valid till 30-09-2022\n2. Offer is valid on all ADIB Covered & Debit cards\n3. Submit your booking request through ToGoFa.com website quoting your Coupon Code. \n4. ADIB Cardholders can contact our call center on 04-266 2925 or send an email to enquiry@togofa.com to avail this offer\n5. Rates are per person, inclusive of Tax & are subject to availability at the time of booking.\n6. The discount detailed above will be fully and solely borne by the service provider.\n7. Service provider's terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n8. ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.\n9.The offer is subject to merchant approval\n10.This offer is applicable to selected packages only and cannot be combined with any other offers.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/Amsterdam_and_Paris_Package_2.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "togofa",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "80935",
"name" : "Get 10% off on 6 nights and 7 days stay in Turkey on Togofa",
"description" : "Get 10% off on 6 nights and 7 days stay in Turkey on Togofa till 30-09-2022\nOnline offer",
"validFrom" : "2022-06-15T00:00:00.389Z",
"validTo" : "2026-09-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBTGF01",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/Turkish_colours_Offer_Image_2.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.togofa.com/PackageWithcategory3.aspx?ShowDetails=True&ID=70",
"termsAndConditions" : "1.The offer is valid till 30-09-2022\n2. Offer is valid on all ADIB Covered & Debit cards\n3. Submit your booking request through ToGoFa.com website quoting your Coupon Code. \n4. ADIB Cardholders can contact our call center on 04-266 2925 or send an email to enquiry@togofa.com to avail this offer\n5. Rates are per person, inclusive of Tax & are subject to availability at the time of booking.\n6. The discount detailed above will be fully and solely borne by the service provider.\n7. Service provider's terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n8. ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.\n9.The offer is subject to merchant approval\n10.This offer is applicable to selected packages only and cannot be combined with any other offers.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/Turkish_colours_Offer_Image_2.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "togofa",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "backpacker", "business-traveller", "family-room", "room-service", "bathrobe", "couple", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "travel-agency", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "sofitel", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all", "Dubai" ],
"geoCodes" : [ {
"latitude" : "25.25896774",
"longitude" : "55.31897023"
} ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "392ddf8f-1e9c-38a3-9229-ee01a6d3565f",
"name" : "Maritim Resort & Spa",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Maritim_Resort_&_Spa_Merchant.webp",
"externalId" : "DT206",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Maritim_Resort_&_Spa_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Maritim_Resort_&_Spa_Logo.webp",
"url" : "https://www.maritim.com/en/hotels/mauritius/hotel-mauritius/hotel-overview",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Maritim_Resort_&_Spa_Banner.webp",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "213423",
"name" : "Get 26% off on 3 night stay at Deluxe Room at Maritim Resort & Spa from dnata Travel, Abu Dhabi",
"description" : "Get 26% off on 3 night stay at Deluxe Room at Maritim Resort & Spa from dnata Travel, Abu Dhabi till 15-07-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-07-15T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Maritim_Resort_&_Spa_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Maritim_Resort_&_Spa_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Maritim_Resort_&_Spa",
"termsAndConditions" : "1.The offer is valid till 15-07-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes all inclusive meal plan\n9.Get 50% savings on stay\n10.Get a return private airport transfers\n11.Offer stay is valid till 31-08-2023 \n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "kids-activities", "front-desk", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "hot-tub", "24-by-7-support", "sauna", "free-toiletries", "couple", "valet-parking", "disabled-friendly", "concierge", "kids-and-family", "sea-view", "restaurant", "luggage-storage", "airport-transportation", "tour-desk", "gaming-area", "fitness-center", "modern-design", "desk", "pool-bar", "fishing", "mini-bar", "kids-pool", "museum", "business-meeting", "bar", "swimming-pool", "large-group", "beach", "sun-terrace", "house-keeping", "spa", "business-center", "adjoining-room", "luxury-hotel", "private-beach", "bathrobe", "room-service", "family-room", "free-parking", "photocopier", "garden", "parks-and-gardens", "currency-exchange", "laundry-service", "dry-cleaning", "air-conditioned", "eat-outs", "shuttle-service", "babysitting", "free-internet", "hair-dryer", "infinity-pool" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
} ],
"created" : "2026-04-21T05:36:51.214286935Z"
}, {
"id" : "ZPFj1eK2SGmVIFSgBBnmVA",
"listName" : "Because you viewed Roman General Stores",
"listType" : "SIMILAR_MERCHANTS",
"totalCount" : 10,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "549031ed-bedf-389a-a1c1-057bc10a48a1",
"name" : "Beauty Tribe",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/beauty_tribe_merchant.webp",
"externalId" : "AY4",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/beauty_tribe_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/beauty_tribe_logo.webp",
"url" : "https://beautytribe.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/beauty_tribe_banner.webp",
"tasteMatchScore" : 83,
"totalViews" : 1,
"distance" : 0.0
},
"offers" : [ {
"id" : "206480",
"name" : "Get up to 10% discount on your purchase at Beauty Tribe",
"description" : "Get up to 10% discount on your purchase at Beauty Tribe till 31-12-2023\nOnline offer",
"validFrom" : "2023-05-03T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "BS21",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/beauty_tribe_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://beautytribe.com/",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/beauty_tribe_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "arabyads",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "7.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "large-product-range", "online", "perfumery", "health-and-beauty", "cosmetics-and-skincare", "multi-brand", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "c79cb4cd-194f-3a16-b489-e5f592ed12e4",
"name" : "Basharacare",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Basharacare_Merchant_Image.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AD2050",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Basharacare_Merchant_Image.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/AD2050_Basharacare_Logo.webp",
"url" : "https://www.basharacare.com/ae_en",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/AD2050_Basharacare_Banner.webp",
"tasteMatchScore" : 81,
"totalViews" : 1,
"distance" : 0.0
},
"offers" : [ {
"id" : "111477",
"name" : "Get up to 5% off on your purchase at Basharacare",
"description" : "Get up to 5% off on your purchase at Basharacare till 21-12-2022\nOnline offer",
"validFrom" : "2022-06-18T00:00:00.389Z",
"validTo" : "2026-12-21T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "BC76",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Basharacare_Offer_Image.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=1153&aff_id=68962&aff_sub=testuser&aff_sub2=AD2050&aff_sub3=111477&aff_sub4=crayon",
"termsAndConditions" : "1.The offer is valid upto 21-12-2022\n2.The offer is valid for Beauty\n3.The categories/products which are excluded from this offer are: N/A\n4.The offer is applicable for new & repeat users\n5.The offer is valid on app & website purchases only\n6.Coupons are applicable for ADIB card users only\n7.Coupon is applicable for online purchase only\n8.Accidental loss of coupon shall not be covered \n9.Coupons are not transferable \n10.Coupons cannot be replaced if lost.\n11.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Basharacare_Offer_Image.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "6.4",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "181024",
"name" : "Get up to 5% off on your purchase at Basharacare",
"description" : "Get up to 5% off on your purchase at Basharacare till 26-09-2023\nOnline offer",
"validFrom" : "2023-03-22T00:00:00.389Z",
"validTo" : "2026-09-26T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "BS6",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/basharacare_offer1.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.basharacare.com/ae_en",
"termsAndConditions" : "1.The offer is valid till 26-09-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/basharacare_offer1.webp",
"offerType" : "offline coupon",
"offerSource" : "DCM",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "INFINIA" ]
} ],
"tags" : [ "basic-service", "online", "health-and-beauty", "cosmetics-and-skincare", "multi-brand", "personal-care", "delivery-service", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "c6ef6db1-faf1-3717-b86b-9017b151ecb2",
"name" : "Choithrams",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/choithrams_merchant.webp",
"externalId" : "BO925",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/choithrams_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/choithrams_logo.webp",
"url" : "https://www.choithrams.com/en/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/choithrams_banner.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "153855",
"name" : "Get up to 20% off on your purchase at Choithrams",
"description" : "Get up to 20% off on your purchase at Choithrams till 29-12-2022\nOnline offer",
"validFrom" : "2022-11-29T00:00:00.389Z",
"validTo" : "2026-12-29T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/choithrams_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/choithrams_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percent",
"offerSource" : "loyolink",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.choithrams.com/en/",
"termsAndConditions" : "1.The offer is valid till 29-12-2022\n2.Offer cannot be clubbed with existing sale items or other active offers or coupons.\n3.Offer is applicable for ADIB card users only\n4.Offer is subject to merchant approval\n5.Offer will be applied automatically on checkout.\n6.Offer is applicable once per user on online grocery deliveries\n7.The offer is valid on AED 250 and above purchases and is capped at AED 50\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "chocolates", "self-service", "supermarket", "food-beverages-and-groceries", "regional", "dairy-products", "standalone-store", "online-and-in-store", "sea-food-products", "large-product-range", "dry-fruits-and-nuts", "confectionery", "meat-products", "groceries", "delivery-service", "fruits-and-vegetables-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "5e6b5532-0c20-3252-b685-c871a7052f1d",
"name" : "Eyewa",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/eyewa_merchant.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DC23",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/eyewa_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/eyewa_logo.webp",
"url" : "https://eyewa.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/eyewa_banner.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "210394",
"name" : "Get 20% discount on your purchase on top brands at Eyewa",
"description" : "Get 20% discount on your purchase on top brands at Eyewa till 12-07-2023\nOnline offer",
"validFrom" : "2021-09-29T00:00:00.389Z",
"validTo" : "2026-07-12T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "AFF15",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/eyewa_offer.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 18.5,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/x5i039v2x5d193180536b7da7466f8/?i=3&subid=testuser&subid1=DC23&subid2=210394&subid3=crayon",
"termsAndConditions" : "1.The offer is valid till 12-07-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/eyewa_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "23.14",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "1479",
"name" : "Get up to 15% off on your purchase at Eyewa",
"description" : "Get up to 15% off on your purchase at Eyewa till 31-12-2022\nOnline offer",
"validFrom" : "2021-05-01T00:00:00.389Z",
"validTo" : "2026-07-07T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/DC23_1_Eyewa_New_Image.webp.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://eyewa.com/ae-en?aff_sub=testuser&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"termsAndConditions" : "1.\tThe offer is valid upto 31-12-2022\n2.\tThe offer is valid for Opticals, Eyewear on purchase above AED 50 only\n3.\tThe categories/products which are excluded from this offer are: N/A\n4.\tThe offer is valid on app & website purchases only\n5.\tThe offer is applicable for new & repeat users\n6.\tCoupons are applicable for ADIB card users only\n7.\tCoupon is applicable for online purchase only\n8.\tAccidental loss of coupon shall not be covered \n9.\tCoupons are not transferable \n10.\tCoupons cannot be replaced if lost.\n11.\tCustomer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.\tCoupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/DC23_1_Eyewa_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "6.4",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "basic-service", "online", "opticals", "eye-care", "health-and-beauty", "multi-brand", "sunglasses", "delivery-service", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "90d138c4-22fd-3e28-a218-16f44c9af788",
"name" : "Fade Fit",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/fadefit_merchant.webp",
"externalId" : "AC2958",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/fadefit_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/fadefit_logo.webp",
"url" : "https://fadefit.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/fadefit_banner.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "158690",
"name" : "Get up to 22% off on your purchase above AED 100 at Fade Fit",
"description" : "Get up to 22% off on your purchase above AED 100 at Fade Fit till 05-10-2023\nOnline offer",
"validFrom" : "2022-11-16T00:00:00.389Z",
"validTo" : "2026-10-05T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "FF37",
"image" : "https://dpimages.crayondata.com/high-res-image/fadefit_offer.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=1177&aff_id=68962&aff_sub=testuser&aff_sub2=AC2958&aff_sub3=158690&aff_sub4=crayon",
"termsAndConditions" : "1.The offer is valid upto 05-10-2023\n2.The categories/products which are excluded from this offer are: N/A\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new and repeat users\n5.Coupons are applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable\n9.Customer is redirected to third party website -Terms of third party website will be applicable on the shopping experience\n *The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/fadefit_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "single-brand", "food-beverages-and-groceries", "health-and-beauty", "dairy-products", "online", "international", "apparel-and-accessories", "accessories-store", "confectionery", "natural-organic-products", "nutritional-supplements", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "935c2219-2fcf-3a3a-a745-0097a4bcc6d2",
"name" : "Feelunique",
"description" : "Europe's largest online beauty retailer",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC44_4_Feel_Unique_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC44",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC44_4_Feel_Unique_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/AC44_Feel_Unique_New_Logo.webp.webp",
"url" : "https://mena.feelunique.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/AC44_Feel_Unique_New_Banner.webp.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "1386",
"name" : "Get upto 10% off on your purchase at Feelunique",
"description" : "Get upto 10% off on your purchase at Feelunique till 31-12-2023\nOnline offer",
"validFrom" : "2022-06-18T00:00:00.389Z",
"validTo" : "2026-07-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "FUAC89",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC44_3_Feel_Unique_New_Image.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 5.0,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=660&aff_id=68962&aff_sub=testuser&aff_sub2=AC44&aff_sub3=1386&aff_sub4=crayon",
"termsAndConditions" : "1. The offer is valid upto 31-12-2023\n2. The offer is valid for 'Beauty', 'Coupon Offers' only\n3. The offer is applicable for 'Mobile', 'Desktop / Web'\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC44_3_Feel_Unique_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "6.4",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "7127",
"name" : "Get up to 10% off on your purchase at Feel Unique",
"description" : "Get up to 10% off on your purchase at Feel Unique untill 31-12-2022\nOnline offer",
"validFrom" : "2021-09-27T00:00:00.389Z",
"validTo" : "2026-07-07T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/7127_webp_Feelunique.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://row.feelunique.com/?subid=testuser&subid1=AC44&subid2=7127&subid3=crayon",
"termsAndConditions" : "1.\tThe offer is valid upto 31-12-2022 \n2.\tThe offer is valid for Beauty, Fashion, Coupon Offers only\n3.\tThe categories/products which are excluded from this offer are: N/A\n4.\tThe offer is applicable for new & repeat users\n5.\tThe offer is valid on app & website purchases only\n6.\tCoupons are applicable for ADIB card users only\n7.\tCoupon is applicable for online purchase only\n8.\tAccidental loss of coupon shall not be covered \n9.\tCoupons are not transferable \n10.\tCoupons cannot be replaced if lost.\n11.\tCustomer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.\tCoupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/7127_webp_Feelunique.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "5.6",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "large-product-range", "online", "international", "health-and-beauty", "cosmetics-and-skincare", "multi-brand", "personal-care", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "34e17d7f-02ea-38c3-a4e6-da79c0602de2",
"name" : "Foreo",
"description" : "Learn more about LUNA range of facial brushes, ISSA toothbrushes and UFO smart devices to bring your beauty routine on next level.",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC48_2_Foreo_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC48",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC48_2_Foreo_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/AC48_Foreo_New_Logo.webp.webp",
"url" : "https://www.foreo.com/ar",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/AC48_Foreo_New_Banner.webp.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "63723",
"name" : "Get up to 19% off on your purchases at Foreo",
"description" : "Get up to 19% off on your purchases at Foreo untill 01-08-2022\nOnline offer",
"validFrom" : "2022-05-19T00:00:00.389Z",
"validTo" : "2026-08-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "DISCOUNT19",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/63723_webp_Foreo.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 3.0,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/f5ur8bbvw2d193180536cddf3bfe84/?i=3&subid=testuser&subid1=AC48&subid2=63723&subid3=crayon",
"termsAndConditions" : "1. The offer is valid upto 01-08-2022\n2. The offer is valid for , Personal Care & Pharmacy only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/63723_webp_Foreo.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "3.85",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "specialty-store", "online", "large-product-range", "health-and-beauty", "cosmetics-and-skincare", "multi-brand", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "08676416-1149-3616-8ad0-becc0eb38642",
"name" : "French Fragrance",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/DC1007_French_Fragrance_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DC1007",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/DC1007_French_Fragrance_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/DC1007_French_Fragrance_New_Logo.webp.webp",
"url" : "https://www.frenchfragrance.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/DC1007_French_Fragrance_New_Banner.webp.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "35855",
"name" : "Get up to 7% off on your purchase at French Fragrance",
"description" : "Get up to 7% off on your purchase at French Fragrance till 31-12-2023\nOnline offer",
"validFrom" : "2022-01-25T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "SCHOOL",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/DC1007_French_Fragrance_New_Offer.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.frenchfragrance.com/",
"termsAndConditions" : "1.The offer is valid upto 31-12-2023\n2.The offer is valid for Beauty only\n3.The categories/products which are excluded from this offer are: N/A\n4.The offer is applicable for new & repeat users\n5.The offer is valid on app & website purchases only\n6.Coupons are applicable for ADIB card users only\n7.Coupon is applicable for online purchase only\n8.Accidental loss of coupon shall not be covered \n9.Coupons are not transferable \n10.Coupons cannot be replaced if lost.\n11.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/DC1007_French_Fragrance_New_Offer.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "DCM",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "3.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "basic-service", "large-product-range", "perfumery", "international", "health-and-beauty", "cosmetics-and-skincare", "multi-brand", "online-and-in-store", "delivery-service", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "fa1b18e2-c060-38f9-841c-1929748e9b2a",
"name" : "Glasseslit",
"description" : "Glasseslit use the high-quality materials, but can offer customers at a high discount because of our high volume, since Glasseslit.com don't have the additional overhead constraints (such as retail rent space, behind-the-counter employees and so on) that your doctor's office or optical must overcome. Since operating this website is much less expensive than a typical retail establishment, Glasseslit is able to pass these savings on to the general public. With no middlemen, no retail-space overhead, Glasseslit.com save our customers on every order!",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AD34_3_Glasseslit_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AD34",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AD34_3_Glasseslit_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/AD34_Glasseslit_New_Logo.webp.webp",
"url" : "https://www.glasseslit.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/AD34_Glasseslit_New_Banner.webp.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "69370",
"name" : "Get 50% off on second frames or lenses purchase at Glasseslit",
"description" : "Get 50% off on second frames or lenses purchase at Glasseslit till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "50OFF",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/456279_Glasseslit_Offer_Image_1.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 16.0,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/rj9d8recwdd193180536de0721ef8d/?i=3&subid=testuser&subid1=AD34&subid2=69370&subid3=crayon",
"termsAndConditions" : "1. The offer is valid upto 31-12-2023\n2. The offer is valid for , Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/456279_Glasseslit_Offer_Image_1.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "",
"payoutValue" : "18.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "specialty-store", "online", "opticals", "large-product-range", "apparel-and-accessories", "multi-brand", "sunglasses", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "e7c470a3-d453-3f43-b5bf-69b785a36533",
"name" : "JOI Gifts",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/joi_gifts_merchants.webp",
"externalId" : "AC67",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/joi_gifts_merchants.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/joi_gifts_logo.webp",
"url" : "https://www.joigifts.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/joi_gifts_banner.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "179489",
"name" : "Get up to 10% off on your purchase at JOI Gifts",
"description" : "Get up to 10% off on your purchase at JOI Gifts till 31-12-2023\nonline offer",
"validFrom" : "2023-02-23T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "FSA5",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/joi_gifts_offer.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/xyol0zv05gd193180536e9959d1f34/?i=8&subid=testuser&subid1=AC67&subid2=179489&subid3=crayon",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n12.The offer is applicable for full priced items only\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/joi_gifts_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "specialty-store", "online", "large-product-range", "international", "gifts-and-souvenirs", "florist", "food-beverages-and-groceries", "multi-brand", "confectionery", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
} ],
"created" : "2026-04-21T05:36:51.439478737Z"
}, {
"id" : "xHYxrPlMRXGJ4zTx4XWPZw",
"listName" : "Because you viewed ACE",
"listType" : "SIMILAR_MERCHANTS",
"totalCount" : 10,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "63123f1e-15a0-3544-9126-0b9ca7d3a1e2",
"name" : "Banggood",
"description" : "Online Shopping for cool gadgets, toys, cell phones, vr headset, tv box, garden supplies & apparel at great prices. Banggood: Good Life Doesnt Cost a Fortune.",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC19_5_Banggood_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC19",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC19_5_Banggood_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/AC19_Banggood_New_Logo.webp.webp",
"url" : "https://www.banggood.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/AC19_Banggood_New_Banner.webp.webp",
"tasteMatchScore" : 81,
"totalViews" : 4,
"distance" : 0.0
},
"offers" : [ {
"id" : "95539",
"name" : "Get up to 9% off on your purchase at Banggood",
"description" : "Get up to 9% off on your purchase at Banggood until 31-12-2022\nOnline offer",
"validFrom" : "2022-07-28T00:00:00.389Z",
"validTo" : "2026-07-07T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "BG9OFFCOUPON",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/95539_Banggood_Offer.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 4.8,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/rdta3ef99fd1931805366213826a88/?i=3&subid=testuser&subid1=AC19&subid2=95539&subid3=crayon",
"termsAndConditions" : "1. The offer is valid upto 31-12-2022\n2. The offer is valid for Accessories & Bags, Back to School , Homeware, , Marketplaces including Chinese Stores, Computers & Electronics, Sports & Recreation, DIY only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on new users\n5. The offer is applicable for ADIB covered & debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost.\n10.Customer is redirected to third party website -Terms of third party website will be applicable on the shopping experience\n *The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/95539_Banggood_Offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "6.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "hardware", "shoes-and-accessories-store", "video-games", "stationery", "automobile-and-accessories", "health-and-beauty", "multi-brand", "toys-and-games", "home-appliances", "online", "home-furnishings", "international", "kids-utilities", "24-by-7", "computer-and-electronics", "tools-and-home-improvement", "basic-service", "regular-retail-store", "party-supplies", "home-improvement-supplies", "home-audio-and-accessories", "office-supplies", "computer-and-accessories", "toys", "large-product-range", "apparel-and-accessories", "gardening-supplies", "mobile-phones", "cosmetics-and-skincare", "personal-care", "school-and-office-supplies", "delivery-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "fd05f5da-3833-307b-a90e-88e0e0e396ae",
"name" : "Blends",
"description" : "At Blends, our purpose is simple: to blend zest & color into everything that you see, touch, and feel.",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/AD4393_webp_Blends_card.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AD4393",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/AD4393_webp_Blends_card.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/AD4393_webp_AD4393_webp_Blends_card_Logo.webp",
"url" : "https://blendshome.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/AD4393_webp_Blends_banner.webp",
"tasteMatchScore" : 81,
"totalViews" : 4,
"distance" : 0.0
},
"offers" : [ {
"id" : "88223",
"name" : "Get free delivery on products at Blends",
"description" : "Get free delivery on products at Blends untill 31-12-2023\nOnline offer",
"validFrom" : "2022-07-01T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/88223_webp_Blends.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/sxnt0kznczd193180536fccf131c5d/?i=8&subid=testuser&subid1=AD4393&subid2=88223&subid3=crayon",
"termsAndConditions" : "1.The offer is valid upto 31-12-2023\n2.The offer is valid for Furniture,Dinner ware,Decor only\n3.The categories/products which are excluded from this offer are: N/A\n4.The offer is applicable for new & repeat users\n5.The offer is valid on app & website purchases only\n6.Coupons are applicable for ADIB card users only\n7.Coupon is applicable for online purchase only\n8.Accidental loss of coupon shall not be covered \n9.Coupons are not transferable \n10.Coupons cannot be replaced if lost.\n11.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.Coupons cannot be clubbed with other active offers or coupons\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/88223_webp_Blends.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "4.9",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "home-and-kitchen", "online", "large-product-range", "housewares", "home-furnishings", "perfumery", "kitchen-accessories", "furniture", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "c8fe932c-fa08-3437-96cd-cbd1538aeef6",
"name" : "CB2",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/cb2_merchant.webp",
"externalId" : "AY5",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/cb2_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/cb2_logo.webp",
"url" : "https://www.cb2.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/cb2_banner.webp",
"tasteMatchScore" : 81,
"totalViews" : 1,
"distance" : 0.0
},
"offers" : [ {
"id" : "206484",
"name" : "Get up to 20% discount on your purchase at CB2",
"description" : "Get up to 20% discount on your purchase at CB2 till 31-12-2023\nOnline offer",
"validFrom" : "2023-05-03T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "DC13",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/cb2_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.cb2.ae/",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get Extra 20% off on full price items and 5% off on discount items\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/cb2_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "arabyads",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "5.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "home-and-kitchen", "home-furnishings", "international", "furniture", "shopping-mall", "online-and-in-store", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "026d21b9-2a0b-3e2b-aabe-e4d29b2893c3",
"name" : "Citruss Tv",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/citrusstv_merchant.webp",
"externalId" : "AC2966",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/citrusstv_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/citrusstv_logo.webp",
"url" : "https://en-ae.citrusstv.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/citrusstv_banner.webp",
"tasteMatchScore" : 81,
"totalViews" : 2,
"distance" : 0.0
},
"offers" : [ {
"id" : "169669",
"name" : "Get up to 10% off on your purchase at Citruss TV",
"description" : "Get upto 10% off on your purchase at Citruss TV till 31-12-2023\nOnline offer",
"validFrom" : "2022-11-22T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "AC41",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/citrusstv_offer.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=906&aff_id=68962&aff_sub=testuser&aff_sub2=AC2966&aff_sub3=169669&aff_sub4=crayon",
"termsAndConditions" : "1.The offer is valid upto 31-12-2023\n2.The categories/products which are excluded from this offer are: N/A\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new and repeat users\n5.Coupons are applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable\n9.Customer is redirected to third party website -Terms of third party website will be applicable on the shopping experience\n10.Get upto 50 SAR off\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/citrusstv_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "automobile-and-accessories", "video-games", "bicycle-and-accessories", "furniture", "home-audio-and-accessories", "sporting-equipment", "toys-and-games", "computer-and-accessories", "sports-and-outdoors", "home-and-kitchen", "online", "home-furnishings", "gardening-supplies", "kitchen-accessories", "mobile-phones", "computer-and-electronics", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "c9eb7343-d56e-3461-b7a5-47dcd4d802ef",
"name" : "Crate & Barrel",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/c&b_merchant.webp",
"externalId" : "BO1032",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/c&b_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/c&b_logo.webp",
"url" : "https://www.crateandbarrel.me/en-ae",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/c&b_banner.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "206657",
"name" : "Get up to 20% discount on your purchase at Crate & Barrel",
"description" : "Get up to 20% discount on your purchase at Crate & Barrel till 31-12-2023\nOnline offer",
"validFrom" : "2023-04-18T00:00:00.389Z",
"validTo" : "2026-12-13T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "NNA",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/c&b_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.crateandbarrel.me/",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n12.Get 20% off on full priced items and 5% on discounted items\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/c&b_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "arabyads",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "5.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "home-appliances", "home-and-kitchen", "online", "kitchen-appliances", "housewares", "international", "gifts-and-souvenirs", "furniture", "online-and-in-store", "delivery-service", "premium" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "481bc0b1-ec4a-3a15-8181-73818001f7b0",
"name" : "Desertcart",
"description" : "Shop online for Electronics, Fashion, Home & Kitchen, Beauty & Grooming, Health, Toys, Baby, Books, Sports, etc. on desertcart",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/DC19_3_Desert_Cart_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DC19",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/DC19_3_Desert_Cart_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/DC19_Desert_Cart_New_Logo.webp.webp",
"url" : "https://www.desertcart.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/DC19_Desert_Cart_New_Banner.webp.webp",
"tasteMatchScore" : 81,
"totalViews" : 6,
"distance" : 0.0
},
"offers" : [ {
"id" : "2110",
"name" : "Get up to 5% off on your purchase at Desertcart",
"description" : "Get up to 5% off on your purchase at Desertcart till 31-12-2023\nOnline offer",
"validFrom" : "2021-05-01T00:00:00.389Z",
"validTo" : "2026-05-16T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "DCM514",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/DC19_1_Desert_Cart_New_Image.webp.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.desertcart.ae/",
"termsAndConditions" : "1.The offer is valid upto 31-12-2023\n2.The offer is valid for Beauty only\n3.The categories/products which are excluded from this offer are: N/A\n4.The offer is valid on app & website purchases only\n5.The offer is applicable for new & repeat users\n6.Coupons are applicable for ADIB card users only\n7.Coupon is applicable for online purchase only\n8.Accidental loss of coupon shall not be covered \n9.Coupons are not transferable \n10.Coupons cannot be replaced if lost.\n11.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/DC19_1_Desert_Cart_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "DCM",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "6.5",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "perfumery", "kitchen-appliances", "automobile-and-accessories", "video-games", "furniture", "cameras-and-accessories", "health-and-beauty", "multi-brand", "toys-and-games", "computer-and-accessories", "toys", "home-and-kitchen", "large-product-range", "online", "international", "kids-utilities", "kitchen-accessories", "apparel-and-accessories", "books-and-music", "mobile-phones", "cosmetics-and-skincare", "books", "computer-and-electronics", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "bfa83d8e-b474-3bbc-9982-7c1c7fdbdee4",
"name" : "Dragonmart",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Dragonmart_Merchant_Image.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC2950",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Dragonmart_Merchant_Image.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Dragonmart_Logo.webp",
"url" : "https://www.dragonmart.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/Dragonmart_Banner_2.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "125045",
"name" : "Get up to 5% off on your purchase at DragonMart",
"description" : "Get up to 5% off on your purchase at DragonMart till 31-12-2023\nOnline offer",
"validFrom" : "2022-09-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "DM113",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Dragonmart_Offer_Image.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=1157&aff_id=68962&aff_sub=testuser&aff_sub2=AC2950&aff_sub3=125045&aff_sub4=crayon",
"termsAndConditions" : "1.The offer is valid upto 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/Dragonmart_Offer_Image.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "hardware", "perfumery", "automobile-and-accessories", "video-games", "chocolates", "bicycle-and-accessories", "food-beverages-and-groceries", "health-and-beauty", "cameras-and-accessories", "online", "international", "computer-and-electronics", "confectionery", "tools-and-home-improvement", "regular-retail-store", "basic-service", "home-improvement-supplies", "furniture", "home-audio-and-accessories", "sporting-equipment", "computer-and-accessories", "sports-and-outdoors", "toys", "large-product-range", "apparel-and-accessories", "mobile-phones", "cosmetics-and-skincare", "dry-fruits-and-nuts", "personal-care", "delivery-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "27616647-b62b-39e7-8fcc-7229d2b66fdf",
"name" : "Dubaistore",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/dubaistore_merchant.webp",
"externalId" : "AD4532",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/dubaistore_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/dubaistore_logo.webp",
"url" : "https://www.dubaistore.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/dubaistore_banner.webp",
"tasteMatchScore" : 81,
"totalViews" : 2,
"distance" : 0.0
},
"offers" : [ {
"id" : "169959",
"name" : "Get 10% off up to 50 AED on your purchase at DubaiStore",
"description" : "Get 10% off up to 50 AED on your purchase at DubaiStore till 31-12-2023\nOnline offer",
"validFrom" : "2023-01-10T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/dubaistore_offer.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/iclcdo41u4d19318053674025c6e6e/?i=8&subid=testuser&subid1=AD4532&subid2=169959&subid3=crayon",
"termsAndConditions" : "1.The offer is valid upto 31-12-2023\n2.The categories/products which are excluded from this offer are: N/A\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new users only\n5.Coupons are applicable for ADIB card users only\n6.Coupon is applicable for online purchase above 150 AED only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable\n9.Customer is redirected to third party website -Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/dubaistore_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "basic-service", "perfumery", "kitchen-appliances", "video-games", "home-improvement-supplies", "pet-supplies", "furniture", "health-and-beauty", "pet-and-pet-supplies", "multi-brand", "online-and-in-store", "sports-and-outdoors", "home-appliances", "home-and-kitchen", "home-furnishings", "apparel-and-accessories", "kids-utilities", "international", "books-and-music", "books", "computer-and-electronics", "musical-instrument", "travel-accessories", "tools-and-home-improvement", "personal-care", "delivery-service", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "0b9082cf-e35c-3abb-aa55-fb9052bfe4fd",
"name" : "Dubuy",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Dubuy_Merchant_Image.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC2951",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Dubuy_Merchant_Image.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Dubuy_Logo.webp",
"url" : "https://www.dubuy.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Dubuy_Banner.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "125044",
"name" : "Get up to 5% off on your purchase at DuBuy",
"description" : "Get up to 5% off on your purchase at DuBuy till 31-12-2023\nOnline offer",
"validFrom" : "2022-09-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "DB78",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Dubuy_Offer.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=1158&aff_id=68962&aff_sub=testuser&aff_sub2=AC2951&aff_sub3=125044&aff_sub4=crayon",
"termsAndConditions" : "1.The offer is valid upto 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/Dubuy_Offer.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "hardware", "perfumery", "automobile-and-accessories", "health-and-beauty", "cameras-and-accessories", "home-appliances", "home-and-kitchen", "home-furnishings", "online", "international", "kids-utilities", "paint-supplies", "kids-furniture", "building-supplies", "computer-and-electronics", "tools-and-home-improvement", "groceries", "regular-retail-store", "basic-service", "kitchen-appliances", "home-improvement-supplies", "furniture", "home-audio-and-accessories", "sporting-equipment", "computer-and-accessories", "toys", "large-product-range", "mobile-phones", "cosmetics-and-skincare", "personal-care", "delivery-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "f736ac28-b76a-316c-8d7c-4aee8adfb12d",
"name" : "Geekbuying",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/geek_merchant.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC56",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/geek_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/geek_logo.webp",
"url" : "https://www.geekbuying.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/geek_banner.webp",
"tasteMatchScore" : 81,
"totalViews" : 1,
"distance" : 0.0
},
"offers" : [ {
"id" : "41623",
"name" : "Get 74 AED off for Logitech G703 LIGHTSPEED Wireless Gaming Mouse at Geekbuying",
"description" : "Get 74 AED off for Logitech G703 LIGHTSPEED Wireless Gaming Mouse at Geekbuying till 01-08-2022\nOnline offer",
"validFrom" : "2022-03-02T00:00:00.389Z",
"validTo" : "2026-08-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "6OKM9LCN",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC56_112_Geekbuying_New_Image.webp.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 2.4,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/7nmcmxhox0d1931805360267b86f6e/?i=3&subid=testuser&subid1=AC56&subid2=41623&subid3=crayon",
"termsAndConditions" : "1. The offer is valid upto 01-08-2022\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC56_112_Geekbuying_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "3.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "41640",
"name" : "Get 220 AED off for BMAX X14 Pro Laptop at Geekbuying",
"description" : "Get 220 AED off for BMAX X14 Pro Laptop at Geekbuying till 30-06-2022\nOnline offer",
"validFrom" : "2022-03-02T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "6DKLO8U2",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC56_106_Geekbuying_New_Image.webp.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 2.4,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/zyczfju1dkd1931805360267b86f6e/?i=3&subid=testuser&subid1=AC56&subid2=41640&subid3=crayon",
"termsAndConditions" : "1. The offer is valid upto 30-06-2022\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC56_106_Geekbuying_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "3.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "18252",
"name" : "Get 245 AED off for Eleglide D1 Master Off-road Folding Electric Scooter at Geekbuying",
"description" : "Get 245 AED off for Eleglide D1 Master Off-road Folding Electric Scooter at Geekbuying till 22-11-2022\nOnline offer",
"validFrom" : "2021-11-23T00:00:00.389Z",
"validTo" : "2026-11-22T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "GKB790S",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC56_110_Geekbuying_New_Image.webp.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 2.4,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/ggv4pzx3mrd1931805360267b86f6e/?i=3&subid=testuser&subid1=AC56&subid2=18252&subid3=crayon",
"termsAndConditions" : "1. The offer is valid upto 22-11-2022\n2. The offer is valid for , Outdoor Clothing & Equipmt, Sports & Recreation only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC56_110_Geekbuying_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "3.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "33339",
"name" : "Get 110 AED off for Xiaomi Redmi K40 Gaming Edition at Geekbuying",
"description" : "Get 110 AED off for Xiaomi Redmi K40 Gaming Edition at Geekbuying till 26-07-2022\nOnline offer",
"validFrom" : "2022-01-26T00:00:00.389Z",
"validTo" : "2026-07-26T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "6I9RT3MF",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC56_117_Geekbuying_New_Image.webp.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 2.4,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/thb8spe8kad1931805360267b86f6e/?i=3&subid=testuser&subid1=AC56&subid2=33339&subid3=crayon",
"termsAndConditions" : "1. The offer is valid upto 26-07-2022\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC56_117_Geekbuying_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "3.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "184960",
"name" : "Get up to 5% discount on your purchase at Geekbuying",
"description" : "Get up to 5% discount on your purchase at Geekbuying till 30-12-2023\nOnline offer",
"validFrom" : "2022-11-03T00:00:00.389Z",
"validTo" : "2026-12-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADMITADGKB",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/geek_offer.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 1.6,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/fnnxa0xnwtd1931805360267b86f6e/?i=3&subid=testuser&subid1=AC56&subid2=184960&subid3=crayon",
"termsAndConditions" : "1. The offer is valid upto 30-12-2023\n2. The offer is valid for Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. Coupons are applicable for ADIB card users only\n6.The offer is applicable for online purchase only.\n7. Accidental Loss of coupon shall not be covered.\n8. Coupons are not transferable.\n9. Coupons cannot be replaced if lost.\n10. Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11. Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/geek_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "2.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "41630",
"name" : "Get 37 AED off for Xiaomi Mi Pad 5 at Geekbuying",
"description" : "Get 37 AED off for Xiaomi Mi Pad 5 at Geekbuying till 01-08-2022\nOnline offer",
"validFrom" : "2022-03-02T00:00:00.389Z",
"validTo" : "2026-08-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "6OJTWFEO",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC56_137_Geekbuying_New_Image.webp.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 2.4,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/n6f26vkeiwd1931805360267b86f6e/?i=3&subid=testuser&subid1=AC56&subid2=41630&subid3=crayon",
"termsAndConditions" : "1. The offer is valid upto 01-08-2022\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC56_137_Geekbuying_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "3.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "automobile-and-accessories", "video-games", "bicycle-and-accessories", "furniture", "home-audio-and-accessories", "sporting-equipment", "toys-and-games", "computer-and-accessories", "sports-and-outdoors", "home-and-kitchen", "online", "home-furnishings", "gardening-supplies", "kitchen-accessories", "mobile-phones", "computer-and-electronics", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
} ],
"created" : "2026-04-21T05:36:51.471778509Z"
}, {
"id" : "1iuV0qulRsSwaBlPWi2FCw",
"listName" : "Test Campaign Manually Curated Campaign - 999",
"listType" : "50000002",
"totalCount" : 1,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "2a8b485b-4e1e-32dd-8107-14e4a467b163",
"name" : "Papillon Cake",
"category" : "dining",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_merchant.webp",
"distance" : 0.0,
"externalId" : "LL1064",
"totalViews" : 97,
"offersSortedByRank" : true,
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_logo.webp",
"tasteMatchScore" : 76,
"url" : "https://papilloncake.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_banner.webp"
},
"offers" : [ {
"id" : "181065",
"name" : "Get up to 15% off on your purchase at Papillon Cake",
"description" : "Get up to 15% off on your purchase at Papillon Cake till 21-04-2023\nOnline offer\nThe offer doesn’t apply to alcohol, pork products, tobacco, and other non-shari’a compliant items/product",
"validFrom" : "2023-03-22T00:00:00.389Z",
"validTo" : "2026-04-21T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB15",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer2.webp",
"payoutType" : "cpa_percent",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://papilloncake.com/",
"termsAndConditions" : "1.The offer is valid upto 21-04-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer2.webp",
"offerType" : "offline coupon",
"offerSource" : "loyolink",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "INFINIA" ]
} ],
"tags" : [ "bakery", "online-order", "take-away", "cafe", "cakes", "affordable", "delivery-services", "general", "fast-food" ],
"cities" : [ "all", "Dubai" ],
"geoCodes" : [ {
"latitude" : "25.11722046",
"longitude" : "55.23685859"
} ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : true
} ],
"created" : "2026-04-21T05:36:51.308567327Z"
}, {
"id" : "UeqL4XOATbO5OKBxMMuekg",
"listName" : "Test Campaign Manually Curated Campaign - Update - 2",
"listType" : "900037",
"totalCount" : 1,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "2a8b485b-4e1e-32dd-8107-14e4a467b163",
"name" : "Papillon Cake",
"category" : "dining",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_merchant.webp",
"distance" : 0.0,
"externalId" : "LL1064",
"totalViews" : 97,
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_logo.webp",
"tasteMatchScore" : 76,
"url" : "https://papilloncake.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_banner.webp"
},
"offers" : [ {
"id" : "181065",
"name" : "Get up to 15% off on your purchase at Papillon Cake",
"description" : "Get up to 15% off on your purchase at Papillon Cake till 21-04-2023\nOnline offer\nThe offer doesn’t apply to alcohol, pork products, tobacco, and other non-shari’a compliant items/product",
"validFrom" : "2023-03-22T00:00:00.389Z",
"validTo" : "2026-04-21T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB15",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer2.webp",
"payoutType" : "cpa_percent",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://papilloncake.com/",
"termsAndConditions" : "1.The offer is valid upto 21-04-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer2.webp",
"offerType" : "offline coupon",
"offerSource" : "loyolink",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "INFINIA" ]
} ],
"tags" : [ "bakery", "online-order", "take-away", "cafe", "cakes", "affordable", "delivery-services", "general", "fast-food" ],
"cities" : [ "all", "Dubai" ],
"geoCodes" : [ {
"latitude" : "25.11722046",
"longitude" : "55.23685859"
} ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : true
} ],
"created" : "2026-04-21T05:36:51.448937268Z"
} ],
"categories" : [ {
"label" : "Dining",
"value" : "dining"
}, {
"label" : "Retail",
"value" : "retail stores"
}, {
"label" : "Apparel",
"value" : "apparel and accessories"
}, {
"label" : "Travel",
"value" : "travel"
}, {
"label" : "Entertainment",
"value" : "entertainment"
}, {
"label" : "Personal Services",
"value" : "personal service providers"
}, {
"label" : "Miscellaneous",
"value" : "miscellaneous stores"
} ]
}
6.1.4. Example 4 i): Get a specific choice details
Get details of an offer item from choice based on its ID
In Swagger UI, Expand 'Choice API' and select '/api/v3/items/{itemId}'
| Name | Description |
|---|---|
|
User access token |
|
Client asset identifier |
| Parameter | Description |
|---|---|
|
Unique identifier of the item (merchant) |
| Parameter | Description |
|---|---|
|
Language (default: en) |
|
User’s city |
|
User’s latitude |
|
User’s longitude |
|
User’s country |
|
Source of applicable offers. |
|
Include expired offers (default: false) |
|
Request timestamp in ISO-8601 format |
Key in inputs as below:
GET /api/v3/items/e32cd0ea-b28c-38de-80fd-3292fa915af0?lang=en&expiredOffersPage=false HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Host: localhost:8080
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 5712
{
"id" : "e32cd0ea-b28c-38de-80fd-3292fa915af0",
"name" : "Klook",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"offers" : [ {
"id" : "216734",
"name" : "Get 15% off up to $10 on minimum spend of $50 with Klook using your Visa card",
"description" : "Get 15% off up to $10 on minimum spend of $50 with Klook using your Visa card till 31-03-2024\nOnline offer",
"validFrom" : "2022-05-06T00:00:00.389Z",
"validTo" : "2026-03-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"appplicableForClients" : "VISA_SPECIFIC",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VSA_13_Klook_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VSA_13_Klook_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.klook.com/en-SG/tetris/promo/sg-visa/",
"termsAndConditions" : "1. The offer is valid till 31-03-2024\n2. Promotion is only applicable to Visa cards issued in Singapore.\n3. Each Promotion Code is valid for redemption from 1200h Friday to Sunday every week, and expires Sunday 2359h. \n4. Each Promotion Code entitle users to 15% off, capped at $10, with minimum spend of $50 sitewide on Klook. \n5. Each Promotion Code has a limited number of available checkouts every week and is for one-time use only. \n6. This promotion does not include activities in the Klook Non-applicable Activity List. \n7. Offer must be made with an Applicable Visa Card during the Promotion Period. \n8. Applicable Visa cardholder is required to enter the Promotion Code when conducting the Offer transaction, before payment, during the booking process. \n9. Offer is to be made through Klook's Booking Platforms (Web/App). \n10. Offer discount will be displayed on the payment page upon entering an Applicable Visa Card and Promotion Code. \n11. No discount will be given if Promotion Code fails to apply. \n12. The following transactions are not Eligible Transaction(s) for the purpose of the Offer: unauthorized transaction(s) and any transaction(s) that are cancelled, charge-back, return of goods and/or refund, or any other categories as Klook may determine at its sole discretion from time to time. \n13. Prices listed may be subject to service charge and prevailing government taxes where applicable. \n14. Offer cannot be exchanged for cash or used in conjunction with other promotional programmes, offers, discount cards, vouchers or VIP privileges unless otherwise stated. \n15. Klook reserves the right to require payment of fees or charges for any Services offered by Klook. You shall pay all applicable fees or charges, as described on this Website in connection with such Services selected by you. \n16. Klook reserves the right to change its price list for fees or charges at any time, upon notice to you, which may be sent to you by email or posted on this Website. Your use (or continued use) of the Services offered by Klook following such notification constitutes your acceptance of any new or revised fees or charges. Klook supports payments in different currencies and rates can be converted into different currencies for your convenience. \n17. Activity rates indicated in a certain currency are at a rate determined by Klook, estimated using market spot rates. \n18. Payment currency will be clearly indicated at time of payment. Some credit cards may charge additional fees in handling certain currencies, please consult with your credit card issuer if additional charges will apply to your transaction. Klook reserves the right to suspend, cancel or modify the promotion at any time without prior notice.\n19. The offer is valid on: Visa Platinum, Visa Gold, Visa Classic, Visa Electron, Visa Infinite, Visa Signature, Visa Signature Preferred, Visa Traditional, Visa Traditional Rewards, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa, Infinite Business, Visa Infinite Privilege, Visa UHNW, Visa Gold Business, Visa Rewards",
"isExpired" : true,
"claimed" : false,
"redeemed" : false,
"claimedCount" : 1,
"redeemedCount" : 0,
"currentLocation" : true
} ],
"tags" : [ "travel-agency", "online", "travel-agencies-and-operators", "tour-operator", "air-ticket-booking", "train-ticket-booking", "bus-ticket-booking", "hotel-booking", "car-rental" ],
"cities" : [ "all" ],
"isOnline" : true,
"isHyperLocal" : false,
"image" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_13_Klook_merchant.webp",
"externalId" : "AC71",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_13_Klook_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_13_Klook_logo.webp",
"url" : "https://www.klook.com/en-SG/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_13_Klook_Banner.webp",
"tasteMatchScoreReason" : "Because youve been exploring travel agencies",
"tasteMatchScore" : 74,
"liked" : false,
"wishlisted" : false,
"filterOffersByLocation" : true,
"offerAvailabilityPartitioned" : false
}
6.1.5. Example 4 ii): Get a specific choice details (accessed via campaign)
Get details of a specific item when it is accessed via a campaign. The offers associated with the item are sorted based on the campaign offer ranking.
In Swagger UI, Expand 'Choice API' and select '/api/v3/items/{itemId}'
| Name | Description |
|---|---|
|
User access token |
|
Client asset identifier |
| Parameter | Description |
|---|---|
|
Unique identifier of the item (merchant) |
| Parameter | Description |
|---|---|
|
Language (default: en) |
|
User’s city |
|
User’s latitude |
|
User’s longitude |
|
User’s country |
|
Source of applicable offers. |
|
Include expired offers (default: false) |
|
Request timestamp in ISO-8601 format |
Key in inputs as below:
GET /api/v3/items/2a8b485b-4e1e-32dd-8107-14e4a467b163?lang=en&expiredOffersPage=false&applicableOfferSource=CAMPAIGN_50000002 HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Host: localhost:8080
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 6616
{
"id" : "2a8b485b-4e1e-32dd-8107-14e4a467b163",
"name" : "Papillon Cake",
"category" : "dining",
"itemType" : "MERCHANT",
"active" : true,
"offers" : [ {
"id" : "181065",
"name" : "Get up to 15% off on your purchase at Papillon Cake",
"description" : "Get up to 15% off on your purchase at Papillon Cake till 21-04-2023\nOnline offer\nThe offer doesn’t apply to alcohol, pork products, tobacco, and other non-shari’a compliant items/product",
"validFrom" : "2023-03-22T00:00:00.389Z",
"validTo" : "2026-04-21T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "INFINIA" ],
"redemptionCode" : "ADIB15",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer2.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://papilloncake.com/",
"termsAndConditions" : "1.The offer is valid upto 21-04-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer2.webp",
"offerType" : "offline coupon",
"offerSource" : "loyolink",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"isExpired" : false,
"claimed" : false,
"redeemed" : false,
"claimedCount" : 11,
"redeemedCount" : 0,
"currentLocation" : true
}, {
"id" : "181064",
"name" : "test something",
"description" : "Get up to 15% off on your purchase at Papillon Cake till 21-04-2023\nInstore offer\nThe offer doesn’t apply to alcohol, pork products, tobacco, and other non-shari’a compliant items/product",
"validFrom" : "2023-03-22T00:00:00.389Z",
"validTo" : "2026-12-31T00:00:00.389Z",
"partner" : true,
"isOnline" : false,
"sensitiveFlag" : false,
"offerActive" : true,
"locations" : [ "254531" ],
"offerCities" : [ "Chennai" ],
"offerCountries" : [ "India" ],
"offerGeoCodes" : [ {
"latitude" : "25.11722046",
"longitude" : "55.23685859"
} ],
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "REGALIA" ],
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percent",
"offerSource" : "loyolink",
"howToRedeem" : "Simply visit any outlet where the offer is applicable as per T&C and use your ADIB Covered or Debit card to pay and get this offer!",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"termsAndConditions" : "1.The offer is valid till 21-04-2023\n2.Offer is not valid in conjunction with other offers, discounts and special promotions.\n3.Offer is applicable for ADIB card users only\n4.Offer is subject to merchant approval\n5.The customer should inform the merchant executive about the offer before billing, and ensure that the discount is applied before making the payment.\n6.Offer cannot be exchanged for cash or any other merchandise.\n7.For more offer related queries contact: 042-683999\n8.The offer is applicable at : Al Quoz Industrial Area 4, Dubai\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"url" : "https://papilloncake.com/",
"isExpired" : false,
"claimed" : false,
"redeemed" : false,
"claimedCount" : 10,
"redeemedCount" : 0,
"currentLocation" : false
} ],
"tags" : [ "bakery", "online-order", "take-away", "cafe", "cakes", "affordable", "delivery-services", "general", "fast-food" ],
"cities" : [ "all", "Dubai" ],
"geoCodes" : [ {
"latitude" : "25.11722046",
"longitude" : "55.23685859"
} ],
"isOnline" : true,
"merchantType" : [ "offline", "online" ],
"isHyperLocal" : false,
"image" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_merchant.webp",
"externalId" : "LL1064",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_logo.webp",
"url" : "https://papilloncake.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_banner.webp",
"tasteMatchScoreReason" : "Because youve been exploring fast food",
"tasteMatchScore" : 76,
"offersSortedByRank" : true,
"liked" : false,
"wishlisted" : true,
"filterOffersByLocation" : true,
"offerAvailabilityPartitioned" : false
}
6.1.6. Example 5: Get Locations for an Offer
Retrieve the list of available locations for an offer based on offer ID and city.
In Swagger UI, expand "Choice API" and select /api/v3/offer/locations.
| Name | Description |
|---|---|
|
User access token |
| Parameter | Description |
|---|---|
|
Language (default: en) |
| Path | Type | Description |
|---|---|---|
|
|
Offer ID to fetch locations for |
|
|
User location details |
|
|
City name |
|
|
City name |
Provide the request body as below:
POST /api/v3/offer/locations HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
Content-Length: 93
Host: localhost:8080
{
"offerId" : 194257,
"location" : {
"city" : "Mumbai",
"cityES" : "Mumbai"
}
}
And you should be getting the output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 310
{
"offerId" : 194257,
"locationDetails" : [ {
"id" : "269792",
"city" : "Mumbai",
"geoCode" : {
"latitude" : "19.229803",
"longitude" : "72.8531087"
},
"address" : "Shop No. 2&3, Ajanta Cinema, C Wing, Manek Nagar, Borivali West, Mumbai",
"offers" : [ "194257" ]
} ]
}
6.1.7. Example 6: Get the similar choice details
Get details of similar offer items from choice based on its ID
In Swagger UI, Expand 'Choice API' and select '/api/v3/items/similar'
| Name | Description |
|---|---|
|
User access token |
| Path | Type | Description |
|---|---|---|
|
|
ID of the item |
|
|
Number of similar items |
|
|
Language (default: en) |
|
|
User location |
|
|
City |
|
|
City |
|
|
Timestamp |
Key in inputs as below:
POST /api/v3/items/similar HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
Content-Length: 199
Host: localhost:8080
{
"itemId" : "47674a21-914c-3b2a-a245-4985a489c14f",
"count" : 1,
"lang" : "en",
"location" : {
"city" : "Mumbai",
"cityES" : "Mumbai"
},
"servedAt" : "2026-04-21T05:36:51.797Z"
}
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 5312
[ {
"id" : "052e578b-487d-3dd6-a4f7-41107ce0f78f",
"name" : "Sifr Aromatics",
"description" : "Sifr Aromatics is an independent niche perfumery based in Singapore started by Johari Kazura whose family has been in the perfume business since 1933. Sifr Aromatics specialises in customised perfume blends, small-batch perfumes, scented soy-wax candles, natural essential oil blends, home fragrances, and scent accessories.",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Sifr_Aromatics_MerchantImage.webp",
"externalId" : "DP314",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Sifr_Aromatics_MerchantImage.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Sifr_Aromatics_Logo.webp",
"url" : "https://www.sifr.sg/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Sifr_Aromatics_Banner.webp",
"tasteMatchScore" : 81,
"wishlisted" : false,
"liked" : false
},
"offers" : [ {
"id" : "202957",
"name" : "Save 10% when you spend S$300 online with your Visa card",
"description" : "Save 10% when you spend S$300 online with your Visa card till 30-09-2023\nOnline offer",
"validFrom" : "2022-10-01T00:00:00.389Z",
"validTo" : "2026-09-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "VISA300",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Sifr_Aromatics_OfferImage.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://sifr.sg/",
"termsAndConditions" : [ "1. The offer is valid till 30-09-2023\n2. Sifr Aromatics is solely responsible for this offer. \n3. Valid for regular priced items.\n4. The offer is applicable on:Visa Platinum, Visa Gold, Visa Classic, Visa Electron, Visa Infinite, Visa Signature, Visa Signature Preferred, Visa Traditional, Visa Traditional Rewards, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa Infinite Business, Visa Infinite Privilege, Visa UHNW, Visa Gold Business, Visa Rewards\n5. Please see individual merchant blackout dates. \n6. Offers are valid only when paid with Visa issued worldwide, except where specifically noted. \n7. Identification and presentation of eligible Visa cards may be required for redemption of the offer. Either print, or save on a mobile device, this guide and present the appropriate offer at time of payment, unless otherwise stated. \n8. Benefits cannot be redeemed without Offer information. \n9. Failure to redeem the offer at the proper time may result in denial of the benefit. \n10. Offers may not be used in combination with other promotions, discounts, coupons or special offers. \n11. Offers may not be redeemed for cash or other items. Limited one offer per person per visit. \n12. All offers and services noted in this guide are the responsibility of the individual merchant. Contact the merchant directly for enquiries or additional information. Terms and conditions for each offer vary. Read the terms and conditions before use. \n13. Retain your Visa receipts after your purchase. You may be required to show proof of purchase in case of claims after your return. All receipts must be for same day purchases with a Visa card and in the same name as the cardholder. \n14. Visa is not liable for any and all claims that may arise from its use. Offers and services are subject to change or discontinuation. \n15. Except where specifically noted, offers are exclusive of tax and service charges. \n16. Photographs are for image purposes only. Actual items/services may vary. \n17. Any gifts must be redeemed at the destination. They cannot be redeemed after your return. Limited one gift per customer, no more than once every six months. You may be required to leave your name when claiming a gift with purchase. Any gifts are subject to change depending on stock." ],
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Sifr_Aromatics_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment\n4. For more information contact: 42 Arab St, Singapore 199741 +65-6392-1966 sifr.sg",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "VISA_SPECIFIC"
} ],
"tags" : [ "specialty-store", "large-product-range", "perfumery", "local", "single-brand", "health-and-beauty" ],
"cities" : [ "all", "Singapore" ],
"geoCodes" : [ {
"latitude" : "1.3008",
"longitude" : "103.85972"
} ],
"isOnline" : true,
"merchantType" : [ "offline", "online" ],
"isHyperLocal" : false
} ]
6.1.8. Example 7: Interacting on a choice item and offer
Interact(Like, Undo Like, Dislike …) on an item or offer which is part of item from the choice based on its ID
6.1.9. Example 7 i): Wishlist interaction
Interact(Wishlist) on an item or offer which is part of item from the choice based on its ID
In Swagger UI, Expand 'UserProfile and Campaigns API' and select '/api/v3/user/interact'
| Name | Description |
|---|---|
|
User access token |
|
Client asset identifier |
| Path | Type | Description |
|---|---|---|
|
|
Type of item |
|
|
Type of interaction |
|
|
Interaction value |
|
|
Interaction source |
Key in inputs as below:
POST /api/v3/user/interact HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Content-Length: 149
Host: localhost:8080
{
"itemType" : "MERCHANT",
"interactionType" : "WISHLIST",
"value" : "47674a21-914c-3b2a-a245-4985a489c14f",
"interactionSource" : "SEARCH"
}
where 'value' is the ID of the choice item or offer which is part of choice item.
And you should be getting output as below, which indicates the status of the interaction:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 45
{
"status" : 200,
"message" : "Success"
}
6.1.10. Example 7 ii): Undo Wishlist interaction
Interact(Undo Wishlist) on an item or offer which is part of item from the choice based on its ID
In Swagger UI, Expand 'UserProfile and Campaigns API' and select '/api/v3/user/interact'
| Name | Description |
|---|---|
|
User access token |
|
Client asset identifier |
| Path | Type | Description |
|---|---|---|
|
|
Type of item |
|
|
Type of interaction |
|
|
Interaction value |
|
|
Interaction source |
Key in inputs as below:
POST /api/v3/user/interact HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Content-Length: 158
Host: localhost:8080
{
"itemType" : "MERCHANT",
"interactionType" : "UNDO_WISHLIST",
"value" : "47674a21-914c-3b2a-a245-4985a489c14f",
"interactionSource" : "ALL_OFFERS"
}
where 'value' is the ID of the choice item or offer which is part of choice item.
And you should be getting output as below, which indicates the status of the interaction:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 45
{
"status" : 200,
"message" : "Success"
}
6.1.11. Example 7 iii): Like interaction
Interact(Like) on an item or offer which is part of item from the choice based on its ID
In Swagger UI, Expand 'UserProfile and Campaigns API' and select '/api/v3/user/interact'
| Name | Description |
|---|---|
|
User access token |
|
Client asset identifier |
| Path | Type | Description |
|---|---|---|
|
|
Type of item |
|
|
Type of interaction |
|
|
Interaction value |
|
|
Interaction source |
Key in inputs as below:
POST /api/v3/user/interact HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Content-Length: 146
Host: localhost:8080
{
"itemType" : "MERCHANT",
"interactionType" : "LIKE",
"value" : "47674a21-914c-3b2a-a245-4985a489c14f",
"interactionSource" : "NEAR_BY"
}
where 'value' is the ID of the merchant item which should be part of choice item.
And you should be getting output as below, which indicates the status of the interaction:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 45
{
"status" : 200,
"message" : "Success"
}
6.1.12. Example 7 iv): Undo Like interaction
Interact(Like) on an item or offer which is part of item from the choice based on its ID, then interact(Undo Like)
In Swagger UI, Expand 'UserProfile and Campaigns API' and select '/api/v3/user/interact'
| Name | Description |
|---|---|
|
User access token |
|
Client asset identifier |
| Path | Type | Description |
|---|---|---|
|
|
Type of item |
|
|
Type of interaction |
|
|
Interaction value |
|
|
Interaction source |
Key in inputs as below:
POST /api/v3/user/interact HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Content-Length: 150
Host: localhost:8080
{
"itemType" : "MERCHANT",
"interactionType" : "UNDO_LIKE",
"value" : "47674a21-914c-3b2a-a245-4985a489c14f",
"interactionSource" : "SEARCH"
}
where 'value' is the ID of the merchant item which should be part of choice item.
And you should be getting output as below, which indicates the status of the interaction:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 45
{
"status" : 200,
"message" : "Success"
}
6.1.13. Example 7 v): Dislike interaction
Interact(Dislike) on an item or offer which is part of item from the choice based on its ID
In Swagger UI, Expand 'UserProfile and Campaigns API' and select '/api/v3/user/interact'
| Name | Description |
|---|---|
|
User access token |
|
Client asset identifier |
| Path | Type | Description |
|---|---|---|
|
|
Type of item |
|
|
Type of interaction |
|
|
Interaction value |
|
|
Interaction source |
Key in inputs as below:
POST /api/v3/user/interact HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Content-Length: 149
Host: localhost:8080
{
"itemType" : "MERCHANT",
"interactionType" : "DISLIKE",
"value" : "47674a21-914c-3b2a-a245-4985a489c14f",
"interactionSource" : "SIMILAR"
}
where 'value' is the ID of the merchant item which should be part of choice item.
And you should be getting output as below, which indicates the status of the interaction:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 45
{
"status" : 200,
"message" : "Success"
}
6.1.14. Example 7 vi): View interaction
Interact(View) on an item or offer which is part of item from the choice based on its ID
In Swagger UI, Expand 'UserProfile and Campaigns API' and select '/api/v3/user/interact'
| Name | Description |
|---|---|
|
User access token |
|
Client asset identifier |
| Path | Type | Description |
|---|---|---|
|
|
Type of item |
|
|
Type of interaction |
|
|
Interaction value |
|
|
Interaction source |
Key in inputs as below:
POST /api/v3/user/interact HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Content-Length: 148
Host: localhost:8080
{
"itemType" : "MERCHANT",
"interactionType" : "VIEW",
"value" : "47674a21-914c-3b2a-a245-4985a489c14f",
"interactionSource" : "BIGBRANDS"
}
where 'value' is the ID of the merchant item which should be part of choice item.
and 'itemType' is the enum value of supported item offers. For supported item offers, refer ChoiceRequest.
And you should be getting output as below, which indicates the status of the interaction:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 45
{
"status" : 200,
"message" : "Success"
}
6.1.15. Example 8: Get interaction details based on interaction type
In Swagger UI, Expand 'UserProfile and Campaigns API' and select '/api/v3/user/interaction'
| Name | Description |
|---|---|
|
User access token |
|
Client asset identifier |
| Parameter | Description |
|---|---|
|
Type of item (e.g., MERCHANT, OFFER) |
|
Type of interaction (e.g., VIEW, CLAIM, WISHLIST) |
|
Language (default: en) |
|
Hide grouping by category (default: false) |
|
Request timestamp in ISO-8601 format |
Key in inputs as below:
GET /api/v3/user/interaction?itemType=MERCHANT&interactionType=VIEW&lang=en&hideGroupByCategory=true&servedAt=2026-04-21T05:36:42.154Z HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Host: localhost:8080
And you should be getting output as below, which provides details of items interacted by this user:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 76744
{
"items" : {
"jewellery" : [ {
"id" : "fd381b70-0c0f-361c-bb01-ce60de6efce6",
"name" : "Tanishq inc",
"category" : "jewellery",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/talabat-logo.webp",
"dominantColorCode" : "",
"externalId" : "HDFC105788",
"curatedImage" : "",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Talabat_MerchantImage.webp",
"url" : "https://ebay.com",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Talabat_Banner.webp",
"totalViews" : 543,
"tasteMatchScore" : 70
},
"offers" : [ {
"id" : "413645",
"name" : "Tanishq inc offer",
"description" : "offer on shopping",
"validFrom" : "2025-08-07T00:00:00.389Z",
"validTo" : "2026-07-12T23:59:59.389Z",
"partner" : true,
"isOnline" : false,
"sensitiveFlag" : false,
"offerActive" : true,
"locations" : [ "1043711", "1043712" ],
"offerCities" : [ "Chennai" ],
"offerCountries" : [ "India" ],
"offerGeoCodes" : [ {
"latitude" : "13.0029",
"longitude" : "80.2711"
}, {
"latitude" : "13.0417",
"longitude" : "80.1302"
} ],
"properties" : {
"redemptionCode" : "",
"image" : "https://img.com/offer1.png",
"payoutType" : "cpa_percentage",
"cashbackValue" : "",
"offerVariant" : "EASYEMI",
"offerStatus" : "active",
"url" : "https://amazon.com",
"termsAndConditions" : [ "Standard T&C" ],
"curatedOfferImage" : "",
"offerType" : "Offline coupon",
"offerSource" : "CARDS & EASYEMI",
"howToRedeem" : "Redeem by visiting shop",
"currency" : "",
"offerSourceImage" : "https://img.com/offer1.png"
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "INFINIA" ],
"applicableChannel" : [ "online", "offline" ]
} ],
"tags" : [ "" ],
"cities" : [ "Chennai", "Chennai" ],
"geoCodes" : [ {
"latitude" : "13.0029",
"longitude" : "80.2711"
}, {
"latitude" : "13.0417",
"longitude" : "80.1302"
} ],
"isOnline" : false,
"merchantType" : [ "offline" ],
"isHyperLocal" : true,
"wishlisted" : false
} ],
"personal service providers" : [ {
"id" : "103eadf4-1adf-3467-b8d2-79a2cf592e9a",
"name" : "Aanvaya Kin Care Pvt Ltd",
"category" : "personal service providers",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/genric_updated/1280x800/3301.webp",
"externalId" : "HDFC20023",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/genric_updated/1280x800/3301.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/hdfc/genric_updated/1280x800/3301.webp",
"url" : "https://www.anvayaa.com/hdfcbank/",
"tasteMatchScore" : 72
},
"offers" : [ {
"id" : "197572",
"name" : "Get up to Rs.10,500/- Off on Elder care & Up to 75% off on Selected Services using HDFC Bank Debit Cards & Credit Cards",
"description" : "Annual Subscription Elder Care Plans Flat 5% off up to INR 10500/-* Packages include Dementia Care, Dialysis Care, Cancer Care, Medical Emergency Assistance, Concierge Care and more\nHDFC BANK NRI customers A Unique Elder Care plan created with additional features & offered at special price exclusively for HDFC BANK NRI Customers, refer to the website https://www.anvayaa.com/hdfcbank/ to know more\nGet Upto 75% off on Home Nursing Services, Bedside Caregiver Services Booking Fee, Home & Medical Equipment at Home Booking Fee\nServices available Pan India across 30+ locations.",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/genric_updated/1280x800/3301.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/genric_updated/1280x800/3301.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "hdfc",
"howToRedeem" : "Visit us at https://www.anvayaa.com/hdfcbank/ \n Click on Register and Enter your details\n Customer Care Executive will call back in 24hours and guide you with the appropriate packages or Call us at 7288818181 to get offer details\n Choose the plan\n Make payment using HDFC Bank Debit & Credit Cards",
"currency" : "",
"payoutValue" : "5",
"offerStatus" : "active",
"url" : "https://www.anvayaa.com/hdfcbank/",
"termsAndConditions" : [ "Offer Cannot be clubbed with other offer\n Valid only in India & service delivery is subjected to T&C mentioned on www.anvayaa.com\n For any offer related queries please contact the customer support of Aanvaya @ \n\n \n The offer is an instant discount and will be provided upfront at the time of purchase.\n HDFC Bank holds out no warranty or makes no representation about the quality, delivery or otherwise of the services offered by the partner. Any dispute or claim regarding the services/offers must be resolved by the Card Holder/s with the partner directly without any reference to HDFC Bank.\n HDFC Bank shall not be liable in any manner whatsoever for any loss/ damage/ claim that may arise out of use or otherwise of any goods/ services / assured gifts / gift vouchers availed by the Card Holder/s under the said Offer offered by the partner\n HDFC Bank shall not be held liable for any delay or loss that may be caused in delivery of the services.\n This Offer is made available to the Customers selected at the discretion of HDFC Bank.\n The offer cannot be combined with any other offer\n If promo code is mentioned as part of the communication (please refer Offer details tab) then customer has to use the code to avail the offer; in case the code is not used Discount/ Cashback cannot be credited back to customer at a later date.\n Any person availing this offer shall be deemed to have accepted these Terms and Conditions.\n HDFC Bank reserves the right, at any time, without prior notice and without assigning any reason whatsoever, to add/alter/modify/change or vary all these terms and conditions or to replace, wholly or in part, this offers by another offer, whether like this offer or not, or to extend or withdraw it altogether.\n Eligible benefits for this promotion (such as Reward points / cashback) will only be posted to accounts that are active at the time of postings. \n Benefits will not be posted on credit card accounts which are permanently delinquent or closed at the time of posting.\n Benefits will also not be posted on retail credit card accounts that are flagged for working capital usage.\n HDFC Bank Cardholders are not bound in any way to participate in this offer. Any participation is voluntary, and the offer is being made purely on a best effort basis.\n Nothing herein amounts to a commitment by HDFC Bank to conduct further, similar, or other offers.\n Offer valid only on Retail Credit Cards, Business and select Corporate Cards and Commercial Credit cards.\n This offer is non-cashable, not extendable, and non-negotiable.\n If a card member has more than 1 (one) HDFC Bank Credit/Debit Card, spends on the cards cannot be clubbed by the card member to qualify for the said offer.\n The above offer is by way of a special offer funded by the Merchant for select HDFC Bank Credit/Debit Cardholders only and nothing contained herein shall prejudice or affect the terms and conditions of the card member agreement. The terms of the above schemes shall be in addition to and not in derogation of the terms contained in the card member agreement.\n All disputes, if any, arising out of or in connection with or because of above offers or otherwise relating hereto shall be subject to the exclusive jurisdiction of the competent courts / tribunals in Mumbai only, irrespective of whether courts / tribunals in other areas have concurrent or similar jurisdiction.\n Any query regarding the program will be entertained till 60 days from the posting date. After said date the Bank will not entertain any correspondence or communication regarding this Program from the cardholder.\n Any Tax, service charge or other charges levied with regards to the Promotional Offer, may be borne by the Card Holder / winner." ]
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "aanvaya kin care pvt ltd" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"wishlisted" : false
} ],
"entertainment" : [ {
"id" : "70e01d02-fa9c-3045-9ef7-9cc4a2f8496a",
"name" : "Christmas Wonderland Singapore",
"category" : "entertainment",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/HO6_Christmas_Wonderland_Singapore_Merchant.webp",
"externalId" : "DP259",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/HO6_Christmas_Wonderland_Singapore_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/headout-logo.webp",
"url" : "https://www.headout.com/tour/19773/?bi=JTdCJTIydCUyMiUzQSUyMjEwJTI1JTIwb2ZmJTIwb24lMjB0b3AlMjBTaW5nYXBvcmUlMjBleHBlcmllbmNlcyUzRiUyMFllcyUyQyUyMHBsZWFzZSElMjIlMkMlMjJkZXNjJTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmMlMjIlM0ElMjJIT0hTQkMxMCUyMiUyQyUyMnR5cGUlMjIlM0ElMjJQUk9NT19NQU5VQUwlMjIlMkMlMjJzdWJUZXh0JTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmJhY2tncm91bmQlMjIlM0ElN0IlMjJ1cmwlMjIlM0ElMjJodHRwcyUzQSUyRiUyRmNkbi1pbWdpeC5oZWFkb3V0LmNvbSUyRnRvdXIlMkYxMzQ0MCUyRlRPVVItSU1BR0UlMkZiYzYzNTc2OS05NTE2LTRhOGQtOWI4OC0wM2Q4ZTBiNjYyNWUtNzM1OC1zaW5nYXBvcmUtZ2FyZGVucy1ieS10aGUtYmF5LWRpcmVjdC1lbnRyeS10aWNrZXRzLTAzLmpwZWclMjIlN0QlMkMlMjJ0bmMlMjIlM0ElMjJPZmZlciUyMHZhbGlkJTIwZnJvbSUyMDE1dGglMjBBcHJpbCUyMDIwMjMlMjB0byUyMDE1dGglMjBTZXB0ZW1iZXIlMjAyMDIzLiUyMFRlcm1zJTIwYW5kJTIwQ29uZGl0aW9ucyUyMEFwcGx5JTIwKGJpdC5seSUyRkhPSFNCQzEwX1Rlcm1zKSUyMiU3RA==&utm_source=partnership&utm_medium=CDPortal&utm_campaign=HSBC",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/HO6_Christmas_Wonderland_Singapore_Banner.webp",
"totalViews" : 2,
"tasteMatchScore" : 72
},
"offers" : [ {
"id" : "201893",
"name" : "Get 10% off on Tickets to Christmas Wonderland 2022 at Gardens By The Bay",
"description" : "Get 10% off on Tickets to Christmas Wonderland 2022 at Gardens By The Bay till 15-09-2023\nOnline offer",
"validFrom" : "2023-04-15T00:00:00.389Z",
"validTo" : "2026-09-15T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "HOHSBC10",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/HO6_Christmas_Wonderland_Singapore_Offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.headout.com/tour/19773/?bi=JTdCJTIydCUyMiUzQSUyMjEwJTI1JTIwb2ZmJTIwb24lMjB0b3AlMjBTaW5nYXBvcmUlMjBleHBlcmllbmNlcyUzRiUyMFllcyUyQyUyMHBsZWFzZSElMjIlMkMlMjJkZXNjJTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmMlMjIlM0ElMjJIT0hTQkMxMCUyMiUyQyUyMnR5cGUlMjIlM0ElMjJQUk9NT19NQU5VQUwlMjIlMkMlMjJzdWJUZXh0JTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmJhY2tncm91bmQlMjIlM0ElN0IlMjJ1cmwlMjIlM0ElMjJodHRwcyUzQSUyRiUyRmNkbi1pbWdpeC5oZWFkb3V0LmNvbSUyRnRvdXIlMkYxMzQ0MCUyRlRPVVItSU1BR0UlMkZiYzYzNTc2OS05NTE2LTRhOGQtOWI4OC0wM2Q4ZTBiNjYyNWUtNzM1OC1zaW5nYXBvcmUtZ2FyZGVucy1ieS10aGUtYmF5LWRpcmVjdC1lbnRyeS10aWNrZXRzLTAzLmpwZWclMjIlN0QlMkMlMjJ0bmMlMjIlM0ElMjJPZmZlciUyMHZhbGlkJTIwZnJvbSUyMDE1dGglMjBBcHJpbCUyMDIwMjMlMjB0byUyMDE1dGglMjBTZXB0ZW1iZXIlMjAyMDIzLiUyMFRlcm1zJTIwYW5kJTIwQ29uZGl0aW9ucyUyMEFwcGx5JTIwKGJpdC5seSUyRkhPSFNCQzEwX1Rlcm1zKSUyMiU3RA==&utm_source=partnership&utm_medium=CDPortal&utm_campaign=HSBC",
"termsAndConditions" : [ "1. Headout has the sole authority for the interpretation of these terms and conditions. \n2. In addition to these terms and conditions, Headout's terms of use and privacy policy shall also apply. \n3. This offer is applicable on all Singapore based experiences listed on Headout's Website. \n4. The offer shall be redeemed by Users through the use of coupon codes that are issued to them via their bank portal. To redeem the offer, Users must select the offer on the bank portal and obtain a coupon code. The User will then be directed to the relevant product page on the Headout's website. Upon reaching the Headout's website, the User must enter the unique coupon code at the checkout page before making any payment. The offer cannot be redeemed after the payment has been processed. In case, if Headout finds out that User has redeemed the offer in any other manner, Headout reserves the right to either cancel the booking or take any other action as it may deem fit. \n5. The coupon code application shall be restricted to a maximum of three uses per individual User. If a user cancels their booking, the coupon code will remain valid for the tenure provided in clause 6 below, as long as it has not been used three times. Any additional uses of the coupon code will not be honored. \n6. The coupon code shall be valid from 15th April 2023 to 15th September 2023. \n7. Discount provided under this coupon code will not be clubbed with any other offer. \n8. In case of full/partial cancellation, the offer redeemed under the coupon code shall stand void and the user will not be eligible for the discount. Headout shall process the refund, to the original source, post adjusting the discount and/or any other applicable charges and penalties. \n9. In case of the loss of the Coupon code because of any reason that is directly related to the User neither Crayon nor Headout shall have any liability whatsoever. \n10. Coupon Codes are non transferable and can only be used for the purchases of experiences listed on the Headout website. \n11. In case Headout witnesses any fraudulent activity from User's end, it shall have the right to disqualify that particular User from the benefits of the offer and take any corrective action as per the law. \n12. Headout shall not be liable for any loss or damage arising due to force majeure scenarios like act of god, epidemic/pandemic, government restrictions, strikes,riots etc. \n13. Only individual Users are allowed to claim benefits under this offer. Travel agents are barred from availing any benefits under this offer. Headout reserves the right to deny any benefit under this offer to travel agents. Headout may also opt to cancel such bookings without processing any refunds against the same. \n14. User understands that their participation in this offer is voluntary in nature. If a User claims any benefit under this offer it will be construed that they have read understood and accepted these terms and conditions. \n15. In the events of any dispute, the courts of the state of New York (United States) shall have exclusive jurisdiction." ],
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/HO6_Christmas_Wonderland_Singapore_Offer.webp",
"offerType" : "offline coupon",
"offerSource" : "headout",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "landmarks-and-points-of-interest", "amusement-parks", "theme-parks" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"wishlisted" : false
}, {
"id" : "17e59176-b45d-3845-9a15-5940a3fb52a5",
"name" : "Adventure Cove Waterpark",
"category" : "entertainment",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/HO2_Adventure_Cove_Waterpark_Merchant.webp",
"externalId" : "DP256",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/HO2_Adventure_Cove_Waterpark_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/headout-logo.webp",
"url" : "https://www.headout.com/tour/7444/?bi=JTdCJTIydCUyMiUzQSUyMjEwJTI1JTIwb2ZmJTIwb24lMjB0b3AlMjBTaW5nYXBvcmUlMjBleHBlcmllbmNlcyUzRiUyMFllcyUyQyUyMHBsZWFzZSElMjIlMkMlMjJkZXNjJTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmMlMjIlM0ElMjJIT0hTQkMxMCUyMiUyQyUyMnR5cGUlMjIlM0ElMjJQUk9NT19NQU5VQUwlMjIlMkMlMjJzdWJUZXh0JTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmJhY2tncm91bmQlMjIlM0ElN0IlMjJ1cmwlMjIlM0ElMjJodHRwcyUzQSUyRiUyRmNkbi1pbWdpeC5oZWFkb3V0LmNvbSUyRnRvdXIlMkYxMzQ0MCUyRlRPVVItSU1BR0UlMkZiYzYzNTc2OS05NTE2LTRhOGQtOWI4OC0wM2Q4ZTBiNjYyNWUtNzM1OC1zaW5nYXBvcmUtZ2FyZGVucy1ieS10aGUtYmF5LWRpcmVjdC1lbnRyeS10aWNrZXRzLTAzLmpwZWclMjIlN0QlMkMlMjJ0bmMlMjIlM0ElMjJPZmZlciUyMHZhbGlkJTIwZnJvbSUyMDE1dGglMjBBcHJpbCUyMDIwMjMlMjB0byUyMDE1dGglMjBTZXB0ZW1iZXIlMjAyMDIzLiUyMFRlcm1zJTIwYW5kJTIwQ29uZGl0aW9ucyUyMEFwcGx5JTIwKGJpdC5seSUyRkhPSFNCQzEwX1Rlcm1zKSUyMiU3RA==&utm_source=partnership&utm_medium=CDPortal&utm_campaign=HSBC",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/HO2_Adventure_Cove_Waterpark_Banner.webp",
"totalViews" : 7,
"tasteMatchScore" : 72
},
"offers" : [ {
"id" : "201889",
"name" : "Get 10% off on Adventure Cove Waterpark entry tickets",
"description" : "Get 10% off on Adventure Cove Waterpark entry tickets till 15-09-2023\nOnline offer",
"validFrom" : "2023-04-15T00:00:00.389Z",
"validTo" : "2026-09-15T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "HOHSBC10",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/HO2_Adventure_Cove_Waterpark_Offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.headout.com/tour/7444/?bi=JTdCJTIydCUyMiUzQSUyMjEwJTI1JTIwb2ZmJTIwb24lMjB0b3AlMjBTaW5nYXBvcmUlMjBleHBlcmllbmNlcyUzRiUyMFllcyUyQyUyMHBsZWFzZSElMjIlMkMlMjJkZXNjJTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmMlMjIlM0ElMjJIT0hTQkMxMCUyMiUyQyUyMnR5cGUlMjIlM0ElMjJQUk9NT19NQU5VQUwlMjIlMkMlMjJzdWJUZXh0JTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmJhY2tncm91bmQlMjIlM0ElN0IlMjJ1cmwlMjIlM0ElMjJodHRwcyUzQSUyRiUyRmNkbi1pbWdpeC5oZWFkb3V0LmNvbSUyRnRvdXIlMkYxMzQ0MCUyRlRPVVItSU1BR0UlMkZiYzYzNTc2OS05NTE2LTRhOGQtOWI4OC0wM2Q4ZTBiNjYyNWUtNzM1OC1zaW5nYXBvcmUtZ2FyZGVucy1ieS10aGUtYmF5LWRpcmVjdC1lbnRyeS10aWNrZXRzLTAzLmpwZWclMjIlN0QlMkMlMjJ0bmMlMjIlM0ElMjJPZmZlciUyMHZhbGlkJTIwZnJvbSUyMDE1dGglMjBBcHJpbCUyMDIwMjMlMjB0byUyMDE1dGglMjBTZXB0ZW1iZXIlMjAyMDIzLiUyMFRlcm1zJTIwYW5kJTIwQ29uZGl0aW9ucyUyMEFwcGx5JTIwKGJpdC5seSUyRkhPSFNCQzEwX1Rlcm1zKSUyMiU3RA==&utm_source=partnership&utm_medium=CDPortal&utm_campaign=HSBC",
"termsAndConditions" : [ "1. Headout has the sole authority for the interpretation of these terms and conditions. \n2. In addition to these terms and conditions, Headout's terms of use and privacy policy shall also apply. \n3. This offer is applicable on all Singapore based experiences listed on Headout's Website. \n4. The offer shall be redeemed by Users through the use of coupon codes that are issued to them via their bank portal. To redeem the offer, Users must select the offer on the bank portal and obtain a coupon code. The User will then be directed to the relevant product page on the Headout's website. Upon reaching the Headout's website, the User must enter the unique coupon code at the checkout page before making any payment. The offer cannot be redeemed after the payment has been processed. In case, if Headout finds out that User has redeemed the offer in any other manner, Headout reserves the right to either cancel the booking or take any other action as it may deem fit. \n5. The coupon code application shall be restricted to a maximum of three uses per individual User. If a user cancels their booking, the coupon code will remain valid for the tenure provided in clause 6 below, as long as it has not been used three times. Any additional uses of the coupon code will not be honored. \n6. The coupon code shall be valid from 15th April 2023 to 15th September 2023. \n7. Discount provided under this coupon code will not be clubbed with any other offer. \n8. In case of full/partial cancellation, the offer redeemed under the coupon code shall stand void and the user will not be eligible for the discount. Headout shall process the refund, to the original source, post adjusting the discount and/or any other applicable charges and penalties. \n9. In case of the loss of the Coupon code because of any reason that is directly related to the User neither Crayon nor Headout shall have any liability whatsoever. \n10. Coupon Codes are non transferable and can only be used for the purchases of experiences listed on the Headout website. \n11. In case Headout witnesses any fraudulent activity from User's end, it shall have the right to disqualify that particular User from the benefits of the offer and take any corrective action as per the law. \n12. Headout shall not be liable for any loss or damage arising due to force majeure scenarios like act of god, epidemic/pandemic, government restrictions, strikes,riots etc. \n13. Only individual Users are allowed to claim benefits under this offer. Travel agents are barred from availing any benefits under this offer. Headout reserves the right to deny any benefit under this offer to travel agents. Headout may also opt to cancel such bookings without processing any refunds against the same. \n14. User understands that their participation in this offer is voluntary in nature. If a User claims any benefit under this offer it will be construed that they have read understood and accepted these terms and conditions. \n15. In the events of any dispute, the courts of the state of New York (United States) shall have exclusive jurisdiction." ],
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/HO2_Adventure_Cove_Waterpark_Offer.webp",
"offerType" : "offline coupon",
"offerSource" : "headout",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "landmarks-and-points-of-interest", "water-and-amusement-parks", "amusement-parks", "theme-parks" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"wishlisted" : false
} ],
"dining" : [ {
"id" : "2a8b485b-4e1e-32dd-8107-14e4a467b163",
"name" : "Papillon Cake",
"category" : "dining",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_merchant.webp",
"externalId" : "LL1064",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_logo.webp",
"url" : "https://papilloncake.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_banner.webp",
"totalViews" : 97,
"tasteMatchScore" : 76
},
"offers" : [ {
"id" : "181064",
"name" : "test something",
"description" : "Get up to 15% off on your purchase at Papillon Cake till 21-04-2023\nInstore offer\nThe offer doesn’t apply to alcohol, pork products, tobacco, and other non-shari’a compliant items/product",
"validFrom" : "2023-03-22T00:00:00.389Z",
"validTo" : "2026-12-31T00:00:00.389Z",
"partner" : true,
"isOnline" : false,
"sensitiveFlag" : false,
"offerActive" : true,
"locations" : [ "254531" ],
"offerCities" : [ "Chennai" ],
"offerCountries" : [ "India" ],
"offerGeoCodes" : [ {
"latitude" : "25.11722046",
"longitude" : "55.23685859"
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percent",
"offerSource" : "loyolink",
"howToRedeem" : "Simply visit any outlet where the offer is applicable as per T&C and use your ADIB Covered or Debit card to pay and get this offer!",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"termsAndConditions" : [ "1.The offer is valid till 21-04-2023\n2.Offer is not valid in conjunction with other offers, discounts and special promotions.\n3.Offer is applicable for ADIB card users only\n4.Offer is subject to merchant approval\n5.The customer should inform the merchant executive about the offer before billing, and ensure that the discount is applied before making the payment.\n6.Offer cannot be exchanged for cash or any other merchandise.\n7.For more offer related queries contact: 042-683999\n8.The offer is applicable at : Al Quoz Industrial Area 4, Dubai\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services." ]
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "REGALIA" ]
}, {
"id" : "181065",
"name" : "Get up to 15% off on your purchase at Papillon Cake",
"description" : "Get up to 15% off on your purchase at Papillon Cake till 21-04-2023\nOnline offer\nThe offer doesn’t apply to alcohol, pork products, tobacco, and other non-shari’a compliant items/product",
"validFrom" : "2023-03-22T00:00:00.389Z",
"validTo" : "2026-04-21T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB15",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer2.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://papilloncake.com/",
"termsAndConditions" : [ "1.The offer is valid upto 21-04-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services." ],
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer2.webp",
"offerType" : "offline coupon",
"offerSource" : "loyolink",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "INFINIA" ]
} ],
"tags" : [ "bakery", "online-order", "take-away", "cafe", "cakes", "affordable", "delivery-services", "general", "fast-food" ],
"cities" : [ "all", "Dubai" ],
"geoCodes" : [ {
"latitude" : "25.11722046",
"longitude" : "55.23685859"
} ],
"isOnline" : true,
"merchantType" : [ "offline", "online" ],
"isHyperLocal" : false,
"wishlisted" : true
}, {
"id" : "6ec61a75-8c63-3c6d-9ea1-54c7c3604d24",
"name" : "Havmor exc",
"category" : "dining",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/talabat-logo.webp",
"dominantColorCode" : "",
"externalId" : "HDFC105787",
"curatedImage" : "",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Talabat_MerchantImage.webp",
"url" : "https://ebay.com",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Talabat_Banner.webp",
"totalViews" : 167,
"tasteMatchScore" : 72
},
"offers" : [ {
"id" : "413644",
"name" : "Havmor exc offer",
"description" : "25% off on food",
"validFrom" : "2025-08-07T00:00:00.389Z",
"validTo" : "2026-07-07T23:59:59.389Z",
"partner" : true,
"isOnline" : false,
"sensitiveFlag" : false,
"offerActive" : true,
"locations" : [ "1043711", "1043712" ],
"offerCities" : [ "Chennai" ],
"offerCountries" : [ "India" ],
"offerGeoCodes" : [ {
"latitude" : "13.0029",
"longitude" : "80.2711"
}, {
"latitude" : "13.0417",
"longitude" : "80.1302"
} ],
"properties" : {
"redemptionCode" : "",
"image" : "https://img.com/offer1.png",
"payoutType" : "cpa_percentage",
"cashbackValue" : "",
"offerVariant" : "EASYEMI",
"offerStatus" : "active",
"url" : "https://amazon.com",
"termsAndConditions" : [ "Standard T&C" ],
"curatedOfferImage" : "",
"offerType" : "Offline coupon",
"offerSource" : "CARDS & EASYEMI",
"howToRedeem" : "Redeem by visiting shop",
"currency" : "",
"offerSourceImage" : "https://img.com/offer1.png"
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "DINERS BLACK" ],
"applicableChannel" : [ "online", "offline" ]
} ],
"tags" : [ "" ],
"cities" : [ "Chennai", "Chennai" ],
"geoCodes" : [ {
"latitude" : "13.0029",
"longitude" : "80.2711"
}, {
"latitude" : "13.0417",
"longitude" : "80.1302"
} ],
"isOnline" : false,
"merchantType" : [ "offline" ],
"isHyperLocal" : true,
"wishlisted" : false
} ],
"travel" : [ {
"id" : "acb1cfbc-0ef4-3e59-9a4c-89168ce167e7",
"name" : "Fairmont Hotel",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP189_Fairmont_Card.webp",
"dominantColorCode" : "#FBB3BD",
"externalId" : "DP189",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP189_Fairmont_Card.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/DP189_Fairmont_logo.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/DP189_Fairmont_Banner.webp",
"totalViews" : 1,
"tasteMatchScore" : 85
},
"offers" : [ {
"id" : "98319",
"name" : "Get up to 15% off on your stay at Fairmont hotel, Cairo",
"description" : "Get up to 15% off on your stay at Fairmont hotel, Cairo until 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98319_Fairmont_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98319_Fairmont_Offer.webp",
"offerType" : "offline coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=fairmont-nile-city-hotel-1307205",
"termsAndConditions" : [ "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.The offer is valid on bookings done on rehlat.ae website or app only \n4.Offer is not valid in conjunction with any other offer, discount, and special promotion\n5.Offer is valid for ADIB card users only\n6.Offer is subject to merchant approval and till stock is available\n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n *The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services." ]
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "suite", "front-desk", "shopping-outlets", "banquet-hall", "king-room", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "luxury-hotel", "backpacker", "business-traveller", "family-room", "couple", "room-service", "bathrobe", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "garden", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "luggage-storage", "airport-transportation", "desk", "queen-room", "soundproof-room", "museum", "security", "classical-design", "swimming-pool", "fitness-centre", "atm", "free-internet", "air-conditioner", "hair-dryer", "fairmont", "large-beds" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"wishlisted" : false
}, {
"id" : "cdb0a2c5-6b4f-3f61-bedb-6a20f3cc9fc9",
"name" : "The Ritz-Carlton",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1308-TheRitzCarltonAbuDhabiGrandCanal.webp.webp",
"dominantColorCode" : "#3750ad",
"externalId" : "DP35",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1308-TheRitzCarltonAbuDhabiGrandCanal.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB1308_The_Ritz_Carlton_Abu_Dhabi_Grand_Canal_New_Logo.webp.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/BB1308-TheRitzCarltonAbuDhabiGrandCanal.webp.webp",
"totalViews" : 1,
"tasteMatchScore" : 85
},
"offers" : [ {
"id" : "80529",
"name" : "Get up to 15% off on your stay at The Ritz-Carlton, Dubai",
"description" : "Get up to 15% off on your stay at The Ritz-Carlton, Dubai till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1308_The_Ritz_Carlton_Abu_Dhabi_Grand_Canal_Merchant_Card_Image.webp.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1308_The_Ritz_Carlton_Abu_Dhabi_Grand_Canal_Merchant_Card_Image.webp.webp",
"offerType" : "offline coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/ja/cheap-hotels/profile/The-Ritz-Carlton-Dubai-1507233",
"termsAndConditions" : [ "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : P.O. Box 26525, Al Mamsha Street, Dubai, United Arab Emirates ; Contact : 97143994000/dxbrz.leads@ritzcarlton.com\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services." ]
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "business-traveller", "family-room", "room-service", "bathrobe", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"wishlisted" : false
}, {
"id" : "39c3f5d4-8e6d-37be-b521-7b20bc4507b5",
"name" : "St Regis At Saadiyat Island",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/The_St_Regis_Saadiyat_Island_Resort_Offer_Image.webp.webp",
"dominantColorCode" : "#fff57a",
"externalId" : "DP38",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/The_St_Regis_Saadiyat_Island_Resort_Offer_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB1316_The_St._Regis_Amman_New_Logo.webp.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/The_St_Regis_Saadiyat_Island_Resort_Banner.webp.webp",
"totalViews" : 11,
"tasteMatchScore" : 91
},
"offers" : [ {
"id" : "80514",
"name" : "Get up to 15% off on your stay at St Regis at saadiyat Island",
"description" : "Get up to 15% off on your stay at St Regis at saadiyat Island till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/The_St_Regis_Saadiyat_Island_Resort_Merchant_Image.webp.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/The_St_Regis_Saadiyat_Island_Resort_Merchant_Image.webp.webp",
"offerType" : "offline coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=the-st-regis-saadiyat-island-resort-1333855",
"termsAndConditions" : [ "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : P.O. Box 54345, Abu Dhabi, United Arab Emirates ; Contact : reservations.saadiyat@stregis.com\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services." ]
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "business-traveller", "family-room", "room-service", "bathrobe", "couple", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "sofitel", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"wishlisted" : false
}, {
"id" : "eedd023a-4a05-3f88-84bc-e14742bbfcee",
"name" : "Sterling Holidays",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"externalId" : "HDFC24541",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"url" : "https://www.sterlingholidays.com",
"totalViews" : 144,
"tasteMatchScore" : 85
},
"offers" : [ {
"id" : "287462",
"name" : "25% off on Room Rates & Exclusive Value Voucher of Rs. 1000/-",
"description" : "25% off on Room Rates & Exclusive Value Voucher of Rs. 1000/-",
"validFrom" : "2023-10-20T00:00:00.389Z",
"validTo" : "2026-10-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "India" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "hdfc",
"howToRedeem" : "Redeemable at The Time of Booking on Sterling Website - sterlingholidays.com",
"currency" : "",
"payoutValue" : "25.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.sterlingholidays.com",
"termsAndConditions" : [ "The Offer is valid till 25% off on Room Rates & Exclusive Value Voucher of Rs. 1000/-\nMinimum 2 Night Booking to Avail this Offer\nCardholders need to indicate their intention to redeem the Offer before the bill is generated and may be asked to present their Mastercard card for confirmation\nFor participating outlets Click here\nThe Offer is available only upon making full payment by a valid and unexpired Mastercard card issued in India.\nOffer cannot be combined with any other offer/ promotion/ scheme.\nThe Offer is non-transferable and cannot be exchanged for cash or cheque or any form of credit.\nTotal spending will be calculated based on the product cost only excluding all taxes, GST, delivery charges, etc. Any taxes or liabilities or charges payable to the Government or any other authority or body, if any, shall be borne directly by the cardholder and/ or billed to the account of the cardholder.\nAny dispute regarding delivery, service, suitability, merchantability, availability or quality of the offer/or product/services availed under this offer must be addressed in writing, by the cardholder directly to info@thriwe.com. Mastercard or the issuing bank will not be liable for the same.\nCardholders are not bound in any way to participate in the Offer. Any participation shall be voluntary, and all participants understand, acknowledge and agree that the Offer is purely on a best effort basis and Mastercard does not assume any liability whatsoever regarding the Offer, the delivery of services or any incidental matter.\nAny cardholder who utilises, participates in or attempts to utilise or participate in the Mastercard Card Offers program, irrevocably agrees to the following: Mastercard will not be liable under contract, tort or any other theory of law for any claim regarding loss or damage howsoever incurred in relation to the use (or attempted use) of the Offer; and accordingly, the cardholder will not make any claim against Mastercard regarding the same.\nEach benefit/privilege may be subject to additional terms and conditions imposed by Sterling Holidays The right of admission is reserved with the merchant. Cardholders are solely responsible for checking and complying with the same.\nThese terms and conditions shall be governed by the laws of India and any dispute arising out of or in connection with these terms and conditions shall be subject to the exclusive jurisdiction of the courts in Mumbai.\nMastercard reserves the right to add, alter, modify, change or vary any of these terms and conditions or to replace, wholly or in part, this Offer by another offer, whether similar or not, or to withdraw it altogether at any point in time, without any prior notice." ]
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "197570",
"name" : "get a flat Rs. 1000 off on room rates at over 40+ resorts pan India.",
"description" : "This offer can be availed on top of our existing offers on www.sterlingholidays.com.\n Choose from a variety of destinations including hill stations, beaches, riverfront, jungle, adventure, heritage, and drive-to.\n Don't wait. This limited-period offer is waiting for you!\n Book now and indulge in the Sterling experience!",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "hdfc",
"howToRedeem" : "Click on this link: https://www.sterlingholidays.com/sterling-hdfc-voucher-offer\n Enter your Name, Mobile Number & Email ID in the given fields.\n Click on Submit to generate your HDFC Sterling voucher worth Rs. 1000/-.\n The coupon code will be sent to your mobile number and email ID.\n Visit https://www.sterlingholidays.com/bookings\n Choose your desired destination and travel dates. Check availability.\n Select the type of rooms you want based on your requirements. Sign up or log in to proceed.\n Enter the code in the 'Apply Coupon Code' section and click submit.\n Use your HDFC Bank debit or credit card to make payment at the checkout page.\n Enjoy a wonderful holiday experience with your loved ones!",
"currency" : "",
"payoutValue" : "5",
"offerStatus" : "active",
"url" : "https://www.sterlingholidays.com",
"termsAndConditions" : [ "Sterling Holidays shall honour and consider requests to block the Sterling HDFC Voucher (SHV) only from registered users per the terms of SHV mentioned below:-\n\n \n SHV may be used only at participating Sterling Resorts in India against room tariff while booking a holiday. The SHV can be redeemed against bookings within the validity period of the SWBV and for a booking with a minimum value of Rs.7,000 on room tariff for a minimum length of stay as two nights.\n All SHVs issued shall have a validity period of 6 months from the date of issuance of the voucher.\n No refund, replacement or cash back would be considered against the SHV.\n Reload is not applicable in the case of SHV.\n STERLING HOLIDAYS reserve the entitlement to amend these terms and conditions occasionally. Any change in these terms and conditions can be viewed on our website.\n The voucher is valid for spending towards stay and applicable taxes at any participating Resorts when booked on www.sterlingholidays.com website.\n The voucher is not valid for spending towards settling banquet charges, paid-outs like car transfers, value-added services on the website, spending at retail or any third-party service establishment at participating Resorts, or any expenses of personal nature for which a pay-out is raised, such as buying medicines, sightseeing charges etc.\n\nThe SHV cannot be used as a deposit\n\n The voucher cannot be used to settle stays booked on/thru\n\n a. Corporate rates\n\n b. Group rates\n\n c. Online Travel Agents (OTA s)\n\n d. Any discounted or contracted room rates\n\n e. Travel Agents/Intermediaries\n\n f. Any commission agents\n\n \n The SHV shall not be applicable for redemption in conjunction with any other offer/promotion or benefit(s) apart from what is available as an open offer on the brand website.\n The SHV shall not be valid for cash or currency exchange withdrawal.\n This voucher is for one-time use only, and the entire value will be deducted from the room tariff of the booking where it is availed. No balance will be left/carried over after the voucher is used once.\n The purchase value shall exceed the SHV value, and the differential amount of such purchase shall have to be paid at the point of sale through an accepted credit or debit card when making a reservation.\n An SHV, once issued, cannot be cancelled or refunded.\n The SHV is subject to applicable laws. The card voucher holder shall comply with all applicable laws promulgated by any statutory/judicial/competent authority from time to time in this regard.\n\n \n\nFor queries, email at crs@sterlingholidays.com or call us at 9003302727." ]
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "232704",
"name" : "Experience luxury leisure hospitality with Sterling Holidays and Resorts! As an HDFC bank card customer, get a flat Rs. 1000 off on room rates at over 40+ resorts pan India.",
"description" : "This offer can be availed on top of our existing offers on www.sterlingholidays.com.\nChoose from a variety of destinations including hill stations, beaches, riverfront, jungle, adventure, heritage, and drive-to.\nDon't wait. This limited-period offer is waiting for you!\nBook now and indulge in the Sterling experience!",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"offerType" : "online coupon",
"payoutType" : "cpa_flat",
"offerSource" : "hdfc",
"howToRedeem" : "Click on this link: https://www.sterlingholidays.com/sterling-hdfc-voucher-offer\nEnter your Name, Mobile Number & Email ID in the given fields.\nClick on Submit to generate your HDFC Sterling voucher worth Rs. 1000/-.\nThe coupon code will be sent to your mobile number and email ID.\nVisit https://www.sterlingholidays.com/bookings\nChoose your desired destination and travel dates. Check availability.\nSelect the type of rooms you want based on your requirements. Sign up or log in to proceed.\nEnter the code in the 'Apply Coupon Code' section and click submit.\nUse your HDFC Bank debit or credit card to make payment at the checkout page.\nEnjoy a wonderful holiday experience with your loved ones!",
"currency" : "",
"payoutValue" : "1000",
"offerStatus" : "active",
"url" : "https://www.sterlingholidays.com/",
"termsAndConditions" : [ "Sterling Holidays shall honour and consider requests to block the Sterling HDFC Voucher (SHV) only from registered users per the terms of SHV mentioned below:-\n\n \n\nSHV may be used only at participating Sterling Resorts in India against room tariff while booking a holiday. The SHV can be redeemed against bookings within the validity period of the SWBV and for a booking with a minimum value of Rs.7,000 on room tariff for a minimum length of stay as two nights.\nAll SHVs issued shall have a validity period of 6 months from the date of issuance of the voucher.\nNo refund, replacement or cash back would be considered against the SHV.\nReload is not applicable in the case of SHV.\nSTERLING HOLIDAYS reserve the entitlement to amend these terms and conditions occasionally. Any change in these terms and conditions can be viewed on our website.\nThe voucher is valid for spending towards stay and applicable taxes at any participating Resorts when booked on www.sterlingholidays.com website.\nThe voucher is not valid for spending towards settling banquet charges, paid-outs like car transfers, value-added services on the website, spending at retail or any third-party service establishment at participating Resorts, or any expenses of personal nature for which a pay-out is raised, such as buying medicines, sightseeing charges etc.\nThe SHV cannot be used as a deposit\n\n The voucher cannot be used to settle stays booked on/thru\n\n a. Corporate rates\n\n b. Group rates\n\n c. Online Travel Agents (OTA s)\n\n d. Any discounted or contracted room rates\n\n e. Travel Agents/Intermediaries\n\n f. Any commission agents\n\n \n\nThe SHV shall not be applicable for redemption in conjunction with any other offer/promotion or benefit(s) apart from what is available as an open offer on the brand website.\nThe SHV shall not be valid for cash or currency exchange withdrawal.\nThis voucher is for one-time use only, and the entire value will be deducted from the room tariff of the booking where it is availed. No balance will be left/carried over after the voucher is used once.\nThe purchase value shall exceed the SHV value, and the differential amount of such purchase shall have to be paid at the point of sale through an accepted credit or debit card when making a reservation.\nAn SHV, once issued, cannot be cancelled or refunded.\nThe SHV is subject to applicable laws. The card voucher holder shall comply with all applicable laws promulgated by any statutory/judicial/competent authority from time to time in this regard.\n \n\nFor queries, email at crs@sterlingholidays.com or call us at 9003302727." ]
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "travel-agency", "travel-agencies-and-operators", "hotel-booking" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"wishlisted" : false
} ],
"retail stores" : [ {
"id" : "47674a21-914c-3b2a-a245-4985a489c14f",
"name" : "Roman General Stores",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/genric_updated/1280x800/1282.webp",
"externalId" : "BE21054",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/genric_updated/1280x800/1282.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/hdfc/genric_updated/1280x800/1282.webp",
"totalViews" : 423,
"tasteMatchScore" : 93
},
"offers" : [ {
"id" : "195189",
"name" : "5% off on total Bill",
"description" : "5% off on total Bill",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : false,
"sensitiveFlag" : false,
"offerActive" : true,
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/genric_updated/1280x800/1282.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/genric_updated/1280x800/1282.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "hdfc",
"howToRedeem" : "Visit your nearest store, show the offer communication before billing and use your HDFC Bank Cards for this discount.",
"currency" : "",
"payoutValue" : "5",
"offerStatus" : "active"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "local", "convenience-store", "in-store", "affordable", "food-beverages-and-groceries", "multi-brand", "groceries", "basic-service" ],
"isOnline" : false,
"merchantType" : [ "offline" ],
"isHyperLocal" : false,
"wishlisted" : true
}, {
"id" : "4bc63579-a6a4-3866-8308-880f3cc42147",
"name" : "ACE",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DC2_webp_Ace_Hardware_card.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DC2",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DC2_webp_Ace_Hardware_card.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/DC2_webp_DC2_webp_Ace_Hardware_card_Logo.webp",
"url" : "https://www.aceuae.com/en-ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/DC2_webp_Ace_Hardware_banner.webp",
"totalViews" : 382,
"tasteMatchScore" : 83
},
"offers" : [ {
"id" : "179493",
"name" : "Get up to 10% off on your purchase at ACE",
"description" : "Get up to 10% off on your purchase at ACE till 31-12-2023\nonline offer",
"validFrom" : "2023-02-23T00:00:00.389Z",
"validTo" : "2026-11-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "MPR31JY",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/ace-offer.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.aceuae.com/en-ae/",
"termsAndConditions" : [ "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:Electronics, Promotional Items & Promotional Services – ex Free Assembly\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services." ],
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/ace-offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "MONEYBACK" ]
} ],
"tags" : [ "hardware", "kitchen-appliances", "automobile-and-accessories", "home-improvement-supplies", "pet-supplies", "furniture", "pet-and-pet-supplies", "online-and-in-store", "plant-nursery", "home-appliances", "home-furnishings", "home-and-kitchen", "gardening-supplies", "kitchen-accessories", "paint-supplies", "kids-furniture", "building-supplies", "computer-and-electronics", "tools-and-home-improvement", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"wishlisted" : false
}, {
"id" : "549031ed-bedf-389a-a1c1-057bc10a48a1",
"name" : "Beauty Tribe",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/beauty_tribe_merchant.webp",
"externalId" : "AY4",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/beauty_tribe_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/beauty_tribe_logo.webp",
"url" : "https://beautytribe.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/beauty_tribe_banner.webp",
"totalViews" : 1,
"tasteMatchScore" : 83
},
"offers" : [ {
"id" : "206480",
"name" : "Get up to 10% discount on your purchase at Beauty Tribe",
"description" : "Get up to 10% discount on your purchase at Beauty Tribe till 31-12-2023\nOnline offer",
"validFrom" : "2023-05-03T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "BS21",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/beauty_tribe_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://beautytribe.com/",
"termsAndConditions" : [ "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services." ],
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/beauty_tribe_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "arabyads",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "7.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "large-product-range", "online", "perfumery", "health-and-beauty", "cosmetics-and-skincare", "multi-brand", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"wishlisted" : false
}, {
"id" : "46c4b57b-a976-3e67-bd6a-7d13c08239e8",
"name" : "Anotah",
"description" : "Discover the new Anotah Fashion Online. The latest trends for Woman, Top Girls, Kids.",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC560_3_Anotah_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC560",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC560_3_Anotah_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/AC560_Anotah_New_Logo.webp.webp",
"url" : "https://www.anotah.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/AC560_Anotah_New_Banner.webp.webp",
"totalViews" : 6,
"tasteMatchScore" : 83
},
"offers" : [ {
"id" : "1637",
"name" : "Get up to 10% off on your purchase at Anotah",
"description" : "Get up to 10% off on your purchase at Anotah till 21-12-2022\nOnline offer",
"validFrom" : "2021-05-01T00:00:00.389Z",
"validTo" : "2026-12-21T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "AC63",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC560_1_Anotah_New_Image.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.anotah.com/",
"termsAndConditions" : [ "1.\tThe offer is valid upto 21-12-2022\n2.\tThe offer is valid for Women's Apparel, Beauty only\n3.\tThe categories/products which are excluded from this offer are: N/A\n4.\tThe offer is valid on app & website purchases only\n5.\tThe offer is applicable for new & repeat users\n6.\tCoupons are applicable for ADIB card users only\n7.\tCoupon is applicable for online purchase only\n8.\tAccidental loss of coupon shall not be covered \n9.\tCoupons are not transferable \n10.\tCoupons cannot be replaced if lost.\n11.\tCustomer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.\tCoupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services." ],
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC560_1_Anotah_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "KWD",
"payoutValue" : "16.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "perfumery", "health-and-beauty", "multi-brand", "online-and-in-store", "large-product-range", "apparel-and-accessories", "international", "average-pricing", "shopping-mall", "cosmetics-and-skincare", "clothing-store", "personal-care", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"wishlisted" : false
} ]
}
}
6.1.16. Example 9: Get recent location history of a user
In Swagger UI, Expand 'User Profile and Campaigns' and select '/api/v3/user/cities/recent'
| Name | Description |
|---|---|
|
User access token |
| Parameter | Description |
|---|---|
|
Number of recent cities to return (default: 10) |
|
Language (default: en) |
Key in inputs as below:
GET /api/v3/user/cities/recent?limit=10&lang=en HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
Host: localhost:8080
And you should be getting output as below, which provides details of recent cities travelled by this user:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 241
[ {
"label" : "Mumbai",
"value" : "Mumbai",
"geoCode" : {
"latitude" : "19.07283",
"longitude" : "72.88261"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
} ]
6.1.17. Example 10: Get offers redeemed by user
In Swagger UI, Expand 'User Profile and Campaigns' and select '/api/v3/user/redeemed/offers
| Name | Description |
|---|---|
|
User access token |
| Parameter | Description |
|---|---|
|
Language (default: en) |
|
Sorting criteria for redeemed offers (e.g., ASC, DESC (default: DESC)) |
Key in inputs as below:
GET /api/v3/user/redeemed/offers?lang=en&sortBy=DESC HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
Host: localhost:8080
And you should be getting output as below, which provides details of offers redeemed by this user:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 351
{
"totalRedeemedOffers" : 1,
"totalSpent" : 2000,
"totalSavings" : 500,
"redeemedOffers" : [ {
"offerId" : "12345",
"name" : "test",
"description" : "test",
"transactionId" : "3456",
"transactionDate" : "2024-06-05T11:07:01.61Z",
"spent" : 2000,
"saving" : 500,
"currency" : "INR",
"status" : "test"
} ]
}
6.1.18. Example 11: Get Cities List
Get the list of cities.
The 'value' from this API can be used for filtering choices by city.
In Swagger UI, Expand 'Data List API' and select '/api/v3/list/{id}'.
| Parameter | Description |
|---|---|
|
Unique identifier of the list |
| Parameter | Description |
|---|---|
|
Language (default: en) |
|
Filter type |
|
Filter value |
Key in inputs as below:
GET /api/v3/list/cities?lang=en HTTP/1.1
Content-Type: application/json
Host: localhost:8080
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 366805
[ {
"label" : "Mumbai",
"value" : "Mumbai",
"geoCode" : {
"latitude" : "19.07283",
"longitude" : "72.88261"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Abhaneri",
"value" : "Abhaneri",
"geoCode" : {
"latitude" : "27.0",
"longitude" : "76.6"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Abohar",
"value" : "Abohar",
"geoCode" : {
"latitude" : "30.14453",
"longitude" : "74.19552"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Abu",
"value" : "Abu",
"geoCode" : {
"latitude" : "24.59365",
"longitude" : "72.71756"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Abu Dhabi",
"value" : "Abu Dhabi",
"geoCode" : {
"latitude" : "24.502419",
"longitude" : "54.373077"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Abu Road",
"value" : "Abu Road",
"geoCode" : {
"latitude" : "24.42",
"longitude" : "72.69"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Addanki",
"value" : "Addanki",
"geoCode" : {
"latitude" : "15.810707",
"longitude" : "79.97243"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Adilabad",
"value" : "Adilabad",
"geoCode" : {
"latitude" : "19.676567",
"longitude" : "78.53208"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Adoni",
"value" : "Adoni",
"geoCode" : {
"latitude" : "15.62788",
"longitude" : "77.27495"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Adoor",
"value" : "Adoor",
"geoCode" : {
"latitude" : "9.152764",
"longitude" : "76.73555"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Adur",
"value" : "Adur",
"geoCode" : {
"latitude" : "9.15305",
"longitude" : "76.74201"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Agartala",
"value" : "Agartala",
"geoCode" : {
"latitude" : "23.83605",
"longitude" : "91.27939"
},
"stateValue" : "Tripura",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Agra",
"value" : "Agra",
"geoCode" : {
"latitude" : "27.18333",
"longitude" : "78.01667"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ahilya Nagar",
"value" : "Ahilya Nagar",
"geoCode" : {
"latitude" : "19.094551",
"longitude" : "74.73341"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ahmadnagar",
"value" : "Ahmadnagar",
"geoCode" : {
"latitude" : "19.09457",
"longitude" : "74.73843"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ahmedabad",
"value" : "Ahmedabad",
"geoCode" : {
"latitude" : "23.02579",
"longitude" : "72.58727"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ahmednagar",
"value" : "Ahmednagar",
"geoCode" : {
"latitude" : "19.083334",
"longitude" : "74.73333"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Aizawl",
"value" : "Aizawl",
"geoCode" : {
"latitude" : "23.8",
"longitude" : "92.9"
},
"stateValue" : "Mizoram",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Aizwal",
"value" : "Aizwal",
"geoCode" : {
"latitude" : "23.734022",
"longitude" : "92.7179"
},
"stateValue" : "Mizoram",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ajman",
"value" : "Ajman",
"geoCode" : {
"latitude" : "25.4032",
"longitude" : "55.52341"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Ajmer",
"value" : "Ajmer",
"geoCode" : {
"latitude" : "26.25",
"longitude" : "74.66667"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Akbarpur",
"value" : "Akbarpur",
"geoCode" : {
"latitude" : "26.42",
"longitude" : "82.54"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Akluj",
"value" : "Akluj",
"geoCode" : {
"latitude" : "17.8",
"longitude" : "74.92"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Akola",
"value" : "Akola",
"geoCode" : {
"latitude" : "20.5",
"longitude" : "77.16667"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Al Ain",
"value" : "Al Ain",
"geoCode" : {
"latitude" : "24.24345",
"longitude" : "55.7265"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Al Dhaid",
"value" : "Al Dhaid",
"geoCode" : {
"latitude" : "25.74331",
"longitude" : "55.89634"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Alandi",
"value" : "Alandi",
"geoCode" : {
"latitude" : "18.683237",
"longitude" : "73.81564"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Alappuzha",
"value" : "Alappuzha",
"geoCode" : {
"latitude" : "9.49004",
"longitude" : "76.3264"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Aldona",
"value" : "Aldona",
"geoCode" : {
"latitude" : "15.58",
"longitude" : "73.87"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Aligarh",
"value" : "Aligarh",
"geoCode" : {
"latitude" : "27.83333",
"longitude" : "78.16667"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Alipurduar",
"value" : "Alipurduar",
"geoCode" : {
"latitude" : "26.49136",
"longitude" : "89.52796"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Allahabad",
"value" : "Allahabad",
"geoCode" : {
"latitude" : "25.45",
"longitude" : "81.85"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Almora",
"value" : "Almora",
"geoCode" : {
"latitude" : "29.69223",
"longitude" : "79.49789"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Aluva",
"value" : "Aluva",
"geoCode" : {
"latitude" : "10.10764",
"longitude" : "76.35158"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Alwar",
"value" : "Alwar",
"geoCode" : {
"latitude" : "27.5",
"longitude" : "76.5"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Amalapuram",
"value" : "Amalapuram",
"geoCode" : {
"latitude" : "16.57868",
"longitude" : "82.00609"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ambajogai",
"value" : "Ambajogai",
"geoCode" : {
"latitude" : "18.73",
"longitude" : "76.41"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ambala",
"value" : "Ambala",
"geoCode" : {
"latitude" : "30.32854",
"longitude" : "76.9422"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ambarnath",
"value" : "Ambarnath",
"geoCode" : {
"latitude" : "19.18",
"longitude" : "73.16"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ambasamudram",
"value" : "Ambasamudram",
"geoCode" : {
"latitude" : "8.7",
"longitude" : "77.45"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ambedkar Nagar",
"value" : "Ambedkar Nagar",
"geoCode" : {
"latitude" : "26.423304",
"longitude" : "82.53612"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ambikapur",
"value" : "Ambikapur",
"geoCode" : {
"latitude" : "23.11892",
"longitude" : "83.19537"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ambur",
"value" : "Ambur",
"geoCode" : {
"latitude" : "12.72",
"longitude" : "78.66"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Amethi",
"value" : "Amethi",
"geoCode" : {
"latitude" : "26.16",
"longitude" : "81.77"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Amli",
"value" : "Amli",
"geoCode" : {
"latitude" : "20.2756",
"longitude" : "73.00512"
},
"stateValue" : "Dadra And Nagar Haveli And Daman And Diu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Amravati",
"value" : "Amravati",
"geoCode" : {
"latitude" : "20.93333",
"longitude" : "77.75"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Amreli",
"value" : "Amreli",
"geoCode" : {
"latitude" : "21.50789",
"longitude" : "71.18323"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Amritsar",
"value" : "Amritsar",
"geoCode" : {
"latitude" : "31.67",
"longitude" : "74.84"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Amroha",
"value" : "Amroha",
"geoCode" : {
"latitude" : "28.90314",
"longitude" : "78.46984"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Anakapalle",
"value" : "Anakapalle",
"geoCode" : {
"latitude" : "17.69134",
"longitude" : "83.00395"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Anand",
"value" : "Anand",
"geoCode" : {
"latitude" : "22.4",
"longitude" : "72.75"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Anandpur Sahib",
"value" : "Anandpur Sahib",
"geoCode" : {
"latitude" : "31.22",
"longitude" : "76.5"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Anantapur",
"value" : "Anantapur",
"geoCode" : {
"latitude" : "14.55",
"longitude" : "77.41667"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Anantnag",
"value" : "Anantnag",
"geoCode" : {
"latitude" : "33.73068",
"longitude" : "75.15418"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Angamali",
"value" : "Angamali",
"geoCode" : {
"latitude" : "10.19055",
"longitude" : "76.38789"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Angamaly",
"value" : "Angamaly",
"geoCode" : {
"latitude" : "10.18",
"longitude" : "76.38"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Angul",
"value" : "Angul",
"geoCode" : {
"latitude" : "20.84089",
"longitude" : "85.10192"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Anjar",
"value" : "Anjar",
"geoCode" : {
"latitude" : "23.11072",
"longitude" : "70.02941"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ankleshwar",
"value" : "Ankleshwar",
"geoCode" : {
"latitude" : "21.63236",
"longitude" : "72.99001"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ankola",
"value" : "Ankola",
"geoCode" : {
"latitude" : "14.65",
"longitude" : "74.31"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Anuppur",
"value" : "Anuppur",
"geoCode" : {
"latitude" : "23.171013",
"longitude" : "81.64871"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arakkonam",
"value" : "Arakkonam",
"geoCode" : {
"latitude" : "13.08449",
"longitude" : "79.67053"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arambagh Community Development Block",
"value" : "Arambagh Community Development Block",
"geoCode" : {
"latitude" : "22.88",
"longitude" : "87.78"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arambol",
"value" : "Arambol",
"geoCode" : {
"latitude" : "15.11",
"longitude" : "74.0"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arantangi",
"value" : "Arantangi",
"geoCode" : {
"latitude" : "10.16923",
"longitude" : "79.00234"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arcot",
"value" : "Arcot",
"geoCode" : {
"latitude" : "12.90569",
"longitude" : "79.31897"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ariyalur",
"value" : "Ariyalur",
"geoCode" : {
"latitude" : "11.14",
"longitude" : "79.07"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arki",
"value" : "Arki",
"geoCode" : {
"latitude" : "31.15",
"longitude" : "76.96"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arni",
"value" : "Arni",
"geoCode" : {
"latitude" : "12.66963",
"longitude" : "79.28521"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arrah",
"value" : "Arrah",
"geoCode" : {
"latitude" : "6.67342",
"longitude" : "-3.96938"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Aruppukkottai",
"value" : "Aruppukkottai",
"geoCode" : {
"latitude" : "9.5096",
"longitude" : "78.09588"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Asansol",
"value" : "Asansol",
"geoCode" : {
"latitude" : "23.683332",
"longitude" : "86.96667"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ashoknagar",
"value" : "Ashoknagar",
"geoCode" : {
"latitude" : "24.56",
"longitude" : "77.73"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ashta",
"value" : "Ashta",
"geoCode" : {
"latitude" : "23.018047",
"longitude" : "76.71597"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Atarra",
"value" : "Atarra",
"geoCode" : {
"latitude" : "25.286741",
"longitude" : "80.574394"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Attingal",
"value" : "Attingal",
"geoCode" : {
"latitude" : "8.7",
"longitude" : "76.8"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Attur",
"value" : "Attur",
"geoCode" : {
"latitude" : "11.59414",
"longitude" : "78.60143"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Auckland",
"value" : "Auckland",
"geoCode" : {
"latitude" : "-36.84146",
"longitude" : "174.76334"
},
"stateValue" : "Auckland",
"countryValue" : "New Zealand"
}, {
"label" : "Auckland Central",
"value" : "Auckland Central",
"geoCode" : {
"latitude" : "-36.8484",
"longitude" : "174.76219"
},
"stateValue" : "Punjab",
"countryValue" : "New Zealand",
"countryCode" : "IN"
}, {
"label" : "Auraiya",
"value" : "Auraiya",
"geoCode" : {
"latitude" : "26.45792",
"longitude" : "80.22499"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Aurangabad",
"value" : "Aurangabad",
"geoCode" : {
"latitude" : "24.75204",
"longitude" : "84.3742"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Auroville",
"value" : "Auroville",
"geoCode" : {
"latitude" : "12.00549",
"longitude" : "79.80885"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ausa",
"value" : "Ausa",
"geoCode" : {
"latitude" : "18.23",
"longitude" : "76.52"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Avinashi",
"value" : "Avinashi",
"geoCode" : {
"latitude" : "11.172957",
"longitude" : "77.2686"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ayodhya",
"value" : "Ayodhya",
"geoCode" : {
"latitude" : "26.79909",
"longitude" : "82.2047"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Azamgarh",
"value" : "Azamgarh",
"geoCode" : {
"latitude" : "26.06832",
"longitude" : "83.18358"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Babugarh",
"value" : "Babugarh",
"geoCode" : {
"latitude" : "28.72",
"longitude" : "77.86"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Badami",
"value" : "Badami",
"geoCode" : {
"latitude" : "15.91495",
"longitude" : "75.67683"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baddi",
"value" : "Baddi",
"geoCode" : {
"latitude" : "30.95783",
"longitude" : "76.79136"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Badgam",
"value" : "Badgam",
"geoCode" : {
"latitude" : "33.85",
"longitude" : "74.76"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Badlapur",
"value" : "Badlapur",
"geoCode" : {
"latitude" : "19.15516",
"longitude" : "73.26553"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baga",
"value" : "Baga",
"geoCode" : {
"latitude" : "15.55",
"longitude" : "73.75"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bagaha",
"value" : "Bagaha",
"geoCode" : {
"latitude" : "27.093777",
"longitude" : "84.09337"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bagalkot",
"value" : "Bagalkot",
"geoCode" : {
"latitude" : "16.01",
"longitude" : "75.88"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bagar",
"value" : "Bagar",
"geoCode" : {
"latitude" : "28.18",
"longitude" : "75.5"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bagdogra",
"value" : "Bagdogra",
"geoCode" : {
"latitude" : "26.13",
"longitude" : "89.46"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bagepalli",
"value" : "Bagepalli",
"geoCode" : {
"latitude" : "13.78338",
"longitude" : "77.79667"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bageshwar",
"value" : "Bageshwar",
"geoCode" : {
"latitude" : "29.66",
"longitude" : "79.69"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bagha Purana",
"value" : "Bagha Purana",
"geoCode" : {
"latitude" : "30.684683",
"longitude" : "75.09286"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bahadurgarh",
"value" : "Bahadurgarh",
"geoCode" : {
"latitude" : "28.69287",
"longitude" : "76.93555"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bahraich",
"value" : "Bahraich",
"geoCode" : {
"latitude" : "27.80021",
"longitude" : "81.51855"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baikunthpur",
"value" : "Baikunthpur",
"geoCode" : {
"latitude" : "23.26206",
"longitude" : "82.56051"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balaghat",
"value" : "Balaghat",
"geoCode" : {
"latitude" : "21.96667",
"longitude" : "80.33333"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balangir",
"value" : "Balangir",
"geoCode" : {
"latitude" : "20.75",
"longitude" : "83.25"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balasinor",
"value" : "Balasinor",
"geoCode" : {
"latitude" : "22.95",
"longitude" : "73.33"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balasore",
"value" : "Balasore",
"geoCode" : {
"latitude" : "21.49266",
"longitude" : "86.93348"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baleshwar",
"value" : "Baleshwar",
"geoCode" : {
"latitude" : "21.5",
"longitude" : "86.75"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ballari",
"value" : "Ballari",
"geoCode" : {
"latitude" : "15.15",
"longitude" : "76.55"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ballia",
"value" : "Ballia",
"geoCode" : {
"latitude" : "25.83333",
"longitude" : "84.16667"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bally",
"value" : "Bally",
"geoCode" : {
"latitude" : "22.65",
"longitude" : "88.34"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balod",
"value" : "Balod",
"geoCode" : {
"latitude" : "20.727066",
"longitude" : "81.20558"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baloda Bazar",
"value" : "Baloda Bazar",
"geoCode" : {
"latitude" : "21.65678",
"longitude" : "82.16062"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balotra",
"value" : "Balotra",
"geoCode" : {
"latitude" : "25.79",
"longitude" : "72.17"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balrampur",
"value" : "Balrampur",
"geoCode" : {
"latitude" : "27.4",
"longitude" : "82.19"
},
"stateValue" : "Tripura",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balurghat",
"value" : "Balurghat",
"geoCode" : {
"latitude" : "25.21667",
"longitude" : "88.76667"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bambolim",
"value" : "Bambolim",
"geoCode" : {
"latitude" : "15.44",
"longitude" : "73.85"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bamora",
"value" : "Bamora",
"geoCode" : {
"latitude" : "24.38",
"longitude" : "74.05"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Banda",
"value" : "Banda",
"geoCode" : {
"latitude" : "8.14957",
"longitude" : "-2.3664"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Banga",
"value" : "Banga",
"geoCode" : {
"latitude" : "30.95",
"longitude" : "75.88"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bangaon",
"value" : "Bangaon",
"geoCode" : {
"latitude" : "25.86728",
"longitude" : "86.51152"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Banjar",
"value" : "Banjar",
"geoCode" : {
"latitude" : "31.56",
"longitude" : "77.36"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Banka",
"value" : "Banka",
"geoCode" : {
"latitude" : "24.89214",
"longitude" : "86.98425"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bankura",
"value" : "Bankura",
"geoCode" : {
"latitude" : "23.25",
"longitude" : "87.06667"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Banswara",
"value" : "Banswara",
"geoCode" : {
"latitude" : "23.52",
"longitude" : "74.34"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bantwal",
"value" : "Bantwal",
"geoCode" : {
"latitude" : "12.88052",
"longitude" : "75.02363"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bapatla",
"value" : "Bapatla",
"geoCode" : {
"latitude" : "15.83",
"longitude" : "80.5"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bara Banki",
"value" : "Bara Banki",
"geoCode" : {
"latitude" : "26.94",
"longitude" : "81.19"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barabanki",
"value" : "Barabanki",
"geoCode" : {
"latitude" : "26.91",
"longitude" : "81.16"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barabazar",
"value" : "Barabazar",
"geoCode" : {
"latitude" : "22.412094",
"longitude" : "87.32805"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baramati",
"value" : "Baramati",
"geoCode" : {
"latitude" : "18.15174",
"longitude" : "74.57767"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baramula",
"value" : "Baramula",
"geoCode" : {
"latitude" : "34.19287",
"longitude" : "74.3692"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baran",
"value" : "Baran",
"geoCode" : {
"latitude" : "25.09",
"longitude" : "76.5"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baranagar",
"value" : "Baranagar",
"geoCode" : {
"latitude" : "22.64",
"longitude" : "88.37"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barasat",
"value" : "Barasat",
"geoCode" : {
"latitude" : "22.23333",
"longitude" : "88.45"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baraut",
"value" : "Baraut",
"geoCode" : {
"latitude" : "29.10177",
"longitude" : "77.255066"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barbil",
"value" : "Barbil",
"geoCode" : {
"latitude" : "22.09",
"longitude" : "85.37"
},
"stateValue" : "Mizoram",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barddhaman",
"value" : "Barddhaman",
"geoCode" : {
"latitude" : "23.23242",
"longitude" : "87.86148"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bardhaman",
"value" : "Bardhaman",
"geoCode" : {
"latitude" : "23.25",
"longitude" : "87.85"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bardoli",
"value" : "Bardoli",
"geoCode" : {
"latitude" : "21.12297",
"longitude" : "73.11151"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bareilly",
"value" : "Bareilly",
"geoCode" : {
"latitude" : "28.41667",
"longitude" : "79.38333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bargarh",
"value" : "Bargarh",
"geoCode" : {
"latitude" : "21.19",
"longitude" : "83.58"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barghat",
"value" : "Barghat",
"geoCode" : {
"latitude" : "22.05943",
"longitude" : "79.66523"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barhi",
"value" : "Barhi",
"geoCode" : {
"latitude" : "24.30379",
"longitude" : "85.41434"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bari",
"value" : "Bari",
"geoCode" : {
"latitude" : "25.771162",
"longitude" : "87.47698"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baripada",
"value" : "Baripada",
"geoCode" : {
"latitude" : "21.936886",
"longitude" : "86.72446"
},
"stateValue" : "Orissa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barkot",
"value" : "Barkot",
"geoCode" : {
"latitude" : "30.0",
"longitude" : "78.66"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barmer",
"value" : "Barmer",
"geoCode" : {
"latitude" : "25.75",
"longitude" : "71.5"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barnala",
"value" : "Barnala",
"geoCode" : {
"latitude" : "30.37451",
"longitude" : "75.5487"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barpeta",
"value" : "Barpeta",
"geoCode" : {
"latitude" : "26.47104",
"longitude" : "91.0308"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barrackpore",
"value" : "Barrackpore",
"geoCode" : {
"latitude" : "22.75",
"longitude" : "88.36667"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barshi",
"value" : "Barshi",
"geoCode" : {
"latitude" : "18.233385",
"longitude" : "75.694145"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barsi",
"value" : "Barsi",
"geoCode" : {
"latitude" : "18.23454",
"longitude" : "75.69275"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baruipur",
"value" : "Baruipur",
"geoCode" : {
"latitude" : "22.35",
"longitude" : "88.44"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barwala",
"value" : "Barwala",
"geoCode" : {
"latitude" : "29.36747",
"longitude" : "75.90809"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barwani",
"value" : "Barwani",
"geoCode" : {
"latitude" : "22.02485",
"longitude" : "74.91805"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Basirhat",
"value" : "Basirhat",
"geoCode" : {
"latitude" : "22.65722",
"longitude" : "88.89417"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bastar",
"value" : "Bastar",
"geoCode" : {
"latitude" : "19.06",
"longitude" : "82.03"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Basti",
"value" : "Basti",
"geoCode" : {
"latitude" : "26.82816",
"longitude" : "82.77924"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Batala",
"value" : "Batala",
"geoCode" : {
"latitude" : "31.80921",
"longitude" : "75.20294"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bathinda",
"value" : "Bathinda",
"geoCode" : {
"latitude" : "30.210995",
"longitude" : "74.94547"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baudh",
"value" : "Baudh",
"geoCode" : {
"latitude" : "26.959429",
"longitude" : "79.78905"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bawal",
"value" : "Bawal",
"geoCode" : {
"latitude" : "28.08",
"longitude" : "76.57"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bayad",
"value" : "Bayad",
"geoCode" : {
"latitude" : "23.22335",
"longitude" : "73.21457"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bazpur",
"value" : "Bazpur",
"geoCode" : {
"latitude" : "29.16",
"longitude" : "79.16"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Beawar",
"value" : "Beawar",
"geoCode" : {
"latitude" : "26.10119",
"longitude" : "74.32028"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Beed",
"value" : "Beed",
"geoCode" : {
"latitude" : "18.98921",
"longitude" : "75.75634"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Beerwah",
"value" : "Beerwah",
"geoCode" : {
"latitude" : "-26.835718",
"longitude" : "152.96312"
},
"stateValue" : "Queensland",
"countryValue" : "Australia"
}, {
"label" : "Begusarai",
"value" : "Begusarai",
"geoCode" : {
"latitude" : "25.41853",
"longitude" : "86.13389"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Behror",
"value" : "Behror",
"geoCode" : {
"latitude" : "27.88832",
"longitude" : "76.28108"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Belagavi",
"value" : "Belagavi",
"geoCode" : {
"latitude" : "15.8497",
"longitude" : "74.4977"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Belgaum",
"value" : "Belgaum",
"geoCode" : {
"latitude" : "16.33333",
"longitude" : "74.75"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Belgium",
"value" : "Belgium",
"geoCode" : {
"latitude" : "43.49972",
"longitude" : "-87.850365"
},
"stateValue" : "Wisconsin",
"countryValue" : "United States"
}, {
"label" : "Bellary",
"value" : "Bellary",
"geoCode" : {
"latitude" : "15.14205",
"longitude" : "76.92398"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Belur",
"value" : "Belur",
"geoCode" : {
"latitude" : "12.55",
"longitude" : "75.85"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bemetara",
"value" : "Bemetara",
"geoCode" : {
"latitude" : "21.714025",
"longitude" : "81.535614"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Benaulim",
"value" : "Benaulim",
"geoCode" : {
"latitude" : "15.23",
"longitude" : "73.95"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bengaluru",
"value" : "Bengaluru",
"geoCode" : {
"latitude" : "12.97194",
"longitude" : "77.59369"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bengkalis",
"value" : "Bengkalis",
"geoCode" : {
"latitude" : "1.489214",
"longitude" : "102.0801"
},
"stateValue" : "Riau",
"countryValue" : "Indonesia"
}, {
"label" : "Berasia",
"value" : "Berasia",
"geoCode" : {
"latitude" : "23.3025",
"longitude" : "77.40429"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Berhampore",
"value" : "Berhampore",
"geoCode" : {
"latitude" : "24.1",
"longitude" : "88.25"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Berhampur",
"value" : "Berhampur",
"geoCode" : {
"latitude" : "19.315826",
"longitude" : "84.78283"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bettiah",
"value" : "Bettiah",
"geoCode" : {
"latitude" : "26.80229",
"longitude" : "84.50311"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Betul",
"value" : "Betul",
"geoCode" : {
"latitude" : "21.83333",
"longitude" : "77.83333"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Beypore",
"value" : "Beypore",
"geoCode" : {
"latitude" : "11.17",
"longitude" : "75.8"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhabhua",
"value" : "Bhabhua",
"geoCode" : {
"latitude" : "25.04873",
"longitude" : "83.61485"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhadohi",
"value" : "Bhadohi",
"geoCode" : {
"latitude" : "25.39",
"longitude" : "82.55"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhadrachalam",
"value" : "Bhadrachalam",
"geoCode" : {
"latitude" : "16.93",
"longitude" : "81.95"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhadradri Kothagudem",
"value" : "Bhadradri Kothagudem",
"geoCode" : {
"latitude" : "17.5546",
"longitude" : "80.61976"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhadrak",
"value" : "Bhadrak",
"geoCode" : {
"latitude" : "21.0",
"longitude" : "86.6"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhadravati",
"value" : "Bhadravati",
"geoCode" : {
"latitude" : "13.84846",
"longitude" : "75.70502"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhagalpur",
"value" : "Bhagalpur",
"geoCode" : {
"latitude" : "25.29023",
"longitude" : "87.06665"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhagwantnagar",
"value" : "Bhagwantnagar",
"geoCode" : {
"latitude" : "26.22051",
"longitude" : "80.75292"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhandara",
"value" : "Bhandara",
"geoCode" : {
"latitude" : "21.18333",
"longitude" : "80.0"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhandardara",
"value" : "Bhandardara",
"geoCode" : {
"latitude" : "19.5",
"longitude" : "73.69"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bharatpur",
"value" : "Bharatpur",
"geoCode" : {
"latitude" : "27.21",
"longitude" : "77.29"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bharuch",
"value" : "Bharuch",
"geoCode" : {
"latitude" : "21.69482",
"longitude" : "72.9805"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhatapara",
"value" : "Bhatapara",
"geoCode" : {
"latitude" : "21.735",
"longitude" : "81.94711"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhatinda",
"value" : "Bhatinda",
"geoCode" : {
"latitude" : "30.21641",
"longitude" : "74.94176"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhatkal",
"value" : "Bhatkal",
"geoCode" : {
"latitude" : "13.98534",
"longitude" : "74.55531"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhatpara",
"value" : "Bhatpara",
"geoCode" : {
"latitude" : "22.86667",
"longitude" : "88.41667"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhavani",
"value" : "Bhavani",
"geoCode" : {
"latitude" : "11.587118",
"longitude" : "77.83535"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhavnagar",
"value" : "Bhavnagar",
"geoCode" : {
"latitude" : "21.76287",
"longitude" : "72.15331"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhawanipatna",
"value" : "Bhawanipatna",
"geoCode" : {
"latitude" : "19.43",
"longitude" : "82.85"
},
"stateValue" : "Nagaland",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhayandar",
"value" : "Bhayandar",
"geoCode" : {
"latitude" : "19.30157",
"longitude" : "72.85107"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhilai",
"value" : "Bhilai",
"geoCode" : {
"latitude" : "21.20919",
"longitude" : "81.4285"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhilwara",
"value" : "Bhilwara",
"geoCode" : {
"latitude" : "25.5",
"longitude" : "74.75"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhimavaram",
"value" : "Bhimavaram",
"geoCode" : {
"latitude" : "16.54078",
"longitude" : "81.52322"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhimtal",
"value" : "Bhimtal",
"geoCode" : {
"latitude" : "29.32",
"longitude" : "79.55"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhind",
"value" : "Bhind",
"geoCode" : {
"latitude" : "26.5",
"longitude" : "78.75"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhinmal",
"value" : "Bhinmal",
"geoCode" : {
"latitude" : "24.99",
"longitude" : "72.26"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhiwadi",
"value" : "Bhiwadi",
"geoCode" : {
"latitude" : "28.21024",
"longitude" : "76.86056"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhiwandi",
"value" : "Bhiwandi",
"geoCode" : {
"latitude" : "19.30023",
"longitude" : "73.05881"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhiwani",
"value" : "Bhiwani",
"geoCode" : {
"latitude" : "28.75",
"longitude" : "76.16667"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhojpur",
"value" : "Bhojpur",
"geoCode" : {
"latitude" : "25.30886",
"longitude" : "84.44504"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhongir",
"value" : "Bhongir",
"geoCode" : {
"latitude" : "17.507769",
"longitude" : "78.88021"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhopal",
"value" : "Bhopal",
"geoCode" : {
"latitude" : "23.25469",
"longitude" : "77.40289"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhowali",
"value" : "Bhowali",
"geoCode" : {
"latitude" : "29.37",
"longitude" : "79.51"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhubaneshwar",
"value" : "Bhubaneshwar",
"geoCode" : {
"latitude" : "20.27241",
"longitude" : "85.83385"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhubaneswar",
"value" : "Bhubaneswar",
"geoCode" : {
"latitude" : "20.33287",
"longitude" : "85.80701"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhuj",
"value" : "Bhuj",
"geoCode" : {
"latitude" : "23.25397",
"longitude" : "69.66928"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhusawal",
"value" : "Bhusawal",
"geoCode" : {
"latitude" : "21.05",
"longitude" : "75.77"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhuvanagiri",
"value" : "Bhuvanagiri",
"geoCode" : {
"latitude" : "17.50777",
"longitude" : "78.88021"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bid",
"value" : "Bid",
"geoCode" : {
"latitude" : "18.83333",
"longitude" : "75.75"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bidar",
"value" : "Bidar",
"geoCode" : {
"latitude" : "18.08333",
"longitude" : "77.33333"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bihar Sharif",
"value" : "Bihar Sharif",
"geoCode" : {
"latitude" : "25.20084",
"longitude" : "85.52389"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bijapur",
"value" : "Bijapur",
"geoCode" : {
"latitude" : "18.84322",
"longitude" : "80.7761"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bijnor",
"value" : "Bijnor",
"geoCode" : {
"latitude" : "29.41667",
"longitude" : "78.51667"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bikaner",
"value" : "Bikaner",
"geoCode" : {
"latitude" : "28.01762",
"longitude" : "73.31495"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bilaspur",
"value" : "Bilaspur",
"geoCode" : {
"latitude" : "22.38333",
"longitude" : "82.13333"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bilimora",
"value" : "Bilimora",
"geoCode" : {
"latitude" : "20.76",
"longitude" : "72.96"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Birpara",
"value" : "Birpara",
"geoCode" : {
"latitude" : "26.69",
"longitude" : "89.27"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bisalpur",
"value" : "Bisalpur",
"geoCode" : {
"latitude" : "28.279886",
"longitude" : "79.80367"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bishnupur",
"value" : "Bishnupur",
"geoCode" : {
"latitude" : "24.60769",
"longitude" : "93.77998"
},
"stateValue" : "Manipur",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bithur",
"value" : "Bithur",
"geoCode" : {
"latitude" : "26.60664",
"longitude" : "80.27098"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bobbili",
"value" : "Bobbili",
"geoCode" : {
"latitude" : "18.575659",
"longitude" : "83.35743"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Boisar",
"value" : "Boisar",
"geoCode" : {
"latitude" : "19.78",
"longitude" : "72.74"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bokakhat",
"value" : "Bokakhat",
"geoCode" : {
"latitude" : "26.56",
"longitude" : "93.6"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bokaro",
"value" : "Bokaro",
"geoCode" : {
"latitude" : "23.68562",
"longitude" : "85.99026"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bokaro Steel City",
"value" : "Bokaro Steel City",
"geoCode" : {
"latitude" : "23.637375",
"longitude" : "86.162964"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bolpur",
"value" : "Bolpur",
"geoCode" : {
"latitude" : "23.67",
"longitude" : "87.72"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bomdila",
"value" : "Bomdila",
"geoCode" : {
"latitude" : "27.19",
"longitude" : "92.38"
},
"stateValue" : "Arunachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bongaigaon",
"value" : "Bongaigaon",
"geoCode" : {
"latitude" : "26.4603",
"longitude" : "90.6464"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Borsad",
"value" : "Borsad",
"geoCode" : {
"latitude" : "22.3",
"longitude" : "72.91"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Botad",
"value" : "Botad",
"geoCode" : {
"latitude" : "22.16917",
"longitude" : "71.66671"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Brahmapur",
"value" : "Brahmapur",
"geoCode" : {
"latitude" : "19.31151",
"longitude" : "84.7929"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Brahmapuri",
"value" : "Brahmapuri",
"geoCode" : {
"latitude" : "20.6084",
"longitude" : "79.8559"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Brasília",
"value" : "Brasília",
"geoCode" : {
"latitude" : "-15.797516",
"longitude" : "-47.891888"
},
"stateValue" : "Federal District",
"countryValue" : "Brazil"
}, {
"label" : "Budaun",
"value" : "Budaun",
"geoCode" : {
"latitude" : "28.11667",
"longitude" : "78.98333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Budge Budge",
"value" : "Budge Budge",
"geoCode" : {
"latitude" : "22.47",
"longitude" : "88.17"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bulandshahr",
"value" : "Bulandshahr",
"geoCode" : {
"latitude" : "28.41667",
"longitude" : "77.83333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Buldana",
"value" : "Buldana",
"geoCode" : {
"latitude" : "20.58333",
"longitude" : "76.41667"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Buldhana",
"value" : "Buldhana",
"geoCode" : {
"latitude" : "20.53333",
"longitude" : "76.18333"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bundi",
"value" : "Bundi",
"geoCode" : {
"latitude" : "25.43855",
"longitude" : "75.63735"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Burdwan",
"value" : "Burdwan",
"geoCode" : {
"latitude" : "23.240978",
"longitude" : "87.86096"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Burhanpur",
"value" : "Burhanpur",
"geoCode" : {
"latitude" : "21.31",
"longitude" : "76.23"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Buxar",
"value" : "Buxar",
"geoCode" : {
"latitude" : "25.5",
"longitude" : "84.1"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Byndoor",
"value" : "Byndoor",
"geoCode" : {
"latitude" : "13.2",
"longitude" : "74.74"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Calangute",
"value" : "Calangute",
"geoCode" : {
"latitude" : "15.26",
"longitude" : "73.98"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Calicut",
"value" : "Calicut",
"geoCode" : {
"latitude" : "11.45",
"longitude" : "75.7"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Canacona",
"value" : "Canacona",
"geoCode" : {
"latitude" : "14.96",
"longitude" : "74.04"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Candolim",
"value" : "Candolim",
"geoCode" : {
"latitude" : "15.51807",
"longitude" : "73.76259"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cavelossim",
"value" : "Cavelossim",
"geoCode" : {
"latitude" : "15.08",
"longitude" : "73.92"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chaibasa",
"value" : "Chaibasa",
"geoCode" : {
"latitude" : "22.55038",
"longitude" : "85.80249"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chail",
"value" : "Chail",
"geoCode" : {
"latitude" : "30.93",
"longitude" : "77.2"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chakdaha",
"value" : "Chakdaha",
"geoCode" : {
"latitude" : "23.08",
"longitude" : "88.52"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chakia",
"value" : "Chakia",
"geoCode" : {
"latitude" : "26.408403",
"longitude" : "85.0402"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chakrata",
"value" : "Chakrata",
"geoCode" : {
"latitude" : "30.43",
"longitude" : "77.72"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chamba",
"value" : "Chamba",
"geoCode" : {
"latitude" : "32.57147",
"longitude" : "76.10229"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chamoli",
"value" : "Chamoli",
"geoCode" : {
"latitude" : "30.2",
"longitude" : "79.62"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Champa",
"value" : "Champa",
"geoCode" : {
"latitude" : "21.726929",
"longitude" : "82.60292"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Champaner",
"value" : "Champaner",
"geoCode" : {
"latitude" : "22.48",
"longitude" : "73.52"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Champawat",
"value" : "Champawat",
"geoCode" : {
"latitude" : "29.33",
"longitude" : "80.07"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Champhai",
"value" : "Champhai",
"geoCode" : {
"latitude" : "22.73",
"longitude" : "93.13"
},
"stateValue" : "Manipur",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chamrajnagar",
"value" : "Chamrajnagar",
"geoCode" : {
"latitude" : "11.92615",
"longitude" : "76.94373"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chandannagar",
"value" : "Chandannagar",
"geoCode" : {
"latitude" : "22.866667",
"longitude" : "88.38333"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chandauli",
"value" : "Chandauli",
"geoCode" : {
"latitude" : "25.25803",
"longitude" : "83.26825"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chanderi",
"value" : "Chanderi",
"geoCode" : {
"latitude" : "22.97",
"longitude" : "76.34"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chandigarh",
"value" : "Chandigarh",
"geoCode" : {
"latitude" : "30.73629",
"longitude" : "76.7884"
},
"stateValue" : "Chandigarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chandor",
"value" : "Chandor",
"geoCode" : {
"latitude" : "15.24",
"longitude" : "74.03"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chandrapur",
"value" : "Chandrapur",
"geoCode" : {
"latitude" : "20.11793",
"longitude" : "79.44377"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Changanacheri",
"value" : "Changanacheri",
"geoCode" : {
"latitude" : "9.44203",
"longitude" : "76.53604"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Changanacherry",
"value" : "Changanacherry",
"geoCode" : {
"latitude" : "9.416892",
"longitude" : "76.5635"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Channapatna",
"value" : "Channapatna",
"geoCode" : {
"latitude" : "12.38",
"longitude" : "76.03"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Channarayapatna",
"value" : "Channarayapatna",
"geoCode" : {
"latitude" : "12.90428",
"longitude" : "76.38883"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chapra",
"value" : "Chapra",
"geoCode" : {
"latitude" : "25.78031",
"longitude" : "84.74709"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chas",
"value" : "Chas",
"geoCode" : {
"latitude" : "23.636179",
"longitude" : "86.18281"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chatra",
"value" : "Chatra",
"geoCode" : {
"latitude" : "24.2",
"longitude" : "84.87"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chembur",
"value" : "Chembur",
"geoCode" : {
"latitude" : "19.059338",
"longitude" : "72.89944"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chengalpattu",
"value" : "Chengalpattu",
"geoCode" : {
"latitude" : "12.6819",
"longitude" : "79.9888"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chengannur",
"value" : "Chengannur",
"geoCode" : {
"latitude" : "9.31575",
"longitude" : "76.61513"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chennai",
"value" : "Chennai",
"geoCode" : {
"latitude" : "13.08784",
"longitude" : "80.27847"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cherpulassery",
"value" : "Cherpulassery",
"geoCode" : {
"latitude" : "10.75",
"longitude" : "76.11"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cherrapunji",
"value" : "Cherrapunji",
"geoCode" : {
"latitude" : "25.30089",
"longitude" : "91.69619"
},
"stateValue" : "Meghalaya",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cherthala",
"value" : "Cherthala",
"geoCode" : {
"latitude" : "9.68444",
"longitude" : "76.33558"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cheyyar",
"value" : "Cheyyar",
"geoCode" : {
"latitude" : "12.39",
"longitude" : "79.32"
},
"stateValue" : "Sikkim",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chhachhrauli",
"value" : "Chhachhrauli",
"geoCode" : {
"latitude" : "30.23",
"longitude" : "77.35"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chhatarpur",
"value" : "Chhatarpur",
"geoCode" : {
"latitude" : "24.75",
"longitude" : "79.75"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chhindwara",
"value" : "Chhindwara",
"geoCode" : {
"latitude" : "22.05697",
"longitude" : "78.93958"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chhota Udepur",
"value" : "Chhota Udepur",
"geoCode" : {
"latitude" : "22.35",
"longitude" : "73.91"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chicago",
"value" : "Chicago",
"geoCode" : {
"latitude" : "41.88069",
"longitude" : "-87.67418"
},
"stateValue" : "Illinois",
"countryValue" : "United States"
}, {
"label" : "Chicalim",
"value" : "Chicalim",
"geoCode" : {
"latitude" : "15.38",
"longitude" : "73.86"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chidambaram",
"value" : "Chidambaram",
"geoCode" : {
"latitude" : "11.39929",
"longitude" : "79.69352"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chikkaballapur",
"value" : "Chikkaballapur",
"geoCode" : {
"latitude" : "13.36",
"longitude" : "77.68"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chikmagalur",
"value" : "Chikmagalur",
"geoCode" : {
"latitude" : "13.01",
"longitude" : "75.62"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chingleput",
"value" : "Chingleput",
"geoCode" : {
"latitude" : "12.68194",
"longitude" : "79.98884"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chinnachowk",
"value" : "Chinnachowk",
"geoCode" : {
"latitude" : "14.477793",
"longitude" : "78.83968"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chinsurah",
"value" : "Chinsurah",
"geoCode" : {
"latitude" : "22.88",
"longitude" : "88.38"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chintamani",
"value" : "Chintamani",
"geoCode" : {
"latitude" : "13.40112",
"longitude" : "78.05639"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chiplun",
"value" : "Chiplun",
"geoCode" : {
"latitude" : "17.53521",
"longitude" : "73.50999"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chirala",
"value" : "Chirala",
"geoCode" : {
"latitude" : "15.82385",
"longitude" : "80.35219"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chirawa",
"value" : "Chirawa",
"geoCode" : {
"latitude" : "28.05227",
"longitude" : "75.0999"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chitradurga",
"value" : "Chitradurga",
"geoCode" : {
"latitude" : "14.2",
"longitude" : "76.5"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chitrakoot",
"value" : "Chitrakoot",
"geoCode" : {
"latitude" : "25.14",
"longitude" : "80.82"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chittaranjan",
"value" : "Chittaranjan",
"geoCode" : {
"latitude" : "22.487123",
"longitude" : "88.37507"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chittaurgarh",
"value" : "Chittaurgarh",
"geoCode" : {
"latitude" : "24.5",
"longitude" : "74.5"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chittoor",
"value" : "Chittoor",
"geoCode" : {
"latitude" : "13.41667",
"longitude" : "79.0"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chittorgarh",
"value" : "Chittorgarh",
"geoCode" : {
"latitude" : "24.82",
"longitude" : "74.58"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chomu",
"value" : "Chomu",
"geoCode" : {
"latitude" : "27.16",
"longitude" : "75.72"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chotila",
"value" : "Chotila",
"geoCode" : {
"latitude" : "22.424833",
"longitude" : "71.19621"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Churachandpur",
"value" : "Churachandpur",
"geoCode" : {
"latitude" : "24.33",
"longitude" : "93.69"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Churu",
"value" : "Churu",
"geoCode" : {
"latitude" : "28.30415",
"longitude" : "74.96718"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cochin",
"value" : "Cochin",
"geoCode" : {
"latitude" : "9.93988",
"longitude" : "76.26022"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Coimbatore",
"value" : "Coimbatore",
"geoCode" : {
"latitude" : "10.8",
"longitude" : "77.09"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Colva",
"value" : "Colva",
"geoCode" : {
"latitude" : "15.26",
"longitude" : "73.91"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Contai",
"value" : "Contai",
"geoCode" : {
"latitude" : "21.78",
"longitude" : "87.75"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cooch Behar",
"value" : "Cooch Behar",
"geoCode" : {
"latitude" : "26.316668",
"longitude" : "89.433334"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Coonoor",
"value" : "Coonoor",
"geoCode" : {
"latitude" : "11.25",
"longitude" : "76.73"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cortalim",
"value" : "Cortalim",
"geoCode" : {
"latitude" : "15.4",
"longitude" : "73.9"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cuddalore",
"value" : "Cuddalore",
"geoCode" : {
"latitude" : "11.52",
"longitude" : "79.51"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cuddapah",
"value" : "Cuddapah",
"geoCode" : {
"latitude" : "14.41667",
"longitude" : "78.75"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cumbum",
"value" : "Cumbum",
"geoCode" : {
"latitude" : "9.72",
"longitude" : "77.27"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cuncolim",
"value" : "Cuncolim",
"geoCode" : {
"latitude" : "15.17",
"longitude" : "73.99"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cuttack",
"value" : "Cuttack",
"geoCode" : {
"latitude" : "20.5",
"longitude" : "86.25"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dabhoi",
"value" : "Dabhoi",
"geoCode" : {
"latitude" : "22.36",
"longitude" : "73.67"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dabolim",
"value" : "Dabolim",
"geoCode" : {
"latitude" : "15.390381",
"longitude" : "73.85855"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dabwali",
"value" : "Dabwali",
"geoCode" : {
"latitude" : "29.94906",
"longitude" : "74.73832"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dadar",
"value" : "Dadar",
"geoCode" : {
"latitude" : "19.019926",
"longitude" : "72.8413"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dadri",
"value" : "Dadri",
"geoCode" : {
"latitude" : "28.593044",
"longitude" : "76.25344"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dahanu",
"value" : "Dahanu",
"geoCode" : {
"latitude" : "19.91",
"longitude" : "72.96"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dahej",
"value" : "Dahej",
"geoCode" : {
"latitude" : "21.712868",
"longitude" : "72.65208"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dahod",
"value" : "Dahod",
"geoCode" : {
"latitude" : "22.83576",
"longitude" : "74.25586"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dakor",
"value" : "Dakor",
"geoCode" : {
"latitude" : "22.74",
"longitude" : "73.15"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dalhousie",
"value" : "Dalhousie",
"geoCode" : {
"latitude" : "32.55219",
"longitude" : "75.94663"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Daltonganj",
"value" : "Daltonganj",
"geoCode" : {
"latitude" : "24.03971",
"longitude" : "84.0658"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dam Dam",
"value" : "Dam Dam",
"geoCode" : {
"latitude" : "22.660635",
"longitude" : "88.43661"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Daman",
"value" : "Daman",
"geoCode" : {
"latitude" : "20.41431",
"longitude" : "72.83236"
},
"stateValue" : "Dadra And Nagar Haveli And Daman And Diu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Damoh",
"value" : "Damoh",
"geoCode" : {
"latitude" : "23.75",
"longitude" : "79.58333"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dandeli",
"value" : "Dandeli",
"geoCode" : {
"latitude" : "15.26667",
"longitude" : "74.61667"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dapoli",
"value" : "Dapoli",
"geoCode" : {
"latitude" : "17.64",
"longitude" : "73.14"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Darbhanga",
"value" : "Darbhanga",
"geoCode" : {
"latitude" : "26.0",
"longitude" : "86.0"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Darjeeling",
"value" : "Darjeeling",
"geoCode" : {
"latitude" : "27.041666",
"longitude" : "88.263054"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Darrang",
"value" : "Darrang",
"geoCode" : {
"latitude" : "26.46606",
"longitude" : "92.05452"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dasuya",
"value" : "Dasuya",
"geoCode" : {
"latitude" : "31.806068",
"longitude" : "75.66379"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Datia",
"value" : "Datia",
"geoCode" : {
"latitude" : "25.75",
"longitude" : "78.5"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Daudnagar",
"value" : "Daudnagar",
"geoCode" : {
"latitude" : "25.03323",
"longitude" : "84.39888"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Daulatabad",
"value" : "Daulatabad",
"geoCode" : {
"latitude" : "19.93611",
"longitude" : "75.22148"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Daulatpur",
"value" : "Daulatpur",
"geoCode" : {
"latitude" : "31.46847",
"longitude" : "76.27082"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dausa",
"value" : "Dausa",
"geoCode" : {
"latitude" : "26.49",
"longitude" : "76.21"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Davanagere",
"value" : "Davanagere",
"geoCode" : {
"latitude" : "14.43",
"longitude" : "75.9"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Davangere",
"value" : "Davangere",
"geoCode" : {
"latitude" : "14.460957",
"longitude" : "75.91009"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Davenport",
"value" : "Davenport",
"geoCode" : {
"latitude" : "-33.36318",
"longitude" : "115.6788"
},
"stateValue" : "Western Australia",
"countryValue" : "Australia"
}, {
"label" : "Dehradun",
"value" : "Dehradun",
"geoCode" : {
"latitude" : "30.33",
"longitude" : "78.06"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dehri",
"value" : "Dehri",
"geoCode" : {
"latitude" : "24.90247",
"longitude" : "84.18217"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Delhi",
"value" : "Delhi",
"geoCode" : {
"latitude" : "28.65195",
"longitude" : "77.23149"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Deoband",
"value" : "Deoband",
"geoCode" : {
"latitude" : "29.688019",
"longitude" : "77.68205"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Deogarh",
"value" : "Deogarh",
"geoCode" : {
"latitude" : "24.44382",
"longitude" : "86.72607"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Deoghar",
"value" : "Deoghar",
"geoCode" : {
"latitude" : "24.490816",
"longitude" : "86.68857"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Deori",
"value" : "Deori",
"geoCode" : {
"latitude" : "21.07",
"longitude" : "80.37"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Deoria",
"value" : "Deoria",
"geoCode" : {
"latitude" : "26.66667",
"longitude" : "83.75"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dera Bassi",
"value" : "Dera Bassi",
"geoCode" : {
"latitude" : "30.56",
"longitude" : "76.82"
},
"stateValue" : "Puducherry",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Deshnoke",
"value" : "Deshnoke",
"geoCode" : {
"latitude" : "27.79",
"longitude" : "73.34"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Devanhalli",
"value" : "Devanhalli",
"geoCode" : {
"latitude" : "13.2",
"longitude" : "77.67"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Devarkonda",
"value" : "Devarkonda",
"geoCode" : {
"latitude" : "16.69186",
"longitude" : "78.92073"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Devrukh",
"value" : "Devrukh",
"geoCode" : {
"latitude" : "17.05",
"longitude" : "73.65"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dewas",
"value" : "Dewas",
"geoCode" : {
"latitude" : "23.0",
"longitude" : "76.16667"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhaka",
"value" : "Dhaka",
"geoCode" : {
"latitude" : "23.776487",
"longitude" : "90.362816"
},
"stateValue" : "Dhaka Division",
"countryValue" : "Bangladesh"
}, {
"label" : "Dhampur",
"value" : "Dhampur",
"geoCode" : {
"latitude" : "29.30883",
"longitude" : "78.51083"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhamtari",
"value" : "Dhamtari",
"geoCode" : {
"latitude" : "20.70718",
"longitude" : "81.54874"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhanbad",
"value" : "Dhanbad",
"geoCode" : {
"latitude" : "23.80199",
"longitude" : "86.44324"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhar",
"value" : "Dhar",
"geoCode" : {
"latitude" : "22.59373",
"longitude" : "75.29774"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharampur",
"value" : "Dharampur",
"geoCode" : {
"latitude" : "30.78",
"longitude" : "77.34"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharamsala",
"value" : "Dharamsala",
"geoCode" : {
"latitude" : "32.22006",
"longitude" : "76.32013"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharapuram",
"value" : "Dharapuram",
"geoCode" : {
"latitude" : "10.736916",
"longitude" : "77.52577"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharchula",
"value" : "Dharchula",
"geoCode" : {
"latitude" : "29.97",
"longitude" : "80.57"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhari",
"value" : "Dhari",
"geoCode" : {
"latitude" : "21.31",
"longitude" : "70.95"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhariwal",
"value" : "Dhariwal",
"geoCode" : {
"latitude" : "31.958504",
"longitude" : "75.32324"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharmanagar",
"value" : "Dharmanagar",
"geoCode" : {
"latitude" : "24.36667",
"longitude" : "92.16667"
},
"stateValue" : "Tripura",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharmapuri",
"value" : "Dharmapuri",
"geoCode" : {
"latitude" : "12.1277",
"longitude" : "78.15794"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharmavaram",
"value" : "Dharmavaram",
"geoCode" : {
"latitude" : "14.38",
"longitude" : "77.69"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharuhera",
"value" : "Dharuhera",
"geoCode" : {
"latitude" : "28.2",
"longitude" : "76.75"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharwad",
"value" : "Dharwad",
"geoCode" : {
"latitude" : "15.37",
"longitude" : "75.14"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhaulpur",
"value" : "Dhaulpur",
"geoCode" : {
"latitude" : "26.71183",
"longitude" : "77.73956"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhemaji",
"value" : "Dhemaji",
"geoCode" : {
"latitude" : "27.47",
"longitude" : "94.55"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhenkanal",
"value" : "Dhenkanal",
"geoCode" : {
"latitude" : "20.75",
"longitude" : "85.5"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhoraji",
"value" : "Dhoraji",
"geoCode" : {
"latitude" : "21.73359",
"longitude" : "70.45004"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhrangadhra",
"value" : "Dhrangadhra",
"geoCode" : {
"latitude" : "22.773893",
"longitude" : "71.667336"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhubri",
"value" : "Dhubri",
"geoCode" : {
"latitude" : "26.06749",
"longitude" : "90.02238"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhule",
"value" : "Dhule",
"geoCode" : {
"latitude" : "21.06852",
"longitude" : "74.58837"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhulia",
"value" : "Dhulia",
"geoCode" : {
"latitude" : "20.9013",
"longitude" : "74.77737"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Diamond Harbour",
"value" : "Diamond Harbour",
"geoCode" : {
"latitude" : "22.2",
"longitude" : "88.2"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dibrugarh",
"value" : "Dibrugarh",
"geoCode" : {
"latitude" : "27.5",
"longitude" : "95.0"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Digboi",
"value" : "Digboi",
"geoCode" : {
"latitude" : "27.39321",
"longitude" : "95.61839"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Digha",
"value" : "Digha",
"geoCode" : {
"latitude" : "21.61",
"longitude" : "87.5"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dimapur",
"value" : "Dimapur",
"geoCode" : {
"latitude" : "25.73",
"longitude" : "93.64"
},
"stateValue" : "Nagaland",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dindigul",
"value" : "Dindigul",
"geoCode" : {
"latitude" : "10.4",
"longitude" : "77.8"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dindori",
"value" : "Dindori",
"geoCode" : {
"latitude" : "22.99",
"longitude" : "80.66"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Diphu",
"value" : "Diphu",
"geoCode" : {
"latitude" : "25.95",
"longitude" : "93.58"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dispur",
"value" : "Dispur",
"geoCode" : {
"latitude" : "26.13564",
"longitude" : "91.80069"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Diu",
"value" : "Diu",
"geoCode" : {
"latitude" : "20.72081",
"longitude" : "70.93989"
},
"stateValue" : "Dadra And Nagar Haveli And Daman And Diu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Diveagar",
"value" : "Diveagar",
"geoCode" : {
"latitude" : "18.08",
"longitude" : "72.99"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Doda",
"value" : "Doda",
"geoCode" : {
"latitude" : "33.14916",
"longitude" : "75.54746"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dombivli",
"value" : "Dombivli",
"geoCode" : {
"latitude" : "19.21667",
"longitude" : "73.08333"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dona Paula",
"value" : "Dona Paula",
"geoCode" : {
"latitude" : "15.45",
"longitude" : "73.8"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dongri",
"value" : "Dongri",
"geoCode" : {
"latitude" : "24.83922",
"longitude" : "79.05886"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Downtown Jabel Ali",
"value" : "Downtown Jabel Ali",
"geoCode" : {
"latitude" : "24.977316",
"longitude" : "55.090973"
},
"stateValue" : "Dubai",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates"
}, {
"label" : "Dubai",
"value" : "Dubai",
"geoCode" : {
"latitude" : "25.07507",
"longitude" : "55.12984"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Dugadda",
"value" : "Dugadda",
"geoCode" : {
"latitude" : "29.81",
"longitude" : "78.6"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dumka",
"value" : "Dumka",
"geoCode" : {
"latitude" : "24.3",
"longitude" : "87.25"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dungarpur",
"value" : "Dungarpur",
"geoCode" : {
"latitude" : "21.28777",
"longitude" : "71.7556"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Durg",
"value" : "Durg",
"geoCode" : {
"latitude" : "21.15",
"longitude" : "81.4"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Durgapur",
"value" : "Durgapur",
"geoCode" : {
"latitude" : "20.0054",
"longitude" : "79.30273"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dwarka",
"value" : "Dwarka",
"geoCode" : {
"latitude" : "22.23944",
"longitude" : "68.96778"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "East Delhi",
"value" : "East Delhi",
"geoCode" : {
"latitude" : "28.66242",
"longitude" : "77.29122"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "East Godavari",
"value" : "East Godavari",
"geoCode" : {
"latitude" : "17.83333",
"longitude" : "81.83333"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ellenabad",
"value" : "Ellenabad",
"geoCode" : {
"latitude" : "29.45282",
"longitude" : "74.66122"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ellore",
"value" : "Ellore",
"geoCode" : {
"latitude" : "16.71311",
"longitude" : "81.10437"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Eluru",
"value" : "Eluru",
"geoCode" : {
"latitude" : "15.2",
"longitude" : "79.88"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ernakulam",
"value" : "Ernakulam",
"geoCode" : {
"latitude" : "10.0",
"longitude" : "76.5"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Erode",
"value" : "Erode",
"geoCode" : {
"latitude" : "11.34",
"longitude" : "77.55"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Etah",
"value" : "Etah",
"geoCode" : {
"latitude" : "27.5",
"longitude" : "78.75"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Etawah",
"value" : "Etawah",
"geoCode" : {
"latitude" : "26.75",
"longitude" : "79.25"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Etmadpur",
"value" : "Etmadpur",
"geoCode" : {
"latitude" : "27.21",
"longitude" : "77.95"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Faizabad",
"value" : "Faizabad",
"geoCode" : {
"latitude" : "26.75",
"longitude" : "82.0"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Faridabad",
"value" : "Faridabad",
"geoCode" : {
"latitude" : "28.41124",
"longitude" : "77.31316"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Faridkot",
"value" : "Faridkot",
"geoCode" : {
"latitude" : "30.67399",
"longitude" : "74.75579"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Farrukhabad",
"value" : "Farrukhabad",
"geoCode" : {
"latitude" : "27.34",
"longitude" : "79.27"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fatehabad",
"value" : "Fatehabad",
"geoCode" : {
"latitude" : "29.51525",
"longitude" : "75.45554"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fatehgarh Sahib",
"value" : "Fatehgarh Sahib",
"geoCode" : {
"latitude" : "30.64379",
"longitude" : "76.34787"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fatehpur",
"value" : "Fatehpur",
"geoCode" : {
"latitude" : "27.99486",
"longitude" : "74.95628"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fatehpur (Barabanki)",
"value" : "Fatehpur (Barabanki)",
"geoCode" : {
"latitude" : "26.9268",
"longitude" : "81.18338"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fatehpur Sikri",
"value" : "Fatehpur Sikri",
"geoCode" : {
"latitude" : "27.0937",
"longitude" : "77.66003"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fazilka",
"value" : "Fazilka",
"geoCode" : {
"latitude" : "30.40207",
"longitude" : "74.02836"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Firozabad",
"value" : "Firozabad",
"geoCode" : {
"latitude" : "27.20072",
"longitude" : "78.42867"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Firozpur",
"value" : "Firozpur",
"geoCode" : {
"latitude" : "30.92574",
"longitude" : "74.61311"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Firozpur Jhirka",
"value" : "Firozpur Jhirka",
"geoCode" : {
"latitude" : "27.78853",
"longitude" : "76.94496"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Forbesganj",
"value" : "Forbesganj",
"geoCode" : {
"latitude" : "26.298605",
"longitude" : "87.268616"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fort",
"value" : "Fort",
"geoCode" : {
"latitude" : "10.786731",
"longitude" : "76.65479"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fujairah",
"value" : "Fujairah",
"geoCode" : {
"latitude" : "25.12166",
"longitude" : "56.32639"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Gadag",
"value" : "Gadag",
"geoCode" : {
"latitude" : "15.49835",
"longitude" : "75.65187"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gadhinglaj",
"value" : "Gadhinglaj",
"geoCode" : {
"latitude" : "16.12",
"longitude" : "74.2"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gadwal",
"value" : "Gadwal",
"geoCode" : {
"latitude" : "16.236176",
"longitude" : "77.8047"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gajraula",
"value" : "Gajraula",
"geoCode" : {
"latitude" : "28.8457",
"longitude" : "78.2396"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gajuwaka",
"value" : "Gajuwaka",
"geoCode" : {
"latitude" : "17.685076",
"longitude" : "83.21044"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gandhidham",
"value" : "Gandhidham",
"geoCode" : {
"latitude" : "23.08333",
"longitude" : "70.13333"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gandhinagar",
"value" : "Gandhinagar",
"geoCode" : {
"latitude" : "23.21667",
"longitude" : "72.68333"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ganganagar",
"value" : "Ganganagar",
"geoCode" : {
"latitude" : "29.92009",
"longitude" : "73.87496"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gangapur",
"value" : "Gangapur",
"geoCode" : {
"latitude" : "20.007668",
"longitude" : "73.77073"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gangavathi",
"value" : "Gangavathi",
"geoCode" : {
"latitude" : "15.33",
"longitude" : "76.5"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gangtok",
"value" : "Gangtok",
"geoCode" : {
"latitude" : "27.32574",
"longitude" : "88.61216"
},
"stateValue" : "Sikkim",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ganjam",
"value" : "Ganjam",
"geoCode" : {
"latitude" : "19.38705",
"longitude" : "85.05079"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gannavaram",
"value" : "Gannavaram",
"geoCode" : {
"latitude" : "17.09",
"longitude" : "82.34"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ganpatipule",
"value" : "Ganpatipule",
"geoCode" : {
"latitude" : "17.11",
"longitude" : "73.27"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Garhshankar",
"value" : "Garhshankar",
"geoCode" : {
"latitude" : "31.233135",
"longitude" : "76.50451"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Garhwa",
"value" : "Garhwa",
"geoCode" : {
"latitude" : "24.15899",
"longitude" : "83.80766"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Garhwal",
"value" : "Garhwal",
"geoCode" : {
"latitude" : "29.51",
"longitude" : "78.75"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gauriganj",
"value" : "Gauriganj",
"geoCode" : {
"latitude" : "26.207111",
"longitude" : "81.69386"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gautam Buddha Nagar",
"value" : "Gautam Buddha Nagar",
"geoCode" : {
"latitude" : "28.539177",
"longitude" : "77.36585"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gaya",
"value" : "Gaya",
"geoCode" : {
"latitude" : "24.79686",
"longitude" : "85.00385"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gharaunda",
"value" : "Gharaunda",
"geoCode" : {
"latitude" : "29.53692",
"longitude" : "76.97142"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ghatkesar",
"value" : "Ghatkesar",
"geoCode" : {
"latitude" : "17.9689",
"longitude" : "79.594055"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ghatkopar",
"value" : "Ghatkopar",
"geoCode" : {
"latitude" : "19.61",
"longitude" : "72.72"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ghaziabad",
"value" : "Ghaziabad",
"geoCode" : {
"latitude" : "28.66535",
"longitude" : "77.43915"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ghazipur",
"value" : "Ghazipur",
"geoCode" : {
"latitude" : "25.58333",
"longitude" : "83.58526"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ghosi",
"value" : "Ghosi",
"geoCode" : {
"latitude" : "25.938305",
"longitude" : "83.56418"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ghumarwin",
"value" : "Ghumarwin",
"geoCode" : {
"latitude" : "31.43504",
"longitude" : "76.71288"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Giddarbaha",
"value" : "Giddarbaha",
"geoCode" : {
"latitude" : "30.200966",
"longitude" : "74.66199"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gingee",
"value" : "Gingee",
"geoCode" : {
"latitude" : "12.25",
"longitude" : "79.4"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Giridih",
"value" : "Giridih",
"geoCode" : {
"latitude" : "24.25",
"longitude" : "85.91667"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Goa",
"value" : "Goa",
"geoCode" : {
"latitude" : "15.501984",
"longitude" : "73.91"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Goa Velha",
"value" : "Goa Velha",
"geoCode" : {
"latitude" : "15.44384",
"longitude" : "73.88572"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Goalpara",
"value" : "Goalpara",
"geoCode" : {
"latitude" : "25.99",
"longitude" : "90.75"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gobichettipalayam",
"value" : "Gobichettipalayam",
"geoCode" : {
"latitude" : "11.45",
"longitude" : "77.44"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Godda",
"value" : "Godda",
"geoCode" : {
"latitude" : "24.84044",
"longitude" : "87.213005"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Godhra",
"value" : "Godhra",
"geoCode" : {
"latitude" : "22.77547",
"longitude" : "73.61488"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gohana",
"value" : "Gohana",
"geoCode" : {
"latitude" : "29.13777",
"longitude" : "76.70247"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gohand",
"value" : "Gohand",
"geoCode" : {
"latitude" : "25.69895",
"longitude" : "79.54564"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gokak",
"value" : "Gokak",
"geoCode" : {
"latitude" : "16.16",
"longitude" : "74.81"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gokarna",
"value" : "Gokarna",
"geoCode" : {
"latitude" : "14.48",
"longitude" : "74.41"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gola Gokarannath",
"value" : "Gola Gokarannath",
"geoCode" : {
"latitude" : "28.07",
"longitude" : "80.47"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Golaghat",
"value" : "Golaghat",
"geoCode" : {
"latitude" : "26.5",
"longitude" : "93.96"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gonda",
"value" : "Gonda",
"geoCode" : {
"latitude" : "27.18581",
"longitude" : "81.96693"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gondal",
"value" : "Gondal",
"geoCode" : {
"latitude" : "21.96074",
"longitude" : "70.80255"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gondia",
"value" : "Gondia",
"geoCode" : {
"latitude" : "21.45",
"longitude" : "80.2"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gopalganj",
"value" : "Gopalganj",
"geoCode" : {
"latitude" : "26.25449",
"longitude" : "84.79421"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gopalpur",
"value" : "Gopalpur",
"geoCode" : {
"latitude" : "32.11",
"longitude" : "76.45"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gorakhpur",
"value" : "Gorakhpur",
"geoCode" : {
"latitude" : "29.44768",
"longitude" : "75.67206"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gosaba",
"value" : "Gosaba",
"geoCode" : {
"latitude" : "22.12",
"longitude" : "88.82"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Govardhan",
"value" : "Govardhan",
"geoCode" : {
"latitude" : "27.49",
"longitude" : "77.46"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Greater Noida",
"value" : "Greater Noida",
"geoCode" : {
"latitude" : "28.49615",
"longitude" : "77.53601"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gudalur",
"value" : "Gudalur",
"geoCode" : {
"latitude" : "11.49",
"longitude" : "76.49"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gudivada",
"value" : "Gudivada",
"geoCode" : {
"latitude" : "16.43547",
"longitude" : "80.99555"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gudiyatham",
"value" : "Gudiyatham",
"geoCode" : {
"latitude" : "12.94412",
"longitude" : "78.86896"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Guduvancheri",
"value" : "Guduvancheri",
"geoCode" : {
"latitude" : "12.84519",
"longitude" : "80.06055"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Guhagar",
"value" : "Guhagar",
"geoCode" : {
"latitude" : "17.39",
"longitude" : "73.21"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gulbarga",
"value" : "Gulbarga",
"geoCode" : {
"latitude" : "17.16667",
"longitude" : "77.08333"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gumla",
"value" : "Gumla",
"geoCode" : {
"latitude" : "23.046715",
"longitude" : "84.558525"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Guna",
"value" : "Guna",
"geoCode" : {
"latitude" : "24.55464",
"longitude" : "77.20082"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Guntakal Junction",
"value" : "Guntakal Junction",
"geoCode" : {
"latitude" : "15.17112",
"longitude" : "77.36244"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Guntur",
"value" : "Guntur",
"geoCode" : {
"latitude" : "16.29974",
"longitude" : "80.45729"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gurdaspur",
"value" : "Gurdaspur",
"geoCode" : {
"latitude" : "31.92",
"longitude" : "75.27"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gurgaon",
"value" : "Gurgaon",
"geoCode" : {
"latitude" : "28.43891",
"longitude" : "77.00592"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gurugram",
"value" : "Gurugram",
"geoCode" : {
"latitude" : "28.477865",
"longitude" : "77.045425"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Guruvayur",
"value" : "Guruvayur",
"geoCode" : {
"latitude" : "10.58",
"longitude" : "76.03"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Guwahati",
"value" : "Guwahati",
"geoCode" : {
"latitude" : "26.1844",
"longitude" : "91.7458"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gwalior",
"value" : "Gwalior",
"geoCode" : {
"latitude" : "26.22983",
"longitude" : "78.17337"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gyalshing",
"value" : "Gyalshing",
"geoCode" : {
"latitude" : "27.28952",
"longitude" : "88.25764"
},
"stateValue" : "Sikkim",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Habra",
"value" : "Habra",
"geoCode" : {
"latitude" : "22.83",
"longitude" : "88.63"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haflong",
"value" : "Haflong",
"geoCode" : {
"latitude" : "25.16",
"longitude" : "93.01"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hailakandi",
"value" : "Hailakandi",
"geoCode" : {
"latitude" : "24.68",
"longitude" : "92.56"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hajipur",
"value" : "Hajipur",
"geoCode" : {
"latitude" : "25.68544",
"longitude" : "85.20981"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haldia",
"value" : "Haldia",
"geoCode" : {
"latitude" : "22.06046",
"longitude" : "88.10975"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haldiaa",
"value" : "Haldiaa",
"geoCode" : {
"latitude" : "22.0604",
"longitude" : "88.1097"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haldwani",
"value" : "Haldwani",
"geoCode" : {
"latitude" : "29.22254",
"longitude" : "79.5286"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haldwani-Cum-Kathgodam",
"value" : "Haldwani-Cum-Kathgodam",
"geoCode" : {
"latitude" : "29.22",
"longitude" : "79.53"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Halisahar",
"value" : "Halisahar",
"geoCode" : {
"latitude" : "22.95",
"longitude" : "88.42"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Halol",
"value" : "Halol",
"geoCode" : {
"latitude" : "22.4",
"longitude" : "73.55"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hamirpur",
"value" : "Hamirpur",
"geoCode" : {
"latitude" : "31.75",
"longitude" : "76.5"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hampi",
"value" : "Hampi",
"geoCode" : {
"latitude" : "14.99",
"longitude" : "76.88"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hanamkonda",
"value" : "Hanamkonda",
"geoCode" : {
"latitude" : "18.007235",
"longitude" : "79.558395"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hansi",
"value" : "Hansi",
"geoCode" : {
"latitude" : "29.10239",
"longitude" : "75.96253"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hanumangarh",
"value" : "Hanumangarh",
"geoCode" : {
"latitude" : "29.11",
"longitude" : "74.6"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hapur",
"value" : "Hapur",
"geoCode" : {
"latitude" : "28.72985",
"longitude" : "77.78068"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Harda",
"value" : "Harda",
"geoCode" : {
"latitude" : "22.335121",
"longitude" : "77.05645"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hardoi",
"value" : "Hardoi",
"geoCode" : {
"latitude" : "27.41667",
"longitude" : "80.25"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haridwar",
"value" : "Haridwar",
"geoCode" : {
"latitude" : "29.94791",
"longitude" : "78.16025"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Harihar",
"value" : "Harihar",
"geoCode" : {
"latitude" : "14.51",
"longitude" : "75.8"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haripur",
"value" : "Haripur",
"geoCode" : {
"latitude" : "32.14",
"longitude" : "77.17"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Harnai",
"value" : "Harnai",
"geoCode" : {
"latitude" : "17.81",
"longitude" : "73.08"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hassan",
"value" : "Hassan",
"geoCode" : {
"latitude" : "12.95",
"longitude" : "76.08333"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hathras",
"value" : "Hathras",
"geoCode" : {
"latitude" : "27.59551",
"longitude" : "78.05201"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haveri",
"value" : "Haveri",
"geoCode" : {
"latitude" : "14.73732",
"longitude" : "75.41062"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hazaribag",
"value" : "Hazaribag",
"geoCode" : {
"latitude" : "24.0",
"longitude" : "85.25"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hazaribagh",
"value" : "Hazaribagh",
"geoCode" : {
"latitude" : "23.99241",
"longitude" : "85.36162"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hesla",
"value" : "Hesla",
"geoCode" : {
"latitude" : "33.40379",
"longitude" : "74.22388"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Himatnagar",
"value" : "Himatnagar",
"geoCode" : {
"latitude" : "23.59893",
"longitude" : "72.96602"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Himmatnagar",
"value" : "Himmatnagar",
"geoCode" : {
"latitude" : "23.52",
"longitude" : "72.94"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hindaun",
"value" : "Hindaun",
"geoCode" : {
"latitude" : "26.76",
"longitude" : "77.02"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hindupur",
"value" : "Hindupur",
"geoCode" : {
"latitude" : "13.82807",
"longitude" : "77.49143"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hingoli",
"value" : "Hingoli",
"geoCode" : {
"latitude" : "19.49",
"longitude" : "77.03"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hinjewadi",
"value" : "Hinjewadi",
"geoCode" : {
"latitude" : "18.591272",
"longitude" : "73.73891"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hirapur",
"value" : "Hirapur",
"geoCode" : {
"latitude" : "23.80308",
"longitude" : "86.43413"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hisar",
"value" : "Hisar",
"geoCode" : {
"latitude" : "29.15394",
"longitude" : "75.72294"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Honavar",
"value" : "Honavar",
"geoCode" : {
"latitude" : "14.28088",
"longitude" : "74.44497"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Honnali",
"value" : "Honnali",
"geoCode" : {
"latitude" : "14.23976",
"longitude" : "75.64507"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Honnavar",
"value" : "Honnavar",
"geoCode" : {
"latitude" : "14.2",
"longitude" : "74.47"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hooghly",
"value" : "Hooghly",
"geoCode" : {
"latitude" : "22.750172",
"longitude" : "88.344185"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hooghly District",
"value" : "Hooghly District",
"geoCode" : {
"latitude" : "22.91",
"longitude" : "88.39"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hosapete",
"value" : "Hosapete",
"geoCode" : {
"latitude" : "15.23",
"longitude" : "76.4"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hoshangabad",
"value" : "Hoshangabad",
"geoCode" : {
"latitude" : "22.58827",
"longitude" : "77.98887"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hoshiarpur",
"value" : "Hoshiarpur",
"geoCode" : {
"latitude" : "31.53723",
"longitude" : "75.91269"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hoskote",
"value" : "Hoskote",
"geoCode" : {
"latitude" : "13.0707",
"longitude" : "77.79814"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hospet",
"value" : "Hospet",
"geoCode" : {
"latitude" : "15.26954",
"longitude" : "76.3871"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hosur",
"value" : "Hosur",
"geoCode" : {
"latitude" : "12.73647",
"longitude" : "77.83264"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Howrah",
"value" : "Howrah",
"geoCode" : {
"latitude" : "22.57688",
"longitude" : "88.31857"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hubli",
"value" : "Hubli",
"geoCode" : {
"latitude" : "15.34776",
"longitude" : "75.13378"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hubli",
"value" : "Hubli",
"geoCode" : {
"latitude" : "15.34776",
"longitude" : "75.9"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hubli",
"value" : "Hubli",
"geoCode" : {
"latitude" : "15.34776",
"longitude" : "71.1"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hubli-Dharwad",
"value" : "Hubli-Dharwad",
"geoCode" : {
"latitude" : "15.45557",
"longitude" : "75.01068"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hublidharwad",
"value" : "Hublidharwad",
"geoCode" : {
"latitude" : "15.364726",
"longitude" : "75.12447"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hunsur",
"value" : "Hunsur",
"geoCode" : {
"latitude" : "11.84",
"longitude" : "75.91"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hyderabad",
"value" : "Hyderabad",
"geoCode" : {
"latitude" : "17.38405",
"longitude" : "78.45636"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ichalkaranji",
"value" : "Ichalkaranji",
"geoCode" : {
"latitude" : "16.69117",
"longitude" : "74.46054"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Idar",
"value" : "Idar",
"geoCode" : {
"latitude" : "23.82",
"longitude" : "73.0"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Idukki",
"value" : "Idukki",
"geoCode" : {
"latitude" : "10.0",
"longitude" : "77.0"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Igatpuri",
"value" : "Igatpuri",
"geoCode" : {
"latitude" : "19.65",
"longitude" : "73.14"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Imphal",
"value" : "Imphal",
"geoCode" : {
"latitude" : "24.80805",
"longitude" : "93.9442"
},
"stateValue" : "Manipur",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Indianapolis",
"value" : "Indianapolis",
"geoCode" : {
"latitude" : "39.801353",
"longitude" : "-86.156494"
},
"stateValue" : "Indiana",
"countryValue" : "United States"
}, {
"label" : "Indore",
"value" : "Indore",
"geoCode" : {
"latitude" : "22.66667",
"longitude" : "75.75"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Indri",
"value" : "Indri",
"geoCode" : {
"latitude" : "29.87999",
"longitude" : "77.05972"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ingraj Bazar",
"value" : "Ingraj Bazar",
"geoCode" : {
"latitude" : "25.00447",
"longitude" : "88.14573"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Irinjalakuda",
"value" : "Irinjalakuda",
"geoCode" : {
"latitude" : "10.34238",
"longitude" : "76.21124"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Islampur",
"value" : "Islampur",
"geoCode" : {
"latitude" : "17.04994",
"longitude" : "74.26524"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Itanagar",
"value" : "Itanagar",
"geoCode" : {
"latitude" : "27.08694",
"longitude" : "93.60987"
},
"stateValue" : "Arunachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Itarsi",
"value" : "Itarsi",
"geoCode" : {
"latitude" : "22.61477",
"longitude" : "77.76222"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jabalpur",
"value" : "Jabalpur",
"geoCode" : {
"latitude" : "23.16",
"longitude" : "79.95"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jagadhri",
"value" : "Jagadhri",
"geoCode" : {
"latitude" : "30.16719",
"longitude" : "77.30367"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jagatsinghpur",
"value" : "Jagatsinghpur",
"geoCode" : {
"latitude" : "20.2",
"longitude" : "86.3"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jagdalpur",
"value" : "Jagdalpur",
"geoCode" : {
"latitude" : "19.08136",
"longitude" : "82.02131"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jagtial",
"value" : "Jagtial",
"geoCode" : {
"latitude" : "18.79473",
"longitude" : "78.91661"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jahanabad",
"value" : "Jahanabad",
"geoCode" : {
"latitude" : "25.213264",
"longitude" : "84.98533"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jaigaon",
"value" : "Jaigaon",
"geoCode" : {
"latitude" : "26.85",
"longitude" : "89.37"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jaipur",
"value" : "Jaipur",
"geoCode" : {
"latitude" : "27.0",
"longitude" : "76.0"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jaisalmer",
"value" : "Jaisalmer",
"geoCode" : {
"latitude" : "26.99382",
"longitude" : "71.00889"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jajpur",
"value" : "Jajpur",
"geoCode" : {
"latitude" : "20.84149",
"longitude" : "86.31237"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalalabad",
"value" : "Jalalabad",
"geoCode" : {
"latitude" : "30.60622",
"longitude" : "74.25727"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalandhar",
"value" : "Jalandhar",
"geoCode" : {
"latitude" : "31.41667",
"longitude" : "75.61667"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalaun",
"value" : "Jalaun",
"geoCode" : {
"latitude" : "26.0",
"longitude" : "79.5"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalgaon",
"value" : "Jalgaon",
"geoCode" : {
"latitude" : "21.00292",
"longitude" : "75.56602"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalna",
"value" : "Jalna",
"geoCode" : {
"latitude" : "19.8",
"longitude" : "75.9"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalor",
"value" : "Jalor",
"geoCode" : {
"latitude" : "25.34558",
"longitude" : "72.61559"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalore",
"value" : "Jalore",
"geoCode" : {
"latitude" : "24.54",
"longitude" : "71.69"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalpaiguri",
"value" : "Jalpaiguri",
"geoCode" : {
"latitude" : "26.516666",
"longitude" : "88.73333"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jamalpur",
"value" : "Jamalpur",
"geoCode" : {
"latitude" : "25.0",
"longitude" : "89.83333"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jammu",
"value" : "Jammu",
"geoCode" : {
"latitude" : "32.75",
"longitude" : "74.83333"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jammu City",
"value" : "Jammu City",
"geoCode" : {
"latitude" : "32.735794",
"longitude" : "74.82147"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jamnagar",
"value" : "Jamnagar",
"geoCode" : {
"latitude" : "22.47292",
"longitude" : "70.06673"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jamshedpur",
"value" : "Jamshedpur",
"geoCode" : {
"latitude" : "22.80278",
"longitude" : "86.18545"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jamtara",
"value" : "Jamtara",
"geoCode" : {
"latitude" : "23.961235",
"longitude" : "86.8048"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jamui",
"value" : "Jamui",
"geoCode" : {
"latitude" : "24.92082",
"longitude" : "86.17538"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jangaon",
"value" : "Jangaon",
"geoCode" : {
"latitude" : "17.72378",
"longitude" : "79.17057"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Janjgir",
"value" : "Janjgir",
"geoCode" : {
"latitude" : "22.00922",
"longitude" : "82.5778"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Janjgir-Champa",
"value" : "Janjgir-Champa",
"geoCode" : {
"latitude" : "21.9",
"longitude" : "82.7"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jashpur",
"value" : "Jashpur",
"geoCode" : {
"latitude" : "22.78495",
"longitude" : "83.84573"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jaunpur",
"value" : "Jaunpur",
"geoCode" : {
"latitude" : "25.75",
"longitude" : "82.75"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jawhar",
"value" : "Jawhar",
"geoCode" : {
"latitude" : "19.9",
"longitude" : "73.21"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jaynagar",
"value" : "Jaynagar",
"geoCode" : {
"latitude" : "26.59048",
"longitude" : "86.13791"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jaysingpur",
"value" : "Jaysingpur",
"geoCode" : {
"latitude" : "16.779844",
"longitude" : "74.55605"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jehanabad",
"value" : "Jehanabad",
"geoCode" : {
"latitude" : "25.21327",
"longitude" : "84.98533"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jejuri",
"value" : "Jejuri",
"geoCode" : {
"latitude" : "18.27",
"longitude" : "74.16"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jetpur",
"value" : "Jetpur",
"geoCode" : {
"latitude" : "21.75482",
"longitude" : "70.62347"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jewar",
"value" : "Jewar",
"geoCode" : {
"latitude" : "28.14",
"longitude" : "77.57"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jeypore",
"value" : "Jeypore",
"geoCode" : {
"latitude" : "18.8563",
"longitude" : "82.5716"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jhabua",
"value" : "Jhabua",
"geoCode" : {
"latitude" : "22.76772",
"longitude" : "74.59087"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jhajjar",
"value" : "Jhajjar",
"geoCode" : {
"latitude" : "28.6063",
"longitude" : "76.6565"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jhalawar",
"value" : "Jhalawar",
"geoCode" : {
"latitude" : "24.59633",
"longitude" : "76.16499"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jhansi",
"value" : "Jhansi",
"geoCode" : {
"latitude" : "25.5",
"longitude" : "78.5"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jharia",
"value" : "Jharia",
"geoCode" : {
"latitude" : "23.74079",
"longitude" : "86.41456"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jharsuguda",
"value" : "Jharsuguda",
"geoCode" : {
"latitude" : "21.85531",
"longitude" : "84.00698"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jhumri Telaiya",
"value" : "Jhumri Telaiya",
"geoCode" : {
"latitude" : "24.434158",
"longitude" : "85.52826"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jhunjhunu",
"value" : "Jhunjhunu",
"geoCode" : {
"latitude" : "27.47",
"longitude" : "75.4"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jhunjhunun",
"value" : "Jhunjhunun",
"geoCode" : {
"latitude" : "28.12559",
"longitude" : "75.39797"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jind",
"value" : "Jind",
"geoCode" : {
"latitude" : "29.31577",
"longitude" : "76.31502"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jodhpur",
"value" : "Jodhpur",
"geoCode" : {
"latitude" : "21.90174",
"longitude" : "70.0327"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jorethang",
"value" : "Jorethang",
"geoCode" : {
"latitude" : "27.15",
"longitude" : "88.28"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jorhat",
"value" : "Jorhat",
"geoCode" : {
"latitude" : "26.8",
"longitude" : "94.26"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Joshimath",
"value" : "Joshimath",
"geoCode" : {
"latitude" : "30.49",
"longitude" : "79.7"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jubbal",
"value" : "Jubbal",
"geoCode" : {
"latitude" : "30.91",
"longitude" : "77.64"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jumri Tilaiya",
"value" : "Jumri Tilaiya",
"geoCode" : {
"latitude" : "23.80329",
"longitude" : "86.44256"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Junagadh",
"value" : "Junagadh",
"geoCode" : {
"latitude" : "21.25",
"longitude" : "70.33333"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Junnar",
"value" : "Junnar",
"geoCode" : {
"latitude" : "19.2",
"longitude" : "73.85"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kachchh",
"value" : "Kachchh",
"geoCode" : {
"latitude" : "23.58333",
"longitude" : "70.0"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kadapa",
"value" : "Kadapa",
"geoCode" : {
"latitude" : "14.32",
"longitude" : "78.48"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kadi",
"value" : "Kadi",
"geoCode" : {
"latitude" : "22.9",
"longitude" : "72.23"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kadiri",
"value" : "Kadiri",
"geoCode" : {
"latitude" : "14.11376",
"longitude" : "78.16107"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kadur",
"value" : "Kadur",
"geoCode" : {
"latitude" : "13.54",
"longitude" : "76.02"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kagal",
"value" : "Kagal",
"geoCode" : {
"latitude" : "16.588646",
"longitude" : "74.30855"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kaithal",
"value" : "Kaithal",
"geoCode" : {
"latitude" : "29.80153",
"longitude" : "76.39959"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kakinada",
"value" : "Kakinada",
"geoCode" : {
"latitude" : "16.96036",
"longitude" : "82.23809"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kaladhungi",
"value" : "Kaladhungi",
"geoCode" : {
"latitude" : "29.29",
"longitude" : "79.31"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalamassery",
"value" : "Kalamassery",
"geoCode" : {
"latitude" : "10.0614",
"longitude" : "76.32631"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalamb",
"value" : "Kalamb",
"geoCode" : {
"latitude" : "19.34",
"longitude" : "73.76"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalanaur",
"value" : "Kalanaur",
"geoCode" : {
"latitude" : "28.82823",
"longitude" : "76.3955"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kaliaganj",
"value" : "Kaliaganj",
"geoCode" : {
"latitude" : "25.63",
"longitude" : "88.32"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalimpong",
"value" : "Kalimpong",
"geoCode" : {
"latitude" : "27.07059",
"longitude" : "88.47529"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalka",
"value" : "Kalka",
"geoCode" : {
"latitude" : "30.83982",
"longitude" : "76.94065"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kallakkurichchi",
"value" : "Kallakkurichchi",
"geoCode" : {
"latitude" : "11.7404",
"longitude" : "78.959"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kallakurichi",
"value" : "Kallakurichi",
"geoCode" : {
"latitude" : "11.7",
"longitude" : "79.32"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalna",
"value" : "Kalna",
"geoCode" : {
"latitude" : "23.21",
"longitude" : "88.35"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalol",
"value" : "Kalol",
"geoCode" : {
"latitude" : "22.60777",
"longitude" : "73.46272"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalpetta",
"value" : "Kalpetta",
"geoCode" : {
"latitude" : "11.610328",
"longitude" : "76.08281"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalyan",
"value" : "Kalyan",
"geoCode" : {
"latitude" : "19.2437",
"longitude" : "73.13554"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalyan-Dombivli",
"value" : "Kalyan-Dombivli",
"geoCode" : {
"latitude" : "19.25",
"longitude" : "73.14"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalyani",
"value" : "Kalyani",
"geoCode" : {
"latitude" : "22.96",
"longitude" : "88.42"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kamareddy",
"value" : "Kamareddy",
"geoCode" : {
"latitude" : "18.32567",
"longitude" : "78.33416"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kamargaon",
"value" : "Kamargaon",
"geoCode" : {
"latitude" : "17.4",
"longitude" : "73.75"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kamarhati",
"value" : "Kamarhati",
"geoCode" : {
"latitude" : "22.67",
"longitude" : "88.37"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kamarpukur",
"value" : "Kamarpukur",
"geoCode" : {
"latitude" : "22.9",
"longitude" : "87.65"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kanchipuram",
"value" : "Kanchipuram",
"geoCode" : {
"latitude" : "12.83515",
"longitude" : "79.70006"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kanchrapara",
"value" : "Kanchrapara",
"geoCode" : {
"latitude" : "22.97",
"longitude" : "88.43"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kandhamal",
"value" : "Kandhamal",
"geoCode" : {
"latitude" : "20.3",
"longitude" : "84.0"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kandla",
"value" : "Kandla",
"geoCode" : {
"latitude" : "23.03333",
"longitude" : "70.21667"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kangra",
"value" : "Kangra",
"geoCode" : {
"latitude" : "32.16667",
"longitude" : "76.25"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kanhangad",
"value" : "Kanhangad",
"geoCode" : {
"latitude" : "12.3",
"longitude" : "75.09"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kankavli",
"value" : "Kankavli",
"geoCode" : {
"latitude" : "16.17",
"longitude" : "73.69"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kanker",
"value" : "Kanker",
"geoCode" : {
"latitude" : "20.25",
"longitude" : "81.5"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kannauj",
"value" : "Kannauj",
"geoCode" : {
"latitude" : "27.0177",
"longitude" : "79.67846"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kanniyakumari",
"value" : "Kanniyakumari",
"geoCode" : {
"latitude" : "8.087887",
"longitude" : "77.546906"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kannod",
"value" : "Kannod",
"geoCode" : {
"latitude" : "22.921175",
"longitude" : "76.7194"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kannur",
"value" : "Kannur",
"geoCode" : {
"latitude" : "12.16667",
"longitude" : "75.33333"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kanpur",
"value" : "Kanpur",
"geoCode" : {
"latitude" : "26.46523",
"longitude" : "80.34975"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kantilo",
"value" : "Kantilo",
"geoCode" : {
"latitude" : "20.36",
"longitude" : "85.19"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kanyakumari",
"value" : "Kanyakumari",
"geoCode" : {
"latitude" : "8.07",
"longitude" : "77.53"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kapurthala",
"value" : "Kapurthala",
"geoCode" : {
"latitude" : "31.38011",
"longitude" : "75.38105"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karad",
"value" : "Karad",
"geoCode" : {
"latitude" : "17.28937",
"longitude" : "74.18183"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karaikal",
"value" : "Karaikal",
"geoCode" : {
"latitude" : "10.92544",
"longitude" : "79.838005"
},
"stateValue" : "Puducherry",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karaikkudi",
"value" : "Karaikkudi",
"geoCode" : {
"latitude" : "10.07354",
"longitude" : "78.7732"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karaikudi",
"value" : "Karaikudi",
"geoCode" : {
"latitude" : "10.072847",
"longitude" : "78.77231"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karamsad",
"value" : "Karamsad",
"geoCode" : {
"latitude" : "22.54593",
"longitude" : "72.91362"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karanja",
"value" : "Karanja",
"geoCode" : {
"latitude" : "20.47",
"longitude" : "77.47"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karauli",
"value" : "Karauli",
"geoCode" : {
"latitude" : "26.25",
"longitude" : "76.74"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kareli",
"value" : "Kareli",
"geoCode" : {
"latitude" : "22.16",
"longitude" : "80.58"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kargil",
"value" : "Kargil",
"geoCode" : {
"latitude" : "34.55765",
"longitude" : "76.12622"
},
"stateValue" : "Ladakh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karimganj",
"value" : "Karimganj",
"geoCode" : {
"latitude" : "24.86",
"longitude" : "92.36"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karimnagar",
"value" : "Karimnagar",
"geoCode" : {
"latitude" : "18.33844",
"longitude" : "79.22938"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karjan",
"value" : "Karjan",
"geoCode" : {
"latitude" : "32.16",
"longitude" : "77.18"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karjat",
"value" : "Karjat",
"geoCode" : {
"latitude" : "18.9107",
"longitude" : "73.32354"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karkala",
"value" : "Karkala",
"geoCode" : {
"latitude" : "13.06",
"longitude" : "74.99"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karnal",
"value" : "Karnal",
"geoCode" : {
"latitude" : "29.66667",
"longitude" : "76.83333"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kartarpur",
"value" : "Kartarpur",
"geoCode" : {
"latitude" : "31.44268",
"longitude" : "75.49847"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karur",
"value" : "Karur",
"geoCode" : {
"latitude" : "10.95771",
"longitude" : "78.08095"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karwar",
"value" : "Karwar",
"geoCode" : {
"latitude" : "14.81361",
"longitude" : "74.12972"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kasaragod",
"value" : "Kasaragod",
"geoCode" : {
"latitude" : "12.17",
"longitude" : "75.13"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kasaragod District",
"value" : "Kasaragod District",
"geoCode" : {
"latitude" : "12.328525",
"longitude" : "75.08273"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kasauli",
"value" : "Kasauli",
"geoCode" : {
"latitude" : "30.83",
"longitude" : "76.97"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kasba",
"value" : "Kasba",
"geoCode" : {
"latitude" : "25.85643",
"longitude" : "87.53836"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kasganj",
"value" : "Kasganj",
"geoCode" : {
"latitude" : "27.8",
"longitude" : "78.64"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kashipur",
"value" : "Kashipur",
"geoCode" : {
"latitude" : "29.21399",
"longitude" : "78.95693"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kathua",
"value" : "Kathua",
"geoCode" : {
"latitude" : "32.58333",
"longitude" : "75.5"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Katihar",
"value" : "Katihar",
"geoCode" : {
"latitude" : "25.5",
"longitude" : "87.6"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Katni",
"value" : "Katni",
"geoCode" : {
"latitude" : "23.01",
"longitude" : "80.88"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Katra",
"value" : "Katra",
"geoCode" : {
"latitude" : "32.99167",
"longitude" : "74.93195"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Katwa",
"value" : "Katwa",
"geoCode" : {
"latitude" : "23.65",
"longitude" : "88.13"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kausani",
"value" : "Kausani",
"geoCode" : {
"latitude" : "29.84",
"longitude" : "79.55"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kawardha",
"value" : "Kawardha",
"geoCode" : {
"latitude" : "22.000137",
"longitude" : "81.225426"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kayavarohan",
"value" : "Kayavarohan",
"geoCode" : {
"latitude" : "22.08",
"longitude" : "73.24"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kendrapara",
"value" : "Kendrapara",
"geoCode" : {
"latitude" : "20.5",
"longitude" : "86.5"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kendujhar",
"value" : "Kendujhar",
"geoCode" : {
"latitude" : "21.5",
"longitude" : "85.5"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khagaria",
"value" : "Khagaria",
"geoCode" : {
"latitude" : "25.49",
"longitude" : "86.47"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khairagarh",
"value" : "Khairagarh",
"geoCode" : {
"latitude" : "21.418257",
"longitude" : "80.98091"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khalapur",
"value" : "Khalapur",
"geoCode" : {
"latitude" : "18.743332",
"longitude" : "73.28813"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khalilabad",
"value" : "Khalilabad",
"geoCode" : {
"latitude" : "26.77577",
"longitude" : "83.05866"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khambhat",
"value" : "Khambhat",
"geoCode" : {
"latitude" : "22.31744",
"longitude" : "72.61916"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khammam",
"value" : "Khammam",
"geoCode" : {
"latitude" : "17.5",
"longitude" : "80.33333"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khandala",
"value" : "Khandala",
"geoCode" : {
"latitude" : "18.03",
"longitude" : "74.17"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khandwa",
"value" : "Khandwa",
"geoCode" : {
"latitude" : "21.82427",
"longitude" : "76.35086"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khanna",
"value" : "Khanna",
"geoCode" : {
"latitude" : "30.70547",
"longitude" : "76.22196"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kharagpur",
"value" : "Kharagpur",
"geoCode" : {
"latitude" : "25.12446",
"longitude" : "86.55578"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kharar",
"value" : "Kharar",
"geoCode" : {
"latitude" : "30.74632",
"longitude" : "76.64689"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kharghar",
"value" : "Kharghar",
"geoCode" : {
"latitude" : "19.034637",
"longitude" : "73.06635"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khargone",
"value" : "Khargone",
"geoCode" : {
"latitude" : "21.82306",
"longitude" : "75.61028"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khatima",
"value" : "Khatima",
"geoCode" : {
"latitude" : "28.920916",
"longitude" : "79.96963"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khed",
"value" : "Khed",
"geoCode" : {
"latitude" : "17.64",
"longitude" : "73.24"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kheda",
"value" : "Kheda",
"geoCode" : {
"latitude" : "22.75",
"longitude" : "72.83333"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khet Huai Khwang",
"value" : "Khet Huai Khwang",
"geoCode" : {
"latitude" : "13.766677",
"longitude" : "100.574196"
},
"stateValue" : "Krung Thep Maha Nakhon",
"countryValue" : "Thailand"
}, {
"label" : "Khetri",
"value" : "Khetri",
"geoCode" : {
"latitude" : "27.99",
"longitude" : "75.77"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khopoli",
"value" : "Khopoli",
"geoCode" : {
"latitude" : "18.78562",
"longitude" : "73.34589"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khordha",
"value" : "Khordha",
"geoCode" : {
"latitude" : "19.79",
"longitude" : "85.23"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khuldabad",
"value" : "Khuldabad",
"geoCode" : {
"latitude" : "20.01",
"longitude" : "75.18"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khunti",
"value" : "Khunti",
"geoCode" : {
"latitude" : "22.88",
"longitude" : "85.12"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khurda",
"value" : "Khurda",
"geoCode" : {
"latitude" : "19.91",
"longitude" : "85.42"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khurja",
"value" : "Khurja",
"geoCode" : {
"latitude" : "28.23",
"longitude" : "77.86"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kishanganj",
"value" : "Kishanganj",
"geoCode" : {
"latitude" : "26.09822",
"longitude" : "87.94504"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kishangarh",
"value" : "Kishangarh",
"geoCode" : {
"latitude" : "26.59006",
"longitude" : "74.85397"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kochi",
"value" : "Kochi",
"geoCode" : {
"latitude" : "10.02652",
"longitude" : "76.30859"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kodaikanal",
"value" : "Kodaikanal",
"geoCode" : {
"latitude" : "10.23925",
"longitude" : "77.48932"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kodlipet",
"value" : "Kodlipet",
"geoCode" : {
"latitude" : "12.72",
"longitude" : "75.89"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kodungallur",
"value" : "Kodungallur",
"geoCode" : {
"latitude" : "10.23263",
"longitude" : "76.19513"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kohima",
"value" : "Kohima",
"geoCode" : {
"latitude" : "25.67467",
"longitude" : "94.11099"
},
"stateValue" : "Nagaland",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kokrajhar",
"value" : "Kokrajhar",
"geoCode" : {
"latitude" : "26.4",
"longitude" : "90.27"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kolar",
"value" : "Kolar",
"geoCode" : {
"latitude" : "13.13",
"longitude" : "78.23"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kolasib",
"value" : "Kolasib",
"geoCode" : {
"latitude" : "24.33",
"longitude" : "92.76"
},
"stateValue" : "Manipur",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kolhapur",
"value" : "Kolhapur",
"geoCode" : {
"latitude" : "16.69013",
"longitude" : "74.22981"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kolkata",
"value" : "Kolkata",
"geoCode" : {
"latitude" : "22.541111",
"longitude" : "88.337776"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kolkata",
"value" : "Kolkata",
"geoCode" : {
"latitude" : "22.541111",
"longitude" : "87.337776"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kollam",
"value" : "Kollam",
"geoCode" : {
"latitude" : "8.88113",
"longitude" : "76.58469"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kondapalle",
"value" : "Kondapalle",
"geoCode" : {
"latitude" : "17.01511",
"longitude" : "81.77255"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kopargaon",
"value" : "Kopargaon",
"geoCode" : {
"latitude" : "19.89",
"longitude" : "74.48"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Koppa",
"value" : "Koppa",
"geoCode" : {
"latitude" : "13.53",
"longitude" : "75.36"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Koppal",
"value" : "Koppal",
"geoCode" : {
"latitude" : "15.5",
"longitude" : "76.2"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Koraput",
"value" : "Koraput",
"geoCode" : {
"latitude" : "19.0",
"longitude" : "83.0"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Korba",
"value" : "Korba",
"geoCode" : {
"latitude" : "22.5",
"longitude" : "82.6"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Koregaon",
"value" : "Koregaon",
"geoCode" : {
"latitude" : "17.701035",
"longitude" : "74.16219"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Koriya",
"value" : "Koriya",
"geoCode" : {
"latitude" : "23.25",
"longitude" : "82.56"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kosi",
"value" : "Kosi",
"geoCode" : {
"latitude" : "27.79449",
"longitude" : "77.4368"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kota",
"value" : "Kota",
"geoCode" : {
"latitude" : "22.29507",
"longitude" : "82.02366"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kotagiri",
"value" : "Kotagiri",
"geoCode" : {
"latitude" : "11.39",
"longitude" : "76.84"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kotdwara",
"value" : "Kotdwara",
"geoCode" : {
"latitude" : "29.74612",
"longitude" : "78.52219"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kothagudem",
"value" : "Kothagudem",
"geoCode" : {
"latitude" : "17.54",
"longitude" : "80.61"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kothamangalam",
"value" : "Kothamangalam",
"geoCode" : {
"latitude" : "10.06157",
"longitude" : "76.63114"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kothapet",
"value" : "Kothapet",
"geoCode" : {
"latitude" : "16.78363",
"longitude" : "80.84822"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kothi",
"value" : "Kothi",
"geoCode" : {
"latitude" : "21.915817",
"longitude" : "77.900314"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kotkapura",
"value" : "Kotkapura",
"geoCode" : {
"latitude" : "30.5819",
"longitude" : "74.83298"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kotkhai",
"value" : "Kotkhai",
"geoCode" : {
"latitude" : "31.1",
"longitude" : "77.59"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kotma",
"value" : "Kotma",
"geoCode" : {
"latitude" : "23.204004",
"longitude" : "81.980385"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kotputli",
"value" : "Kotputli",
"geoCode" : {
"latitude" : "27.70207",
"longitude" : "76.19911"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kottagudem",
"value" : "Kottagudem",
"geoCode" : {
"latitude" : "17.55106",
"longitude" : "80.61779"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kottarakkara",
"value" : "Kottarakkara",
"geoCode" : {
"latitude" : "8.82",
"longitude" : "76.86"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kottayam",
"value" : "Kottayam",
"geoCode" : {
"latitude" : "9.66667",
"longitude" : "76.66667"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kovalam",
"value" : "Kovalam",
"geoCode" : {
"latitude" : "12.78",
"longitude" : "80.24"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kovilpatti",
"value" : "Kovilpatti",
"geoCode" : {
"latitude" : "9.17167",
"longitude" : "77.86989"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Koynanagar",
"value" : "Koynanagar",
"geoCode" : {
"latitude" : "17.37",
"longitude" : "73.9"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kozhikode",
"value" : "Kozhikode",
"geoCode" : {
"latitude" : "11.5",
"longitude" : "76.0"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Krishna",
"value" : "Krishna",
"geoCode" : {
"latitude" : "16.66667",
"longitude" : "81.0"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Krishnagiri",
"value" : "Krishnagiri",
"geoCode" : {
"latitude" : "12.58",
"longitude" : "77.96"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Krishnanagar",
"value" : "Krishnanagar",
"geoCode" : {
"latitude" : "23.4",
"longitude" : "88.5"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Krishnapur",
"value" : "Krishnapur",
"geoCode" : {
"latitude" : "22.67",
"longitude" : "88.26"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kuchaman",
"value" : "Kuchaman",
"geoCode" : {
"latitude" : "26.91",
"longitude" : "75.18"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kuchesar",
"value" : "Kuchesar",
"geoCode" : {
"latitude" : "28.68",
"longitude" : "77.94"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kudal",
"value" : "Kudal",
"geoCode" : {
"latitude" : "15.97",
"longitude" : "73.68"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kukatpalli",
"value" : "Kukatpalli",
"geoCode" : {
"latitude" : "17.48486",
"longitude" : "78.41376"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kulpi",
"value" : "Kulpi",
"geoCode" : {
"latitude" : "22.367233",
"longitude" : "88.42663"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kulu",
"value" : "Kulu",
"geoCode" : {
"latitude" : "32.0",
"longitude" : "77.25"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kumbakonam",
"value" : "Kumbakonam",
"geoCode" : {
"latitude" : "10.96209",
"longitude" : "79.39124"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kumbalam",
"value" : "Kumbalam",
"geoCode" : {
"latitude" : "9.89",
"longitude" : "76.3"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kumta",
"value" : "Kumta",
"geoCode" : {
"latitude" : "14.41",
"longitude" : "74.43"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kunda",
"value" : "Kunda",
"geoCode" : {
"latitude" : "25.72721",
"longitude" : "81.50831"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kunigal",
"value" : "Kunigal",
"geoCode" : {
"latitude" : "13.02",
"longitude" : "77.03"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kunnamkulam",
"value" : "Kunnamkulam",
"geoCode" : {
"latitude" : "10.64",
"longitude" : "76.07"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kuppam",
"value" : "Kuppam",
"geoCode" : {
"latitude" : "12.746113",
"longitude" : "78.34229"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kupwara",
"value" : "Kupwara",
"geoCode" : {
"latitude" : "34.52",
"longitude" : "74.26"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kurnool",
"value" : "Kurnool",
"geoCode" : {
"latitude" : "15.58333",
"longitude" : "78.33333"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kurseong",
"value" : "Kurseong",
"geoCode" : {
"latitude" : "26.8",
"longitude" : "88.26"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kurukshetra",
"value" : "Kurukshetra",
"geoCode" : {
"latitude" : "30.0",
"longitude" : "76.75"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kushalnagar",
"value" : "Kushalnagar",
"geoCode" : {
"latitude" : "12.36",
"longitude" : "75.99"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kushinagar",
"value" : "Kushinagar",
"geoCode" : {
"latitude" : "26.73",
"longitude" : "83.88"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kutch District",
"value" : "Kutch District",
"geoCode" : {
"latitude" : "23.733732",
"longitude" : "69.85974"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kuwait City",
"value" : "Kuwait City",
"geoCode" : {
"latitude" : "29.3759",
"longitude" : "47.9774"
},
"stateValue" : "Capital Governorate",
"countryValue" : "Kuwait",
"countryCode" : "KU"
}, {
"label" : "Ladnun",
"value" : "Ladnun",
"geoCode" : {
"latitude" : "27.65",
"longitude" : "74.39"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ladwa",
"value" : "Ladwa",
"geoCode" : {
"latitude" : "29.9935",
"longitude" : "77.04563"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lakhimpur",
"value" : "Lakhimpur",
"geoCode" : {
"latitude" : "27.35",
"longitude" : "94.25"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lakhisarai",
"value" : "Lakhisarai",
"geoCode" : {
"latitude" : "25.173933",
"longitude" : "86.094925"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lakhpat",
"value" : "Lakhpat",
"geoCode" : {
"latitude" : "23.82",
"longitude" : "68.77"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lal Bahadur Nagar",
"value" : "Lal Bahadur Nagar",
"geoCode" : {
"latitude" : "17.34769",
"longitude" : "78.55757"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lalganj",
"value" : "Lalganj",
"geoCode" : {
"latitude" : "25.79612",
"longitude" : "82.99853"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lalitpur",
"value" : "Lalitpur",
"geoCode" : {
"latitude" : "24.5",
"longitude" : "78.5"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lalpur",
"value" : "Lalpur",
"geoCode" : {
"latitude" : "23.083042",
"longitude" : "88.55442"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lamahatta",
"value" : "Lamahatta",
"geoCode" : {
"latitude" : "27.04812",
"longitude" : "88.3427"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lansdowne",
"value" : "Lansdowne",
"geoCode" : {
"latitude" : "29.75",
"longitude" : "78.74"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lapangan Terbang Antarabangsa Bayan Lepas",
"value" : "Lapangan Terbang Antarabangsa Bayan Lepas",
"geoCode" : {
"latitude" : "5.2927995",
"longitude" : "100.26614"
},
"stateValue" : "Penang",
"countryValue" : "Malaysia"
}, {
"label" : "Latehar",
"value" : "Latehar",
"geoCode" : {
"latitude" : "23.74",
"longitude" : "84.5"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Latur",
"value" : "Latur",
"geoCode" : {
"latitude" : "18.4",
"longitude" : "76.8"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lavasa",
"value" : "Lavasa",
"geoCode" : {
"latitude" : "18.38",
"longitude" : "73.53"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Leh",
"value" : "Leh",
"geoCode" : {
"latitude" : "34.16504",
"longitude" : "77.58402"
},
"stateValue" : "Ladakh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Limbdi",
"value" : "Limbdi",
"geoCode" : {
"latitude" : "22.56",
"longitude" : "71.77"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lohaghat",
"value" : "Lohaghat",
"geoCode" : {
"latitude" : "29.404179",
"longitude" : "80.08422"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lohardaga",
"value" : "Lohardaga",
"geoCode" : {
"latitude" : "23.43136",
"longitude" : "84.68364"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Loharu",
"value" : "Loharu",
"geoCode" : {
"latitude" : "28.42993",
"longitude" : "75.80779"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lonar",
"value" : "Lonar",
"geoCode" : {
"latitude" : "19.98",
"longitude" : "76.53"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Louisville",
"value" : "Louisville",
"geoCode" : {
"latitude" : "38.25782",
"longitude" : "-85.75387"
},
"stateValue" : "Kentucky",
"countryValue" : "United States"
}, {
"label" : "Lucknow",
"value" : "Lucknow",
"geoCode" : {
"latitude" : "26.83928",
"longitude" : "80.92313"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ludhiana",
"value" : "Ludhiana",
"geoCode" : {
"latitude" : "30.91204",
"longitude" : "75.85379"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lunglei",
"value" : "Lunglei",
"geoCode" : {
"latitude" : "22.9",
"longitude" : "92.75"
},
"stateValue" : "Mizoram",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Macherla",
"value" : "Macherla",
"geoCode" : {
"latitude" : "16.4779",
"longitude" : "79.4377"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Machilipatnam",
"value" : "Machilipatnam",
"geoCode" : {
"latitude" : "16.18747",
"longitude" : "81.13888"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Madanapalle",
"value" : "Madanapalle",
"geoCode" : {
"latitude" : "13.5503",
"longitude" : "78.50288"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Madgaon",
"value" : "Madgaon",
"geoCode" : {
"latitude" : "15.27501",
"longitude" : "73.95786"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Madhepura",
"value" : "Madhepura",
"geoCode" : {
"latitude" : "25.87733",
"longitude" : "86.85215"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Madhubani",
"value" : "Madhubani",
"geoCode" : {
"latitude" : "26.35367",
"longitude" : "86.07169"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Madikeri",
"value" : "Madikeri",
"geoCode" : {
"latitude" : "12.42602",
"longitude" : "75.7382"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Madurai",
"value" : "Madurai",
"geoCode" : {
"latitude" : "9.89",
"longitude" : "78.03"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Madurantakam",
"value" : "Madurantakam",
"geoCode" : {
"latitude" : "12.52",
"longitude" : "79.89"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Magilds Industrial Park",
"value" : "Magilds Industrial Park",
"geoCode" : {
"latitude" : "3.2295718",
"longitude" : "101.57192"
},
"stateValue" : "Selangor",
"countryValue" : "Malaysia"
}, {
"label" : "Mahabaleshwar",
"value" : "Mahabaleshwar",
"geoCode" : {
"latitude" : "17.56",
"longitude" : "73.4"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahabubabad",
"value" : "Mahabubabad",
"geoCode" : {
"latitude" : "17.5918",
"longitude" : "79.64946"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahad",
"value" : "Mahad",
"geoCode" : {
"latitude" : "18.08",
"longitude" : "73.42"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Maharajganj",
"value" : "Maharajganj",
"geoCode" : {
"latitude" : "27.14553",
"longitude" : "83.56197"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahasamund",
"value" : "Mahasamund",
"geoCode" : {
"latitude" : "21.02",
"longitude" : "82.37"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahbubnagar",
"value" : "Mahbubnagar",
"geoCode" : {
"latitude" : "16.63171",
"longitude" : "77.75556"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahe",
"value" : "Mahe",
"geoCode" : {
"latitude" : "11.7",
"longitude" : "75.53333"
},
"stateValue" : "Puducherry",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahemdavad",
"value" : "Mahemdavad",
"geoCode" : {
"latitude" : "22.82163",
"longitude" : "72.7631"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahendragarh",
"value" : "Mahendragarh",
"geoCode" : {
"latitude" : "28.26",
"longitude" : "76.15"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahesana",
"value" : "Mahesana",
"geoCode" : {
"latitude" : "23.66667",
"longitude" : "72.5"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Maheshwar",
"value" : "Maheshwar",
"geoCode" : {
"latitude" : "22.17592",
"longitude" : "75.58715"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahuva",
"value" : "Mahuva",
"geoCode" : {
"latitude" : "21.08",
"longitude" : "71.76"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahwah",
"value" : "Mahwah",
"geoCode" : {
"latitude" : "26.95",
"longitude" : "76.78"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Maihar",
"value" : "Maihar",
"geoCode" : {
"latitude" : "24.24",
"longitude" : "80.75"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mailani",
"value" : "Mailani",
"geoCode" : {
"latitude" : "28.4",
"longitude" : "80.36"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mainpuri",
"value" : "Mainpuri",
"geoCode" : {
"latitude" : "27.16667",
"longitude" : "79.0"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Makrana",
"value" : "Makrana",
"geoCode" : {
"latitude" : "27.02",
"longitude" : "74.69"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mala",
"value" : "Mala",
"geoCode" : {
"latitude" : "10.22",
"longitude" : "76.25"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malad",
"value" : "Malad",
"geoCode" : {
"latitude" : "19.174494",
"longitude" : "72.8438"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malappuram",
"value" : "Malappuram",
"geoCode" : {
"latitude" : "11.0",
"longitude" : "76.16667"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malavalli",
"value" : "Malavalli",
"geoCode" : {
"latitude" : "12.35",
"longitude" : "76.94"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malda",
"value" : "Malda",
"geoCode" : {
"latitude" : "25.0108",
"longitude" : "88.1411"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malegaon",
"value" : "Malegaon",
"geoCode" : {
"latitude" : "20.54966",
"longitude" : "74.53462"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malkajgiri",
"value" : "Malkajgiri",
"geoCode" : {
"latitude" : "17.44781",
"longitude" : "78.52633"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malout",
"value" : "Malout",
"geoCode" : {
"latitude" : "30.16",
"longitude" : "74.57"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malpe",
"value" : "Malpe",
"geoCode" : {
"latitude" : "13.35",
"longitude" : "74.7"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malpura",
"value" : "Malpura",
"geoCode" : {
"latitude" : "26.22",
"longitude" : "75.42"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malur",
"value" : "Malur",
"geoCode" : {
"latitude" : "13.00348",
"longitude" : "77.9425"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malvan",
"value" : "Malvan",
"geoCode" : {
"latitude" : "15.86",
"longitude" : "73.62"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Manali",
"value" : "Manali",
"geoCode" : {
"latitude" : "13.17",
"longitude" : "80.28"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Manapparai",
"value" : "Manapparai",
"geoCode" : {
"latitude" : "10.6",
"longitude" : "78.41"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Manarcaud",
"value" : "Manarcaud",
"geoCode" : {
"latitude" : "9.58988",
"longitude" : "76.57972"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mancheral",
"value" : "Mancheral",
"geoCode" : {
"latitude" : "18.875492",
"longitude" : "79.44695"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandapam",
"value" : "Mandapam",
"geoCode" : {
"latitude" : "16.519629",
"longitude" : "80.69455"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandapeta",
"value" : "Mandapeta",
"geoCode" : {
"latitude" : "16.89",
"longitude" : "81.8"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandi",
"value" : "Mandi",
"geoCode" : {
"latitude" : "31.71194",
"longitude" : "76.93273"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandla",
"value" : "Mandla",
"geoCode" : {
"latitude" : "22.64041",
"longitude" : "80.51344"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandsaur",
"value" : "Mandsaur",
"geoCode" : {
"latitude" : "24.33333",
"longitude" : "75.25"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandu",
"value" : "Mandu",
"geoCode" : {
"latitude" : "22.963297",
"longitude" : "76.04685"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandvi",
"value" : "Mandvi",
"geoCode" : {
"latitude" : "22.83282",
"longitude" : "69.35237"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandya",
"value" : "Mandya",
"geoCode" : {
"latitude" : "12.5223",
"longitude" : "76.89746"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Manesar",
"value" : "Manesar",
"geoCode" : {
"latitude" : "28.357723",
"longitude" : "76.917076"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mangalagiri",
"value" : "Mangalagiri",
"geoCode" : {
"latitude" : "16.43083",
"longitude" : "80.56815"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mangalam",
"value" : "Mangalam",
"geoCode" : {
"latitude" : "22.735462",
"longitude" : "75.90736"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mangaldai",
"value" : "Mangaldai",
"geoCode" : {
"latitude" : "26.41",
"longitude" : "91.97"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mangalore",
"value" : "Mangalore",
"geoCode" : {
"latitude" : "12.91723",
"longitude" : "74.85603"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mangan",
"value" : "Mangan",
"geoCode" : {
"latitude" : "27.50965",
"longitude" : "88.52206"
},
"stateValue" : "Sikkim",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Manila",
"value" : "Manila",
"geoCode" : {
"latitude" : "14.602187",
"longitude" : "120.984215"
},
"stateValue" : "Metro Manila",
"countryValue" : "Philippines"
}, {
"label" : "Manimajra",
"value" : "Manimajra",
"geoCode" : {
"latitude" : "30.714373",
"longitude" : "76.84053"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Manipal",
"value" : "Manipal",
"geoCode" : {
"latitude" : "13.33928",
"longitude" : "74.79084"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Manjeri",
"value" : "Manjeri",
"geoCode" : {
"latitude" : "11.13314",
"longitude" : "76.13526"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mannargudi",
"value" : "Mannargudi",
"geoCode" : {
"latitude" : "10.66",
"longitude" : "79.44"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mannarkkad",
"value" : "Mannarkkad",
"geoCode" : {
"latitude" : "10.993237",
"longitude" : "76.461"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mansa",
"value" : "Mansa",
"geoCode" : {
"latitude" : "29.69",
"longitude" : "75.23"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mansar",
"value" : "Mansar",
"geoCode" : {
"latitude" : "32.69",
"longitude" : "75.14"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mapuca",
"value" : "Mapuca",
"geoCode" : {
"latitude" : "15.58885",
"longitude" : "73.81455"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mapusa",
"value" : "Mapusa",
"geoCode" : {
"latitude" : "15.606042",
"longitude" : "73.824295"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Maradu",
"value" : "Maradu",
"geoCode" : {
"latitude" : "9.92827",
"longitude" : "76.31452"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Maraimalai Nagar",
"value" : "Maraimalai Nagar",
"geoCode" : {
"latitude" : "12.79",
"longitude" : "80.02"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Marakkanam",
"value" : "Marakkanam",
"geoCode" : {
"latitude" : "12.18",
"longitude" : "79.94"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Marayur",
"value" : "Marayur",
"geoCode" : {
"latitude" : "10.14",
"longitude" : "77.16"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Margao",
"value" : "Margao",
"geoCode" : {
"latitude" : "15.271918",
"longitude" : "73.959404"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Markapur",
"value" : "Markapur",
"geoCode" : {
"latitude" : "16.19",
"longitude" : "81.14"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Martínez",
"value" : "Martínez",
"geoCode" : {
"latitude" : "-34.508602",
"longitude" : "-58.52317"
},
"stateValue" : "Provincia De Buenos Aires",
"countryValue" : "Argentina"
}, {
"label" : "Matheran",
"value" : "Matheran",
"geoCode" : {
"latitude" : "18.98281",
"longitude" : "73.2652"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mathura",
"value" : "Mathura",
"geoCode" : {
"latitude" : "27.63333",
"longitude" : "77.58333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mau",
"value" : "Mau",
"geoCode" : {
"latitude" : "25.925552",
"longitude" : "83.566055"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mavelikara",
"value" : "Mavelikara",
"geoCode" : {
"latitude" : "9.22",
"longitude" : "76.51"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mayiladuthurai",
"value" : "Mayiladuthurai",
"geoCode" : {
"latitude" : "11.10354",
"longitude" : "79.655"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mayurbhanj",
"value" : "Mayurbhanj",
"geoCode" : {
"latitude" : "21.75",
"longitude" : "86.5"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Medak",
"value" : "Medak",
"geoCode" : {
"latitude" : "17.75",
"longitude" : "78.25"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Medchal",
"value" : "Medchal",
"geoCode" : {
"latitude" : "17.62972",
"longitude" : "78.48139"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Medchal Malkajgiri",
"value" : "Medchal Malkajgiri",
"geoCode" : {
"latitude" : "17.50417",
"longitude" : "78.44393"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Medinipur",
"value" : "Medinipur",
"geoCode" : {
"latitude" : "22.433332",
"longitude" : "87.333336"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Meerut",
"value" : "Meerut",
"geoCode" : {
"latitude" : "28.91667",
"longitude" : "77.68333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mehekar",
"value" : "Mehekar",
"geoCode" : {
"latitude" : "20.56",
"longitude" : "76.18"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mehkar",
"value" : "Mehkar",
"geoCode" : {
"latitude" : "20.15",
"longitude" : "76.56"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mehsana",
"value" : "Mehsana",
"geoCode" : {
"latitude" : "23.6",
"longitude" : "72.4"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Melmaruvathur",
"value" : "Melmaruvathur",
"geoCode" : {
"latitude" : "12.83461",
"longitude" : "80.0498"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Melukote",
"value" : "Melukote",
"geoCode" : {
"latitude" : "12.66",
"longitude" : "76.65"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Merta",
"value" : "Merta",
"geoCode" : {
"latitude" : "26.64859",
"longitude" : "74.03414"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mettuppalaiyam",
"value" : "Mettuppalaiyam",
"geoCode" : {
"latitude" : "11.29733",
"longitude" : "76.9395"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mettur",
"value" : "Mettur",
"geoCode" : {
"latitude" : "11.803759",
"longitude" : "77.80742"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Midnapore",
"value" : "Midnapore",
"geoCode" : {
"latitude" : "21.61",
"longitude" : "87.49"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Millbrae",
"value" : "Millbrae",
"geoCode" : {
"latitude" : "37.614304",
"longitude" : "-122.388275"
},
"stateValue" : "California",
"countryValue" : "United States"
}, {
"label" : "Minjur",
"value" : "Minjur",
"geoCode" : {
"latitude" : "13.278929",
"longitude" : "80.26231"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mira Bhayandar",
"value" : "Mira Bhayandar",
"geoCode" : {
"latitude" : "19.203081",
"longitude" : "72.96484"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Miraj",
"value" : "Miraj",
"geoCode" : {
"latitude" : "16.69",
"longitude" : "74.6"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mirik",
"value" : "Mirik",
"geoCode" : {
"latitude" : "26.84",
"longitude" : "88.22"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mirzapur",
"value" : "Mirzapur",
"geoCode" : {
"latitude" : "25.1449",
"longitude" : "82.56534"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Modasa",
"value" : "Modasa",
"geoCode" : {
"latitude" : "23.02251",
"longitude" : "72.57136"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Moga",
"value" : "Moga",
"geoCode" : {
"latitude" : "30.80376",
"longitude" : "75.14938"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mohali",
"value" : "Mohali",
"geoCode" : {
"latitude" : "30.67995",
"longitude" : "76.72211"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mohol",
"value" : "Mohol",
"geoCode" : {
"latitude" : "17.809198",
"longitude" : "75.638245"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mon",
"value" : "Mon",
"geoCode" : {
"latitude" : "26.75",
"longitude" : "94.83333"
},
"stateValue" : "Nagaland",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Moradabad",
"value" : "Moradabad",
"geoCode" : {
"latitude" : "28.8525",
"longitude" : "78.79703"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Morbi",
"value" : "Morbi",
"geoCode" : {
"latitude" : "22.81731",
"longitude" : "70.8377"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Morena",
"value" : "Morena",
"geoCode" : {
"latitude" : "26.16667",
"longitude" : "77.5"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Morjim",
"value" : "Morjim",
"geoCode" : {
"latitude" : "15.61",
"longitude" : "73.73"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mormugao",
"value" : "Mormugao",
"geoCode" : {
"latitude" : "15.38914",
"longitude" : "73.81491"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mothihari",
"value" : "Mothihari",
"geoCode" : {
"latitude" : "26.64862",
"longitude" : "84.91656"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mughal Sarai",
"value" : "Mughal Sarai",
"geoCode" : {
"latitude" : "25.28307",
"longitude" : "83.11968"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mughalsarai",
"value" : "Mughalsarai",
"geoCode" : {
"latitude" : "25.283775",
"longitude" : "83.11557"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mukerian",
"value" : "Mukerian",
"geoCode" : {
"latitude" : "31.53",
"longitude" : "75.63"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mukteshwar",
"value" : "Mukteshwar",
"geoCode" : {
"latitude" : "29.21",
"longitude" : "79.47"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Muktsar",
"value" : "Muktsar",
"geoCode" : {
"latitude" : "30.47",
"longitude" : "74.53"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mulbagal",
"value" : "Mulbagal",
"geoCode" : {
"latitude" : "13.16",
"longitude" : "78.39"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mundra",
"value" : "Mundra",
"geoCode" : {
"latitude" : "21.25",
"longitude" : "73.3"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Munger",
"value" : "Munger",
"geoCode" : {
"latitude" : "25.36099",
"longitude" : "86.46515"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Munnar",
"value" : "Munnar",
"geoCode" : {
"latitude" : "10.08818",
"longitude" : "77.06239"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Muradnagar",
"value" : "Muradnagar",
"geoCode" : {
"latitude" : "28.78069",
"longitude" : "77.49865"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Murbad",
"value" : "Murbad",
"geoCode" : {
"latitude" : "19.258135",
"longitude" : "73.381645"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Murshidabad",
"value" : "Murshidabad",
"geoCode" : {
"latitude" : "24.18",
"longitude" : "88.27"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Murwara",
"value" : "Murwara",
"geoCode" : {
"latitude" : "23.83776",
"longitude" : "80.39405"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mussoorie",
"value" : "Mussoorie",
"geoCode" : {
"latitude" : "30.45498",
"longitude" : "78.07068"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Muvattupuzha",
"value" : "Muvattupuzha",
"geoCode" : {
"latitude" : "9.97985",
"longitude" : "76.57381"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Muzaffarnagar",
"value" : "Muzaffarnagar",
"geoCode" : {
"latitude" : "29.45",
"longitude" : "77.58333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Muzaffarpur",
"value" : "Muzaffarpur",
"geoCode" : {
"latitude" : "26.16667",
"longitude" : "85.41667"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mysore",
"value" : "Mysore",
"geoCode" : {
"latitude" : "12.23",
"longitude" : "76.42"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mysuru",
"value" : "Mysuru",
"geoCode" : {
"latitude" : "12.295811",
"longitude" : "76.63938"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nabadwip",
"value" : "Nabadwip",
"geoCode" : {
"latitude" : "23.40722",
"longitude" : "88.37778"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nabarangpur",
"value" : "Nabarangpur",
"geoCode" : {
"latitude" : "19.2333",
"longitude" : "82.55"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nabha",
"value" : "Nabha",
"geoCode" : {
"latitude" : "30.37577",
"longitude" : "76.15292"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nadaun",
"value" : "Nadaun",
"geoCode" : {
"latitude" : "31.68595",
"longitude" : "76.52089"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nadiad",
"value" : "Nadiad",
"geoCode" : {
"latitude" : "22.69385",
"longitude" : "72.86157"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Naduvattam",
"value" : "Naduvattam",
"geoCode" : {
"latitude" : "11.54",
"longitude" : "76.51"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nagaon",
"value" : "Nagaon",
"geoCode" : {
"latitude" : "26.35037",
"longitude" : "92.69225"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nagapattinam",
"value" : "Nagapattinam",
"geoCode" : {
"latitude" : "10.76441",
"longitude" : "79.84219"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nagar",
"value" : "Nagar",
"geoCode" : {
"latitude" : "32.04",
"longitude" : "77.12"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nagarkurnool",
"value" : "Nagarkurnool",
"geoCode" : {
"latitude" : "16.485487",
"longitude" : "78.31726"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nagaur",
"value" : "Nagaur",
"geoCode" : {
"latitude" : "27.20201",
"longitude" : "73.73394"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nagercoil",
"value" : "Nagercoil",
"geoCode" : {
"latitude" : "8.17899",
"longitude" : "77.43227"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nagpur",
"value" : "Nagpur",
"geoCode" : {
"latitude" : "21.14631",
"longitude" : "79.08491"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nahan",
"value" : "Nahan",
"geoCode" : {
"latitude" : "30.56029",
"longitude" : "77.29426"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Naharlagun",
"value" : "Naharlagun",
"geoCode" : {
"latitude" : "27.10467",
"longitude" : "93.69518"
},
"stateValue" : "Arunachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Naini Tal",
"value" : "Naini Tal",
"geoCode" : {
"latitude" : "29.39743",
"longitude" : "79.44686"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nainital",
"value" : "Nainital",
"geoCode" : {
"latitude" : "29.19",
"longitude" : "79.5"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nakodar",
"value" : "Nakodar",
"geoCode" : {
"latitude" : "31.12",
"longitude" : "75.47"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nala Sopara",
"value" : "Nala Sopara",
"geoCode" : {
"latitude" : "19.39",
"longitude" : "72.77"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nalagarh",
"value" : "Nalagarh",
"geoCode" : {
"latitude" : "31.04168",
"longitude" : "76.72285"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nalanda",
"value" : "Nalanda",
"geoCode" : {
"latitude" : "25.25",
"longitude" : "85.58333"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nalbari",
"value" : "Nalbari",
"geoCode" : {
"latitude" : "26.5",
"longitude" : "91.4"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nalgonda",
"value" : "Nalgonda",
"geoCode" : {
"latitude" : "17.16667",
"longitude" : "79.5"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Namakkal",
"value" : "Namakkal",
"geoCode" : {
"latitude" : "11.2367",
"longitude" : "78.1689"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Namchi",
"value" : "Namchi",
"geoCode" : {
"latitude" : "27.1",
"longitude" : "88.32"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nandambakkam",
"value" : "Nandambakkam",
"geoCode" : {
"latitude" : "13.014799",
"longitude" : "80.19092"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nanded",
"value" : "Nanded",
"geoCode" : {
"latitude" : "18.91667",
"longitude" : "77.5"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nandurbar",
"value" : "Nandurbar",
"geoCode" : {
"latitude" : "21.36766",
"longitude" : "74.24359"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nandyal",
"value" : "Nandyal",
"geoCode" : {
"latitude" : "15.483729",
"longitude" : "78.48327"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nangal",
"value" : "Nangal",
"geoCode" : {
"latitude" : "31.388767",
"longitude" : "76.38183"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nanguneri",
"value" : "Nanguneri",
"geoCode" : {
"latitude" : "8.48",
"longitude" : "77.65"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nanjangud",
"value" : "Nanjangud",
"geoCode" : {
"latitude" : "12.11",
"longitude" : "76.69"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narasaraopet",
"value" : "Narasaraopet",
"geoCode" : {
"latitude" : "16.23488",
"longitude" : "80.04927"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narayangaon",
"value" : "Narayangaon",
"geoCode" : {
"latitude" : "19.106308",
"longitude" : "73.97428"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narayangarh",
"value" : "Narayangarh",
"geoCode" : {
"latitude" : "30.47848",
"longitude" : "77.131256"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narendranagar",
"value" : "Narendranagar",
"geoCode" : {
"latitude" : "30.13",
"longitude" : "78.3"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narmada",
"value" : "Narmada",
"geoCode" : {
"latitude" : "21.67",
"longitude" : "73.79"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narnaul",
"value" : "Narnaul",
"geoCode" : {
"latitude" : "28.04444",
"longitude" : "76.10833"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narsimhapur",
"value" : "Narsimhapur",
"geoCode" : {
"latitude" : "22.91667",
"longitude" : "79.16667"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narsinghgarh",
"value" : "Narsinghgarh",
"geoCode" : {
"latitude" : "23.70758",
"longitude" : "77.09319"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narsipatnam",
"value" : "Narsipatnam",
"geoCode" : {
"latitude" : "17.66709",
"longitude" : "82.61245"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narwana",
"value" : "Narwana",
"geoCode" : {
"latitude" : "29.59903",
"longitude" : "76.11927"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narwar",
"value" : "Narwar",
"geoCode" : {
"latitude" : "25.6439",
"longitude" : "77.9129"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nashik",
"value" : "Nashik",
"geoCode" : {
"latitude" : "19.99727",
"longitude" : "73.79096"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nathdwara",
"value" : "Nathdwara",
"geoCode" : {
"latitude" : "24.93805",
"longitude" : "73.82392"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Navalur",
"value" : "Navalur",
"geoCode" : {
"latitude" : "12.849959",
"longitude" : "80.230644"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Navi Mumbai",
"value" : "Navi Mumbai",
"geoCode" : {
"latitude" : "19.03681",
"longitude" : "73.01582"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Navsari",
"value" : "Navsari",
"geoCode" : {
"latitude" : "20.95",
"longitude" : "72.92"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nawabganj (Barabanki)",
"value" : "Nawabganj (Barabanki)",
"geoCode" : {
"latitude" : "26.60458",
"longitude" : "81.36327"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nawada",
"value" : "Nawada",
"geoCode" : {
"latitude" : "24.75",
"longitude" : "85.5"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nawalgarh",
"value" : "Nawalgarh",
"geoCode" : {
"latitude" : "27.85",
"longitude" : "75.25"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nawanshahr",
"value" : "Nawanshahr",
"geoCode" : {
"latitude" : "31.02",
"longitude" : "76.5"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nayagarh",
"value" : "Nayagarh",
"geoCode" : {
"latitude" : "20.12882",
"longitude" : "85.09626"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nazira",
"value" : "Nazira",
"geoCode" : {
"latitude" : "27.0",
"longitude" : "95.05"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nedumbassery",
"value" : "Nedumbassery",
"geoCode" : {
"latitude" : "10.15828",
"longitude" : "76.39267"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Neemuch",
"value" : "Neemuch",
"geoCode" : {
"latitude" : "24.47",
"longitude" : "74.87"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nelamangala",
"value" : "Nelamangala",
"geoCode" : {
"latitude" : "13.0",
"longitude" : "77.41"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nellore",
"value" : "Nellore",
"geoCode" : {
"latitude" : "14.08333",
"longitude" : "79.58333"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Neral",
"value" : "Neral",
"geoCode" : {
"latitude" : "18.99",
"longitude" : "73.33"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "New Delhi",
"value" : "New Delhi",
"geoCode" : {
"latitude" : "28.63576",
"longitude" : "77.22445"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "New York",
"value" : "New York",
"geoCode" : {
"latitude" : "40.712776",
"longitude" : "-74.005974"
},
"stateValue" : "New York",
"countryValue" : "United States"
}, {
"label" : "Neyveli",
"value" : "Neyveli",
"geoCode" : {
"latitude" : "11.5389805",
"longitude" : "79.479385"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Neyyattinkara",
"value" : "Neyyattinkara",
"geoCode" : {
"latitude" : "8.4",
"longitude" : "77.08"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nighoj",
"value" : "Nighoj",
"geoCode" : {
"latitude" : "18.93",
"longitude" : "74.26"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nilambur",
"value" : "Nilambur",
"geoCode" : {
"latitude" : "11.273716",
"longitude" : "76.220726"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nirmal",
"value" : "Nirmal",
"geoCode" : {
"latitude" : "19.09685",
"longitude" : "78.34407"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nisku",
"value" : "Nisku",
"geoCode" : {
"latitude" : "53.306244",
"longitude" : "-113.58279"
},
"stateValue" : "Alberta",
"countryValue" : "Canada"
}, {
"label" : "Nizamabad",
"value" : "Nizamabad",
"geoCode" : {
"latitude" : "18.75",
"longitude" : "78.25"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Noida",
"value" : "Noida",
"geoCode" : {
"latitude" : "28.58",
"longitude" : "77.33"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nongpoh",
"value" : "Nongpoh",
"geoCode" : {
"latitude" : "25.65",
"longitude" : "91.89"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nongstoin",
"value" : "Nongstoin",
"geoCode" : {
"latitude" : "25.5",
"longitude" : "91.26"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "North 24 Parganas District",
"value" : "North 24 Parganas District",
"geoCode" : {
"latitude" : "22.13",
"longitude" : "88.5"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "North Delhi",
"value" : "North Delhi",
"geoCode" : {
"latitude" : "28.6692",
"longitude" : "77.22273"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "North Dumdum",
"value" : "North Dumdum",
"geoCode" : {
"latitude" : "22.639313",
"longitude" : "88.43106"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "North East Delhi",
"value" : "North East Delhi",
"geoCode" : {
"latitude" : "28.6869",
"longitude" : "77.30195"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "North Goa",
"value" : "North Goa",
"geoCode" : {
"latitude" : "15.54608",
"longitude" : "73.76663"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "North West Delhi",
"value" : "North West Delhi",
"geoCode" : {
"latitude" : "28.70113",
"longitude" : "77.10154"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nuapada",
"value" : "Nuapada",
"geoCode" : {
"latitude" : "20.286652",
"longitude" : "82.76234"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nuh",
"value" : "Nuh",
"geoCode" : {
"latitude" : "28.1",
"longitude" : "77.0"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nurpur",
"value" : "Nurpur",
"geoCode" : {
"latitude" : "32.3",
"longitude" : "75.88"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nuzividu",
"value" : "Nuzividu",
"geoCode" : {
"latitude" : "16.78272",
"longitude" : "80.84801"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nuzvid",
"value" : "Nuzvid",
"geoCode" : {
"latitude" : "16.783632",
"longitude" : "80.84819"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Okha",
"value" : "Okha",
"geoCode" : {
"latitude" : "22.46756",
"longitude" : "69.07002"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Omalur",
"value" : "Omalur",
"geoCode" : {
"latitude" : "11.74099",
"longitude" : "78.04559"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ongole",
"value" : "Ongole",
"geoCode" : {
"latitude" : "15.50357",
"longitude" : "80.04454"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ooty",
"value" : "Ooty",
"geoCode" : {
"latitude" : "11.4134",
"longitude" : "76.69521"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Orai",
"value" : "Orai",
"geoCode" : {
"latitude" : "25.98",
"longitude" : "79.45"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Orchha",
"value" : "Orchha",
"geoCode" : {
"latitude" : "25.35192",
"longitude" : "78.64033"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Osmanabad",
"value" : "Osmanabad",
"geoCode" : {
"latitude" : "18.25",
"longitude" : "76.16667"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ottapalam",
"value" : "Ottapalam",
"geoCode" : {
"latitude" : "10.772779",
"longitude" : "76.37478"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ottappalam",
"value" : "Ottappalam",
"geoCode" : {
"latitude" : "10.767594",
"longitude" : "76.38287"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ozar",
"value" : "Ozar",
"geoCode" : {
"latitude" : "19.18",
"longitude" : "73.95"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pachmarhi",
"value" : "Pachmarhi",
"geoCode" : {
"latitude" : "22.7519",
"longitude" : "77.72887"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Padampur",
"value" : "Padampur",
"geoCode" : {
"latitude" : "21.0",
"longitude" : "83.06"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Padra",
"value" : "Padra",
"geoCode" : {
"latitude" : "22.2398",
"longitude" : "73.08451"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Padrauna",
"value" : "Padrauna",
"geoCode" : {
"latitude" : "26.90575",
"longitude" : "83.97729"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pakur",
"value" : "Pakur",
"geoCode" : {
"latitude" : "24.63",
"longitude" : "87.85"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pala",
"value" : "Pala",
"geoCode" : {
"latitude" : "9.7",
"longitude" : "76.68"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palakkad",
"value" : "Palakkad",
"geoCode" : {
"latitude" : "10.775",
"longitude" : "76.651"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palakollu",
"value" : "Palakollu",
"geoCode" : {
"latitude" : "16.5167",
"longitude" : "81.73"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palampur",
"value" : "Palampur",
"geoCode" : {
"latitude" : "32.11453",
"longitude" : "76.55681"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palani",
"value" : "Palani",
"geoCode" : {
"latitude" : "10.449433",
"longitude" : "77.51792"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palanpur",
"value" : "Palanpur",
"geoCode" : {
"latitude" : "24.17128",
"longitude" : "72.43827"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palghar",
"value" : "Palghar",
"geoCode" : {
"latitude" : "18.98",
"longitude" : "73.22"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palghat",
"value" : "Palghat",
"geoCode" : {
"latitude" : "10.77319",
"longitude" : "76.65366"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pali",
"value" : "Pali",
"geoCode" : {
"latitude" : "23.36453",
"longitude" : "81.04374"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palia Kalan",
"value" : "Palia Kalan",
"geoCode" : {
"latitude" : "28.42",
"longitude" : "80.57"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palitana",
"value" : "Palitana",
"geoCode" : {
"latitude" : "21.49",
"longitude" : "71.77"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palladam",
"value" : "Palladam",
"geoCode" : {
"latitude" : "10.99753",
"longitude" : "77.27548"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palwal",
"value" : "Palwal",
"geoCode" : {
"latitude" : "28.14469",
"longitude" : "77.32546"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panaji",
"value" : "Panaji",
"geoCode" : {
"latitude" : "15.49574",
"longitude" : "73.82624"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panamaram",
"value" : "Panamaram",
"geoCode" : {
"latitude" : "11.74",
"longitude" : "76.07"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panchgani",
"value" : "Panchgani",
"geoCode" : {
"latitude" : "17.9",
"longitude" : "73.75"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panchkula",
"value" : "Panchkula",
"geoCode" : {
"latitude" : "30.72883",
"longitude" : "76.94716"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panchmahal District",
"value" : "Panchmahal District",
"geoCode" : {
"latitude" : "22.60743",
"longitude" : "73.46004"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pandharpur",
"value" : "Pandharpur",
"geoCode" : {
"latitude" : "17.67924",
"longitude" : "75.33098"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panhala",
"value" : "Panhala",
"geoCode" : {
"latitude" : "16.8",
"longitude" : "74.1"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panihati",
"value" : "Panihati",
"geoCode" : {
"latitude" : "22.69",
"longitude" : "88.37"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panipat",
"value" : "Panipat",
"geoCode" : {
"latitude" : "29.33259",
"longitude" : "76.92634"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panjim",
"value" : "Panjim",
"geoCode" : {
"latitude" : "15.49093",
"longitude" : "73.82785"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panna",
"value" : "Panna",
"geoCode" : {
"latitude" : "24.5",
"longitude" : "80.25"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panruti",
"value" : "Panruti",
"geoCode" : {
"latitude" : "11.76658",
"longitude" : "79.56291"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panvel",
"value" : "Panvel",
"geoCode" : {
"latitude" : "18.98878",
"longitude" : "73.11013"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Paonta Sahib",
"value" : "Paonta Sahib",
"geoCode" : {
"latitude" : "30.43666",
"longitude" : "77.62462"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Parbhani",
"value" : "Parbhani",
"geoCode" : {
"latitude" : "19.5",
"longitude" : "76.75"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Parel",
"value" : "Parel",
"geoCode" : {
"latitude" : "18.997658",
"longitude" : "72.83759"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Parli Vaijnath",
"value" : "Parli Vaijnath",
"geoCode" : {
"latitude" : "18.85057",
"longitude" : "76.53163"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Parwanoo",
"value" : "Parwanoo",
"geoCode" : {
"latitude" : "30.81",
"longitude" : "76.99"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pasighat",
"value" : "Pasighat",
"geoCode" : {
"latitude" : "38.47",
"longitude" : "121.36"
},
"stateValue" : "Arunachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Patan",
"value" : "Patan",
"geoCode" : {
"latitude" : "21.03333",
"longitude" : "81.53333"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pataudi",
"value" : "Pataudi",
"geoCode" : {
"latitude" : "28.26043",
"longitude" : "76.91602"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pathanamthitta",
"value" : "Pathanamthitta",
"geoCode" : {
"latitude" : "9.26667",
"longitude" : "76.78333"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pathankot",
"value" : "Pathankot",
"geoCode" : {
"latitude" : "32.27484",
"longitude" : "75.65287"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Patiala",
"value" : "Patiala",
"geoCode" : {
"latitude" : "30.33625",
"longitude" : "76.3922"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Patna",
"value" : "Patna",
"geoCode" : {
"latitude" : "25.41667",
"longitude" : "85.16667"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Patnitop",
"value" : "Patnitop",
"geoCode" : {
"latitude" : "32.92427",
"longitude" : "75.13851"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pattukkottai",
"value" : "Pattukkottai",
"geoCode" : {
"latitude" : "10.42358",
"longitude" : "79.31949"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pauri",
"value" : "Pauri",
"geoCode" : {
"latitude" : "29.8",
"longitude" : "78.74"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Payyannur",
"value" : "Payyannur",
"geoCode" : {
"latitude" : "12.110282",
"longitude" : "75.21947"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pehowa",
"value" : "Pehowa",
"geoCode" : {
"latitude" : "29.97897",
"longitude" : "76.58249"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pen",
"value" : "Pen",
"geoCode" : {
"latitude" : "18.73",
"longitude" : "73.08"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Perambalur",
"value" : "Perambalur",
"geoCode" : {
"latitude" : "11.2",
"longitude" : "78.88"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Perintalmanna",
"value" : "Perintalmanna",
"geoCode" : {
"latitude" : "10.97494",
"longitude" : "76.21596"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pernem",
"value" : "Pernem",
"geoCode" : {
"latitude" : "15.65",
"longitude" : "73.72"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Perumbavoor",
"value" : "Perumbavoor",
"geoCode" : {
"latitude" : "10.1",
"longitude" : "76.48"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Phagwara",
"value" : "Phagwara",
"geoCode" : {
"latitude" : "31.22452",
"longitude" : "75.77387"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Phalodi",
"value" : "Phalodi",
"geoCode" : {
"latitude" : "27.13102",
"longitude" : "72.36826"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Phaltan",
"value" : "Phaltan",
"geoCode" : {
"latitude" : "17.986254",
"longitude" : "74.436935"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Phek",
"value" : "Phek",
"geoCode" : {
"latitude" : "25.66667",
"longitude" : "94.5"
},
"stateValue" : "Nagaland",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Phillaur",
"value" : "Phillaur",
"geoCode" : {
"latitude" : "31.05",
"longitude" : "75.78"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Phulbani",
"value" : "Phulbani",
"geoCode" : {
"latitude" : "20.05",
"longitude" : "84.24"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Phulera",
"value" : "Phulera",
"geoCode" : {
"latitude" : "27.15",
"longitude" : "74.85"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pilani",
"value" : "Pilani",
"geoCode" : {
"latitude" : "28.36",
"longitude" : "75.58"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pilibhit",
"value" : "Pilibhit",
"geoCode" : {
"latitude" : "28.63124",
"longitude" : "79.80436"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pimpri",
"value" : "Pimpri",
"geoCode" : {
"latitude" : "18.600418",
"longitude" : "73.81765"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pimpri-Chinchwad",
"value" : "Pimpri-Chinchwad",
"geoCode" : {
"latitude" : "18.627777",
"longitude" : "73.81306"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pipalkoti",
"value" : "Pipalkoti",
"geoCode" : {
"latitude" : "30.43",
"longitude" : "79.42"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Piplod",
"value" : "Piplod",
"geoCode" : {
"latitude" : "22.81",
"longitude" : "73.91"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pitampura",
"value" : "Pitampura",
"geoCode" : {
"latitude" : "28.702991",
"longitude" : "77.13648"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pithampur",
"value" : "Pithampur",
"geoCode" : {
"latitude" : "22.59",
"longitude" : "75.69"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pithapuram",
"value" : "Pithapuram",
"geoCode" : {
"latitude" : "17.13",
"longitude" : "82.27"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pithoragarh",
"value" : "Pithoragarh",
"geoCode" : {
"latitude" : "30.0",
"longitude" : "80.25"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pittsburgh",
"value" : "Pittsburgh",
"geoCode" : {
"latitude" : "40.43931",
"longitude" : "-79.989555"
},
"stateValue" : "Pennsylvania",
"countryValue" : "United States"
}, {
"label" : "Pokaran",
"value" : "Pokaran",
"geoCode" : {
"latitude" : "26.92",
"longitude" : "71.91"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pollachi",
"value" : "Pollachi",
"geoCode" : {
"latitude" : "10.65825",
"longitude" : "77.0085"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ponda",
"value" : "Ponda",
"geoCode" : {
"latitude" : "15.40341",
"longitude" : "74.01519"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pondicherry",
"value" : "Pondicherry",
"geoCode" : {
"latitude" : "11.941591",
"longitude" : "79.80831"
},
"stateValue" : "Puducherry",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ponnampet",
"value" : "Ponnampet",
"geoCode" : {
"latitude" : "12.02",
"longitude" : "75.92"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ponnani",
"value" : "Ponnani",
"geoCode" : {
"latitude" : "10.71",
"longitude" : "75.95"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Porbandar",
"value" : "Porbandar",
"geoCode" : {
"latitude" : "21.64219",
"longitude" : "69.60929"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Port Blair",
"value" : "Port Blair",
"geoCode" : {
"latitude" : "11.66613",
"longitude" : "92.74635"
},
"stateValue" : "Andaman And Nicobar Islands",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Porvorim",
"value" : "Porvorim",
"geoCode" : {
"latitude" : "15.51",
"longitude" : "73.82"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Prakasam",
"value" : "Prakasam",
"geoCode" : {
"latitude" : "15.5",
"longitude" : "79.5"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Prantij",
"value" : "Prantij",
"geoCode" : {
"latitude" : "23.43",
"longitude" : "72.85"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pratapgarh",
"value" : "Pratapgarh",
"geoCode" : {
"latitude" : "24.03",
"longitude" : "74.78"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Prayagraj",
"value" : "Prayagraj",
"geoCode" : {
"latitude" : "25.437387",
"longitude" : "81.833275"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Proddatur",
"value" : "Proddatur",
"geoCode" : {
"latitude" : "14.7502",
"longitude" : "78.54813"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Puducherry",
"value" : "Puducherry",
"geoCode" : {
"latitude" : "11.93381",
"longitude" : "79.82979"
},
"stateValue" : "Puducherry",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pudukkottai",
"value" : "Pudukkottai",
"geoCode" : {
"latitude" : "10.35",
"longitude" : "78.9"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pulwama",
"value" : "Pulwama",
"geoCode" : {
"latitude" : "33.71",
"longitude" : "74.83"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Punalur",
"value" : "Punalur",
"geoCode" : {
"latitude" : "9.01",
"longitude" : "76.91"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Punch",
"value" : "Punch",
"geoCode" : {
"latitude" : "33.70178",
"longitude" : "74.19916"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pune",
"value" : "Pune",
"geoCode" : {
"latitude" : "18.51957",
"longitude" : "73.85535"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Punganuru",
"value" : "Punganuru",
"geoCode" : {
"latitude" : "13.367614",
"longitude" : "78.57107"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Puranpur",
"value" : "Puranpur",
"geoCode" : {
"latitude" : "28.51061",
"longitude" : "80.14529"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Puri",
"value" : "Puri",
"geoCode" : {
"latitude" : "19.9",
"longitude" : "85.6"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Purnea",
"value" : "Purnea",
"geoCode" : {
"latitude" : "25.781809",
"longitude" : "87.48887"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Purnia",
"value" : "Purnia",
"geoCode" : {
"latitude" : "25.81614",
"longitude" : "87.40708"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Purulia",
"value" : "Purulia",
"geoCode" : {
"latitude" : "23.333334",
"longitude" : "86.36667"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pushkar",
"value" : "Pushkar",
"geoCode" : {
"latitude" : "26.49022",
"longitude" : "74.55211"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Puttaparthi",
"value" : "Puttaparthi",
"geoCode" : {
"latitude" : "14.1",
"longitude" : "77.77"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Puttur",
"value" : "Puttur",
"geoCode" : {
"latitude" : "13.44189",
"longitude" : "79.55314"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Qadian",
"value" : "Qadian",
"geoCode" : {
"latitude" : "31.81",
"longitude" : "75.37"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Quepem",
"value" : "Quepem",
"geoCode" : {
"latitude" : "15.21",
"longitude" : "74.07"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Québec City",
"value" : "Québec City",
"geoCode" : {
"latitude" : "46.81308",
"longitude" : "-71.20746"
},
"stateValue" : "Quebec",
"countryValue" : "Canada"
}, {
"label" : "Raebareli",
"value" : "Raebareli",
"geoCode" : {
"latitude" : "26.2309",
"longitude" : "81.23315"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rahuri",
"value" : "Rahuri",
"geoCode" : {
"latitude" : "19.395098",
"longitude" : "74.652084"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raia",
"value" : "Raia",
"geoCode" : {
"latitude" : "15.31",
"longitude" : "73.98"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raichur",
"value" : "Raichur",
"geoCode" : {
"latitude" : "16.16",
"longitude" : "76.91"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raigad",
"value" : "Raigad",
"geoCode" : {
"latitude" : "21.189276",
"longitude" : "81.27958"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raiganj",
"value" : "Raiganj",
"geoCode" : {
"latitude" : "25.616667",
"longitude" : "88.11667"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raigarh",
"value" : "Raigarh",
"geoCode" : {
"latitude" : "22.08582",
"longitude" : "83.30603"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raipur",
"value" : "Raipur",
"geoCode" : {
"latitude" : "21.25621",
"longitude" : "81.69022"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raisen",
"value" : "Raisen",
"geoCode" : {
"latitude" : "23.25",
"longitude" : "78.08333"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raj Nandgaon",
"value" : "Raj Nandgaon",
"geoCode" : {
"latitude" : "21.16667",
"longitude" : "81.0"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajahmundry",
"value" : "Rajahmundry",
"geoCode" : {
"latitude" : "17.00517",
"longitude" : "81.77784"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajapalaiyam",
"value" : "Rajapalaiyam",
"geoCode" : {
"latitude" : "9.44967",
"longitude" : "77.5545"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajapalayam",
"value" : "Rajapalayam",
"geoCode" : {
"latitude" : "9.44",
"longitude" : "77.55"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajauri",
"value" : "Rajauri",
"geoCode" : {
"latitude" : "33.27",
"longitude" : "74.29"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajgarh",
"value" : "Rajgarh",
"geoCode" : {
"latitude" : "30.85142",
"longitude" : "77.30066"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajgir",
"value" : "Rajgir",
"geoCode" : {
"latitude" : "24.98",
"longitude" : "85.43"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajgurunagar",
"value" : "Rajgurunagar",
"geoCode" : {
"latitude" : "18.85",
"longitude" : "73.88"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajkot",
"value" : "Rajkot",
"geoCode" : {
"latitude" : "22.33333",
"longitude" : "70.83333"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajmahal",
"value" : "Rajmahal",
"geoCode" : {
"latitude" : "25.05",
"longitude" : "87.84"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajpipla",
"value" : "Rajpipla",
"geoCode" : {
"latitude" : "21.31",
"longitude" : "72.72"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajpur",
"value" : "Rajpur",
"geoCode" : {
"latitude" : "21.94015",
"longitude" : "75.13557"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajpura",
"value" : "Rajpura",
"geoCode" : {
"latitude" : "30.47856",
"longitude" : "76.59284"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajsamand",
"value" : "Rajsamand",
"geoCode" : {
"latitude" : "24.77",
"longitude" : "73.74"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajula",
"value" : "Rajula",
"geoCode" : {
"latitude" : "21.03854",
"longitude" : "71.44345"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ramagundam",
"value" : "Ramagundam",
"geoCode" : {
"latitude" : "18.755",
"longitude" : "79.474"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ramanagara",
"value" : "Ramanagara",
"geoCode" : {
"latitude" : "12.65",
"longitude" : "77.35"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ramanathapuram",
"value" : "Ramanathapuram",
"geoCode" : {
"latitude" : "9.37158",
"longitude" : "78.83077"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rambha",
"value" : "Rambha",
"geoCode" : {
"latitude" : "19.51",
"longitude" : "85.09"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rameswaram",
"value" : "Rameswaram",
"geoCode" : {
"latitude" : "9.08",
"longitude" : "79.56"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ramgarh",
"value" : "Ramgarh",
"geoCode" : {
"latitude" : "23.62",
"longitude" : "85.51"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ramnagar",
"value" : "Ramnagar",
"geoCode" : {
"latitude" : "27.16371",
"longitude" : "84.32342"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rampur",
"value" : "Rampur",
"geoCode" : {
"latitude" : "31.44943",
"longitude" : "77.63087"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rampur Hat",
"value" : "Rampur Hat",
"geoCode" : {
"latitude" : "24.17737",
"longitude" : "87.78275"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ramtek",
"value" : "Ramtek",
"geoCode" : {
"latitude" : "21.37",
"longitude" : "79.39"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ranaghat",
"value" : "Ranaghat",
"geoCode" : {
"latitude" : "23.18",
"longitude" : "88.58"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ranchi",
"value" : "Ranchi",
"geoCode" : {
"latitude" : "23.34316",
"longitude" : "85.3094"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ranebennuru",
"value" : "Ranebennuru",
"geoCode" : {
"latitude" : "14.63",
"longitude" : "75.68"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rangareddi",
"value" : "Rangareddi",
"geoCode" : {
"latitude" : "17.4947",
"longitude" : "78.39857"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raniganj",
"value" : "Raniganj",
"geoCode" : {
"latitude" : "25.64098",
"longitude" : "88.31314"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ranikhet",
"value" : "Ranikhet",
"geoCode" : {
"latitude" : "29.48",
"longitude" : "79.46"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ranipet",
"value" : "Ranipet",
"geoCode" : {
"latitude" : "12.93356",
"longitude" : "79.33038"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ras Al Khaimah",
"value" : "Ras Al Khaimah",
"geoCode" : {
"latitude" : "25.4611",
"longitude" : "56.04058"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Rasipuram",
"value" : "Rasipuram",
"geoCode" : {
"latitude" : "11.46009",
"longitude" : "78.18635"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ratangarh",
"value" : "Ratangarh",
"geoCode" : {
"latitude" : "28.05",
"longitude" : "74.61"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ratia",
"value" : "Ratia",
"geoCode" : {
"latitude" : "29.684353",
"longitude" : "75.57397"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ratlam",
"value" : "Ratlam",
"geoCode" : {
"latitude" : "23.33033",
"longitude" : "75.04032"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ratnagiri",
"value" : "Ratnagiri",
"geoCode" : {
"latitude" : "17.0",
"longitude" : "73.5"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raurkela",
"value" : "Raurkela",
"geoCode" : {
"latitude" : "22.22496",
"longitude" : "84.86414"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rawatbhata",
"value" : "Rawatbhata",
"geoCode" : {
"latitude" : "24.91",
"longitude" : "75.58"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raxaul",
"value" : "Raxaul",
"geoCode" : {
"latitude" : "26.97808",
"longitude" : "84.85044"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rayagada",
"value" : "Rayagada",
"geoCode" : {
"latitude" : "19.16",
"longitude" : "83.4"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Renukoot",
"value" : "Renukoot",
"geoCode" : {
"latitude" : "24.23",
"longitude" : "83.05"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rewa",
"value" : "Rewa",
"geoCode" : {
"latitude" : "24.53256",
"longitude" : "81.29234"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rewari",
"value" : "Rewari",
"geoCode" : {
"latitude" : "28.199",
"longitude" : "76.6183"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ri-Bhoi",
"value" : "Ri-Bhoi",
"geoCode" : {
"latitude" : "25.88997",
"longitude" : "91.82707"
},
"stateValue" : "Meghalaya",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rishikesh",
"value" : "Rishikesh",
"geoCode" : {
"latitude" : "30.10778",
"longitude" : "78.29255"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Riyadh",
"value" : "Riyadh",
"geoCode" : {
"latitude" : "24.7136",
"longitude" : "46.6753"
},
"stateValue" : "Riyadh Province",
"countryValue" : "Saudi Arabia",
"countryCode" : "SA"
}, {
"label" : "Roha",
"value" : "Roha",
"geoCode" : {
"latitude" : "18.43",
"longitude" : "73.11"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rohini",
"value" : "Rohini",
"geoCode" : {
"latitude" : "28.738268",
"longitude" : "77.082214"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rohru",
"value" : "Rohru",
"geoCode" : {
"latitude" : "31.1",
"longitude" : "77.39"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rohtak",
"value" : "Rohtak",
"geoCode" : {
"latitude" : "28.83333",
"longitude" : "76.66667"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rohtas",
"value" : "Rohtas",
"geoCode" : {
"latitude" : "24.97941",
"longitude" : "84.02774"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rome",
"value" : "Rome",
"geoCode" : {
"latitude" : "41.875954",
"longitude" : "12.475694"
},
"stateValue" : "Lazio",
"countryValue" : "Italy"
}, {
"label" : "Romulus",
"value" : "Romulus",
"geoCode" : {
"latitude" : "42.2479",
"longitude" : "-83.35179"
},
"stateValue" : "Michigan",
"countryValue" : "United States"
}, {
"label" : "Roorkee",
"value" : "Roorkee",
"geoCode" : {
"latitude" : "29.7",
"longitude" : "77.85"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rourkela",
"value" : "Rourkela",
"geoCode" : {
"latitude" : "21.76",
"longitude" : "85.11"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rudraprayag",
"value" : "Rudraprayag",
"geoCode" : {
"latitude" : "25.2953",
"longitude" : "82.99857"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rudrapur",
"value" : "Rudrapur",
"geoCode" : {
"latitude" : "28.982435",
"longitude" : "79.39776"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rupnagar",
"value" : "Rupnagar",
"geoCode" : {
"latitude" : "31.04",
"longitude" : "76.52"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sabalgarh",
"value" : "Sabalgarh",
"geoCode" : {
"latitude" : "26.24",
"longitude" : "77.39"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sabarkantha",
"value" : "Sabarkantha",
"geoCode" : {
"latitude" : "23.60502",
"longitude" : "72.96198"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sadri",
"value" : "Sadri",
"geoCode" : {
"latitude" : "25.11",
"longitude" : "73.47"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sagar",
"value" : "Sagar",
"geoCode" : {
"latitude" : "14.16498",
"longitude" : "75.02901"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Saharanpur",
"value" : "Saharanpur",
"geoCode" : {
"latitude" : "29.9",
"longitude" : "77.68333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Saharsa",
"value" : "Saharsa",
"geoCode" : {
"latitude" : "25.87498",
"longitude" : "86.59611"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sahibabad",
"value" : "Sahibabad",
"geoCode" : {
"latitude" : "28.683332",
"longitude" : "77.4"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sahibganj",
"value" : "Sahibganj",
"geoCode" : {
"latitude" : "24.85",
"longitude" : "87.77"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sakleshpur",
"value" : "Sakleshpur",
"geoCode" : {
"latitude" : "12.66",
"longitude" : "75.68"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sakti",
"value" : "Sakti",
"geoCode" : {
"latitude" : "34.04",
"longitude" : "77.93"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Salem",
"value" : "Salem",
"geoCode" : {
"latitude" : "11.69",
"longitude" : "78.29"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Saligao",
"value" : "Saligao",
"geoCode" : {
"latitude" : "15.55359",
"longitude" : "73.79036"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Salon",
"value" : "Salon",
"geoCode" : {
"latitude" : "15.594748",
"longitude" : "73.812836"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Salzburg",
"value" : "Salzburg",
"geoCode" : {
"latitude" : "47.81036",
"longitude" : "13.050358"
},
"stateValue" : "Salzburg",
"countryValue" : "Austria"
}, {
"label" : "Samalkha",
"value" : "Samalkha",
"geoCode" : {
"latitude" : "29.23552",
"longitude" : "77.01273"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Samastipur",
"value" : "Samastipur",
"geoCode" : {
"latitude" : "25.75",
"longitude" : "85.91667"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sambalpur",
"value" : "Sambalpur",
"geoCode" : {
"latitude" : "21.4",
"longitude" : "83.88333"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sambhal",
"value" : "Sambhal",
"geoCode" : {
"latitude" : "28.58498",
"longitude" : "78.56959"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "San Francisco",
"value" : "San Francisco",
"geoCode" : {
"latitude" : "37.7749",
"longitude" : "-122.4194"
},
"stateValue" : "Ca",
"countryValue" : "Usa",
"countryCode" : "US"
}, {
"label" : "Sanand",
"value" : "Sanand",
"geoCode" : {
"latitude" : "22.83",
"longitude" : "72.07"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sanawad",
"value" : "Sanawad",
"geoCode" : {
"latitude" : "22.17",
"longitude" : "75.87"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sanchi",
"value" : "Sanchi",
"geoCode" : {
"latitude" : "23.47",
"longitude" : "77.63"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sancoale",
"value" : "Sancoale",
"geoCode" : {
"latitude" : "15.21",
"longitude" : "73.97"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sandila",
"value" : "Sandila",
"geoCode" : {
"latitude" : "27.07647",
"longitude" : "80.51791"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sangameshwar",
"value" : "Sangameshwar",
"geoCode" : {
"latitude" : "17.07",
"longitude" : "73.73"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sangamner",
"value" : "Sangamner",
"geoCode" : {
"latitude" : "19.572197",
"longitude" : "74.21031"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sangareddi",
"value" : "Sangareddi",
"geoCode" : {
"latitude" : "17.62477",
"longitude" : "78.08669"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sangli",
"value" : "Sangli",
"geoCode" : {
"latitude" : "17.11202",
"longitude" : "74.7699"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sangrur",
"value" : "Sangrur",
"geoCode" : {
"latitude" : "30.24506",
"longitude" : "75.84488"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sanguem",
"value" : "Sanguem",
"geoCode" : {
"latitude" : "15.09",
"longitude" : "74.21"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sankarankoil",
"value" : "Sankarankoil",
"geoCode" : {
"latitude" : "9.18",
"longitude" : "77.53"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sanquelim",
"value" : "Sanquelim",
"geoCode" : {
"latitude" : "15.55",
"longitude" : "74.02"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Santipur",
"value" : "Santipur",
"geoCode" : {
"latitude" : "23.25",
"longitude" : "88.43"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Santoshpur",
"value" : "Santoshpur",
"geoCode" : {
"latitude" : "22.5",
"longitude" : "88.17"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sanvordem",
"value" : "Sanvordem",
"geoCode" : {
"latitude" : "15.32",
"longitude" : "74.16"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sarahan",
"value" : "Sarahan",
"geoCode" : {
"latitude" : "30.9",
"longitude" : "77.51"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Saraikela",
"value" : "Saraikela",
"geoCode" : {
"latitude" : "22.69963",
"longitude" : "85.93126"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sarangpur",
"value" : "Sarangpur",
"geoCode" : {
"latitude" : "23.56651",
"longitude" : "76.47306"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sasaram",
"value" : "Sasaram",
"geoCode" : {
"latitude" : "24.94",
"longitude" : "84.0"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Saswad",
"value" : "Saswad",
"geoCode" : {
"latitude" : "18.33",
"longitude" : "74.02"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Satara",
"value" : "Satara",
"geoCode" : {
"latitude" : "17.68589",
"longitude" : "73.99333"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sathyamangalam",
"value" : "Sathyamangalam",
"geoCode" : {
"latitude" : "11.49",
"longitude" : "77.24"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Satna",
"value" : "Satna",
"geoCode" : {
"latitude" : "24.5",
"longitude" : "81.0"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sattur",
"value" : "Sattur",
"geoCode" : {
"latitude" : "9.35",
"longitude" : "77.92"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Saundatti",
"value" : "Saundatti",
"geoCode" : {
"latitude" : "15.75",
"longitude" : "75.12"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Savarkundla",
"value" : "Savarkundla",
"geoCode" : {
"latitude" : "21.42",
"longitude" : "71.21"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sawai Madhopur",
"value" : "Sawai Madhopur",
"geoCode" : {
"latitude" : "26.02301",
"longitude" : "76.34408"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Secunderabad",
"value" : "Secunderabad",
"geoCode" : {
"latitude" : "17.50427",
"longitude" : "78.54263"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sehore",
"value" : "Sehore",
"geoCode" : {
"latitude" : "23.2",
"longitude" : "77.08333"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Seksyen 13",
"value" : "Seksyen 13",
"geoCode" : {
"latitude" : "3.1137183",
"longitude" : "101.65291"
},
"stateValue" : "Wilayah Persekutuan Kuala Lumpur",
"countryValue" : "Malaysia"
}, {
"label" : "Seoni",
"value" : "Seoni",
"geoCode" : {
"latitude" : "31.24188",
"longitude" : "77.12362"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Seorinarayan",
"value" : "Seorinarayan",
"geoCode" : {
"latitude" : "21.72055",
"longitude" : "82.59344"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Serampore",
"value" : "Serampore",
"geoCode" : {
"latitude" : "22.75",
"longitude" : "88.34"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Serchhip",
"value" : "Serchhip",
"geoCode" : {
"latitude" : "23.27",
"longitude" : "92.77"
},
"stateValue" : "Meghalaya",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Serilingampalle",
"value" : "Serilingampalle",
"geoCode" : {
"latitude" : "17.49313",
"longitude" : "78.30196"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sevagram",
"value" : "Sevagram",
"geoCode" : {
"latitude" : "20.73499",
"longitude" : "78.66257"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shahada",
"value" : "Shahada",
"geoCode" : {
"latitude" : "21.53",
"longitude" : "74.46"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shahapur",
"value" : "Shahapur",
"geoCode" : {
"latitude" : "19.39",
"longitude" : "73.23"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shahdol",
"value" : "Shahdol",
"geoCode" : {
"latitude" : "23.5",
"longitude" : "81.5"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shahjahanpur",
"value" : "Shahjahanpur",
"geoCode" : {
"latitude" : "28.0",
"longitude" : "79.83333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shahpur",
"value" : "Shahpur",
"geoCode" : {
"latitude" : "19.452078",
"longitude" : "73.32796"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shahpura",
"value" : "Shahpura",
"geoCode" : {
"latitude" : "23.13663",
"longitude" : "79.66402"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shajapur",
"value" : "Shajapur",
"geoCode" : {
"latitude" : "23.5",
"longitude" : "76.25"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shamli",
"value" : "Shamli",
"geoCode" : {
"latitude" : "29.4497",
"longitude" : "77.30959"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sharjah",
"value" : "Sharjah",
"geoCode" : {
"latitude" : "25.33736",
"longitude" : "55.41205"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Shegaon",
"value" : "Shegaon",
"geoCode" : {
"latitude" : "20.77",
"longitude" : "76.67"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sheikhpura",
"value" : "Sheikhpura",
"geoCode" : {
"latitude" : "25.132347",
"longitude" : "85.8523"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sheohar",
"value" : "Sheohar",
"geoCode" : {
"latitude" : "26.51208",
"longitude" : "85.30051"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sheopur",
"value" : "Sheopur",
"geoCode" : {
"latitude" : "25.8",
"longitude" : "77.0"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sherghati",
"value" : "Sherghati",
"geoCode" : {
"latitude" : "24.777208",
"longitude" : "84.9725"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shevgaon",
"value" : "Shevgaon",
"geoCode" : {
"latitude" : "19.350367",
"longitude" : "75.219376"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shiggaon",
"value" : "Shiggaon",
"geoCode" : {
"latitude" : "14.99",
"longitude" : "75.21"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shillong",
"value" : "Shillong",
"geoCode" : {
"latitude" : "25.56892",
"longitude" : "91.88313"
},
"stateValue" : "Meghalaya",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shimla",
"value" : "Shimla",
"geoCode" : {
"latitude" : "31.16667",
"longitude" : "77.58333"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shimoga",
"value" : "Shimoga",
"geoCode" : {
"latitude" : "14.05",
"longitude" : "75.16"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shirala",
"value" : "Shirala",
"geoCode" : {
"latitude" : "16.983484",
"longitude" : "74.12555"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shirdi",
"value" : "Shirdi",
"geoCode" : {
"latitude" : "18.48",
"longitude" : "74.37"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shirgaon",
"value" : "Shirgaon",
"geoCode" : {
"latitude" : "17.54",
"longitude" : "73.75"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shirpur",
"value" : "Shirpur",
"geoCode" : {
"latitude" : "21.43",
"longitude" : "74.98"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shivamogga",
"value" : "Shivamogga",
"geoCode" : {
"latitude" : "13.95",
"longitude" : "75.57"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shivpuri",
"value" : "Shivpuri",
"geoCode" : {
"latitude" : "25.42378",
"longitude" : "77.66223"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sholinghur",
"value" : "Sholinghur",
"geoCode" : {
"latitude" : "13.1",
"longitude" : "79.43"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shrirangapattana",
"value" : "Shrirangapattana",
"geoCode" : {
"latitude" : "12.42264",
"longitude" : "76.68439"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sibsagar",
"value" : "Sibsagar",
"geoCode" : {
"latitude" : "26.98261",
"longitude" : "94.64245"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Siddharthnagar",
"value" : "Siddharthnagar",
"geoCode" : {
"latitude" : "27.260109",
"longitude" : "83.05762"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Siddipet",
"value" : "Siddipet",
"geoCode" : {
"latitude" : "18.10483",
"longitude" : "78.84858"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sidhauli",
"value" : "Sidhauli",
"geoCode" : {
"latitude" : "27.28208",
"longitude" : "80.83443"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sidhi",
"value" : "Sidhi",
"geoCode" : {
"latitude" : "24.41",
"longitude" : "81.88"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sikandra",
"value" : "Sikandra",
"geoCode" : {
"latitude" : "24.94",
"longitude" : "86.0"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sikar",
"value" : "Sikar",
"geoCode" : {
"latitude" : "27.61206",
"longitude" : "75.13996"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Silchar",
"value" : "Silchar",
"geoCode" : {
"latitude" : "24.82733",
"longitude" : "92.79787"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Siliguri",
"value" : "Siliguri",
"geoCode" : {
"latitude" : "26.71004",
"longitude" : "88.42851"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Silvassa",
"value" : "Silvassa",
"geoCode" : {
"latitude" : "20.27386",
"longitude" : "72.99673"
},
"stateValue" : "Dadra And Nagar Haveli And Daman And Diu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Simdega",
"value" : "Simdega",
"geoCode" : {
"latitude" : "23.42",
"longitude" : "85.22"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sindagi",
"value" : "Sindagi",
"geoCode" : {
"latitude" : "16.83017",
"longitude" : "75.71003"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sindhudurg",
"value" : "Sindhudurg",
"geoCode" : {
"latitude" : "15.905263",
"longitude" : "73.82132"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Singanallur, Coimbatore",
"value" : "Singanallur, Coimbatore",
"geoCode" : {
"latitude" : "10.99637",
"longitude" : "77.01781"
},
"stateValue" : "Tamil Nadu",
"countryValue" : "Nan",
"countryCode" : "nan"
}, {
"label" : "Singapore",
"value" : "Singapore",
"geoCode" : {
"latitude" : "1.32698",
"longitude" : "103.84751"
},
"stateValue" : "Singapore",
"countryLabel" : "Singapore",
"countryValue" : "Singapore",
"countryCode" : "SG"
}, {
"label" : "Singrauli",
"value" : "Singrauli",
"geoCode" : {
"latitude" : "24.06",
"longitude" : "82.62"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Singur",
"value" : "Singur",
"geoCode" : {
"latitude" : "22.82",
"longitude" : "88.23"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sinnar",
"value" : "Sinnar",
"geoCode" : {
"latitude" : "16.317434",
"longitude" : "74.13868"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sirkazhi",
"value" : "Sirkazhi",
"geoCode" : {
"latitude" : "11.24132",
"longitude" : "79.72597"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sirohi",
"value" : "Sirohi",
"geoCode" : {
"latitude" : "24.83333",
"longitude" : "72.75"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sirpur",
"value" : "Sirpur",
"geoCode" : {
"latitude" : "21.34",
"longitude" : "82.18"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sirsa",
"value" : "Sirsa",
"geoCode" : {
"latitude" : "29.53489",
"longitude" : "75.02898"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sirsi",
"value" : "Sirsi",
"geoCode" : {
"latitude" : "14.62072",
"longitude" : "74.83554"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Siruseri",
"value" : "Siruseri",
"geoCode" : {
"latitude" : "12.835218",
"longitude" : "80.20108"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sitamarhi",
"value" : "Sitamarhi",
"geoCode" : {
"latitude" : "26.66667",
"longitude" : "85.5"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sitapur",
"value" : "Sitapur",
"geoCode" : {
"latitude" : "27.5",
"longitude" : "80.91667"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sitarganj",
"value" : "Sitarganj",
"geoCode" : {
"latitude" : "28.91",
"longitude" : "79.7"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Siuri",
"value" : "Siuri",
"geoCode" : {
"latitude" : "23.905445",
"longitude" : "87.52462"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sivaganga",
"value" : "Sivaganga",
"geoCode" : {
"latitude" : "10.11",
"longitude" : "78.66"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sivakasi",
"value" : "Sivakasi",
"geoCode" : {
"latitude" : "9.44999",
"longitude" : "77.79797"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sivasagar",
"value" : "Sivasagar",
"geoCode" : {
"latitude" : "26.96",
"longitude" : "94.61"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Siwan",
"value" : "Siwan",
"geoCode" : {
"latitude" : "26.22096",
"longitude" : "84.35609"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sodpur",
"value" : "Sodpur",
"geoCode" : {
"latitude" : "22.704166",
"longitude" : "88.39167"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sohna",
"value" : "Sohna",
"geoCode" : {
"latitude" : "28.24",
"longitude" : "77.15"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Solan",
"value" : "Solan",
"geoCode" : {
"latitude" : "31.08333",
"longitude" : "76.83333"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Solapur",
"value" : "Solapur",
"geoCode" : {
"latitude" : "17.75",
"longitude" : "75.5"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Somvarpet",
"value" : "Somvarpet",
"geoCode" : {
"latitude" : "12.36",
"longitude" : "75.9"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sonbhadra",
"value" : "Sonbhadra",
"geoCode" : {
"latitude" : "24.40212",
"longitude" : "83.05352"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Songadh",
"value" : "Songadh",
"geoCode" : {
"latitude" : "20.98",
"longitude" : "73.72"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sonipat",
"value" : "Sonipat",
"geoCode" : {
"latitude" : "29.0",
"longitude" : "76.91667"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sonitpur",
"value" : "Sonitpur",
"geoCode" : {
"latitude" : "26.733442",
"longitude" : "93.151276"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sopore",
"value" : "Sopore",
"geoCode" : {
"latitude" : "34.286594",
"longitude" : "74.4628"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "South 24 Parganas District",
"value" : "South 24 Parganas District",
"geoCode" : {
"latitude" : "22.16197",
"longitude" : "88.4317"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "South District",
"value" : "South District",
"geoCode" : {
"latitude" : "27.33333",
"longitude" : "88.41667"
},
"stateValue" : "Sikkim",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "South Goa",
"value" : "South Goa",
"geoCode" : {
"latitude" : "15.20425",
"longitude" : "74.16733"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Soygaon",
"value" : "Soygaon",
"geoCode" : {
"latitude" : "20.59",
"longitude" : "75.72"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Speke",
"value" : "Speke",
"geoCode" : {
"latitude" : "53.335117",
"longitude" : "-2.852346"
},
"stateValue" : "England",
"countryValue" : "United Kingdom"
}, {
"label" : "Sri Ganganagar",
"value" : "Sri Ganganagar",
"geoCode" : {
"latitude" : "29.915121",
"longitude" : "73.85875"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sri Muktsar Sahib",
"value" : "Sri Muktsar Sahib",
"geoCode" : {
"latitude" : "30.47426",
"longitude" : "74.5166"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Srikakulam",
"value" : "Srikakulam",
"geoCode" : {
"latitude" : "18.2989",
"longitude" : "83.89751"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Srinagar",
"value" : "Srinagar",
"geoCode" : {
"latitude" : "34.08565",
"longitude" : "74.80555"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sringeri",
"value" : "Sringeri",
"geoCode" : {
"latitude" : "13.23",
"longitude" : "75.17"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sriperumbudur",
"value" : "Sriperumbudur",
"geoCode" : {
"latitude" : "12.96763",
"longitude" : "79.94197"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Srivilliputhur",
"value" : "Srivilliputhur",
"geoCode" : {
"latitude" : "9.5",
"longitude" : "77.63"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Stittsville",
"value" : "Stittsville",
"geoCode" : {
"latitude" : "45.296917",
"longitude" : "-75.92683"
},
"stateValue" : "Ontario",
"countryValue" : "Canada"
}, {
"label" : "Sujangarh",
"value" : "Sujangarh",
"geoCode" : {
"latitude" : "27.7",
"longitude" : "74.45"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sukabumi",
"value" : "Sukabumi",
"geoCode" : {
"latitude" : "-6.9137635",
"longitude" : "106.93123"
},
"stateValue" : "Gujarat",
"countryValue" : "Indonesia",
"countryCode" : "IN"
}, {
"label" : "Sultan Bathery",
"value" : "Sultan Bathery",
"geoCode" : {
"latitude" : "11.662913",
"longitude" : "76.25702"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sultanpur",
"value" : "Sultanpur",
"geoCode" : {
"latitude" : "23.13812",
"longitude" : "77.93404"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sulur",
"value" : "Sulur",
"geoCode" : {
"latitude" : "11.0",
"longitude" : "77.06"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sundargarh",
"value" : "Sundargarh",
"geoCode" : {
"latitude" : "22.225908",
"longitude" : "84.85781"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sundarnagar",
"value" : "Sundarnagar",
"geoCode" : {
"latitude" : "31.53753",
"longitude" : "76.89308"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Suntikoppa",
"value" : "Suntikoppa",
"geoCode" : {
"latitude" : "12.41",
"longitude" : "75.8"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Supaul",
"value" : "Supaul",
"geoCode" : {
"latitude" : "26.11983",
"longitude" : "86.60176"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Surajgarh",
"value" : "Surajgarh",
"geoCode" : {
"latitude" : "28.31",
"longitude" : "75.73"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Surat",
"value" : "Surat",
"geoCode" : {
"latitude" : "21.17801",
"longitude" : "72.81189"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Suratgarh",
"value" : "Suratgarh",
"geoCode" : {
"latitude" : "29.32186",
"longitude" : "73.900925"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Surendranagar",
"value" : "Surendranagar",
"geoCode" : {
"latitude" : "22.72706",
"longitude" : "71.64856"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Surguja",
"value" : "Surguja",
"geoCode" : {
"latitude" : "23.12304",
"longitude" : "83.1716"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Suri",
"value" : "Suri",
"geoCode" : {
"latitude" : "23.916666",
"longitude" : "87.53333"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Suriapet",
"value" : "Suriapet",
"geoCode" : {
"latitude" : "17.14054",
"longitude" : "79.62045"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Swamimalai",
"value" : "Swamimalai",
"geoCode" : {
"latitude" : "10.95",
"longitude" : "79.32"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tadepallegudem",
"value" : "Tadepallegudem",
"geoCode" : {
"latitude" : "16.81635",
"longitude" : "81.52351"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tadipatri",
"value" : "Tadipatri",
"geoCode" : {
"latitude" : "14.908236",
"longitude" : "78.010475"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tajpur",
"value" : "Tajpur",
"geoCode" : {
"latitude" : "21.65",
"longitude" : "87.61"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tal",
"value" : "Tal",
"geoCode" : {
"latitude" : "16.264748",
"longitude" : "73.70965"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Talcher",
"value" : "Talcher",
"geoCode" : {
"latitude" : "20.93",
"longitude" : "85.22"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tambaram",
"value" : "Tambaram",
"geoCode" : {
"latitude" : "12.89",
"longitude" : "80.02"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tamluk",
"value" : "Tamluk",
"geoCode" : {
"latitude" : "22.3",
"longitude" : "87.916664"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tanakpur",
"value" : "Tanakpur",
"geoCode" : {
"latitude" : "29.05",
"longitude" : "80.1"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tanuku",
"value" : "Tanuku",
"geoCode" : {
"latitude" : "16.75438",
"longitude" : "81.68143"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Taoru",
"value" : "Taoru",
"geoCode" : {
"latitude" : "28.21173",
"longitude" : "76.94984"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tarn Taran Sahib",
"value" : "Tarn Taran Sahib",
"geoCode" : {
"latitude" : "31.466448",
"longitude" : "74.91769"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tasgaon",
"value" : "Tasgaon",
"geoCode" : {
"latitude" : "17.098425",
"longitude" : "74.38735"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tawang",
"value" : "Tawang",
"geoCode" : {
"latitude" : "27.1",
"longitude" : "92.4"
},
"stateValue" : "Arunachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tehri",
"value" : "Tehri",
"geoCode" : {
"latitude" : "30.39086",
"longitude" : "78.4803"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tellicherry",
"value" : "Tellicherry",
"geoCode" : {
"latitude" : "11.74811",
"longitude" : "75.4929"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tenali",
"value" : "Tenali",
"geoCode" : {
"latitude" : "17.531977",
"longitude" : "78.48782"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tenkasi",
"value" : "Tenkasi",
"geoCode" : {
"latitude" : "8.958407",
"longitude" : "77.30601"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tezpur",
"value" : "Tezpur",
"geoCode" : {
"latitude" : "26.63333",
"longitude" : "92.8"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tezu",
"value" : "Tezu",
"geoCode" : {
"latitude" : "27.87",
"longitude" : "96.36"
},
"stateValue" : "Arunachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thane",
"value" : "Thane",
"geoCode" : {
"latitude" : "19.33333",
"longitude" : "73.25"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thanesar",
"value" : "Thanesar",
"geoCode" : {
"latitude" : "29.96",
"longitude" : "76.91"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thangadh",
"value" : "Thangadh",
"geoCode" : {
"latitude" : "22.59",
"longitude" : "71.21"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thanjavur",
"value" : "Thanjavur",
"geoCode" : {
"latitude" : "10.64",
"longitude" : "79.22"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tharamangalam",
"value" : "Tharamangalam",
"geoCode" : {
"latitude" : "11.725243",
"longitude" : "77.884"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tharangambadi",
"value" : "Tharangambadi",
"geoCode" : {
"latitude" : "11.02",
"longitude" : "79.85"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Theni",
"value" : "Theni",
"geoCode" : {
"latitude" : "9.85",
"longitude" : "77.42"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thenkasi",
"value" : "Thenkasi",
"geoCode" : {
"latitude" : "8.96003",
"longitude" : "77.31525"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Theog",
"value" : "Theog",
"geoCode" : {
"latitude" : "31.11",
"longitude" : "77.55"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thirunelly",
"value" : "Thirunelly",
"geoCode" : {
"latitude" : "9.942871",
"longitude" : "76.37409"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thiruthani",
"value" : "Thiruthani",
"geoCode" : {
"latitude" : "13.18",
"longitude" : "79.6"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thiruvalla",
"value" : "Thiruvalla",
"geoCode" : {
"latitude" : "9.3866",
"longitude" : "76.57465"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thiruvallur",
"value" : "Thiruvallur",
"geoCode" : {
"latitude" : "13.25",
"longitude" : "80.0"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thiruvananthapuram",
"value" : "Thiruvananthapuram",
"geoCode" : {
"latitude" : "8.60399",
"longitude" : "76.98574"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thiruvannamalai",
"value" : "Thiruvannamalai",
"geoCode" : {
"latitude" : "12.629862",
"longitude" : "79.21334"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thiruvarur",
"value" : "Thiruvarur",
"geoCode" : {
"latitude" : "10.66",
"longitude" : "79.41"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thodupuzha",
"value" : "Thodupuzha",
"geoCode" : {
"latitude" : "9.81",
"longitude" : "76.81"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thoothukudi",
"value" : "Thoothukudi",
"geoCode" : {
"latitude" : "8.76735",
"longitude" : "78.13425"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thoraipakkam",
"value" : "Thoraipakkam",
"geoCode" : {
"latitude" : "12.9464",
"longitude" : "80.24064"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thoubal",
"value" : "Thoubal",
"geoCode" : {
"latitude" : "24.62",
"longitude" : "94.01"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thrikkakara",
"value" : "Thrikkakara",
"geoCode" : {
"latitude" : "10.03272",
"longitude" : "76.33189"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thrissur",
"value" : "Thrissur",
"geoCode" : {
"latitude" : "10.51975",
"longitude" : "76.21673"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thrissur District",
"value" : "Thrissur District",
"geoCode" : {
"latitude" : "10.591155",
"longitude" : "76.01018"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tijara",
"value" : "Tijara",
"geoCode" : {
"latitude" : "27.92",
"longitude" : "76.88"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tikamgarh",
"value" : "Tikamgarh",
"geoCode" : {
"latitude" : "24.74",
"longitude" : "78.82"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tindivanam",
"value" : "Tindivanam",
"geoCode" : {
"latitude" : "12.25",
"longitude" : "79.67"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tinsukia",
"value" : "Tinsukia",
"geoCode" : {
"latitude" : "27.6",
"longitude" : "95.6"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tiptur",
"value" : "Tiptur",
"geoCode" : {
"latitude" : "13.2563",
"longitude" : "76.47768"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tiruchchendur",
"value" : "Tiruchchendur",
"geoCode" : {
"latitude" : "8.42714",
"longitude" : "78.02605"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tiruchengode",
"value" : "Tiruchengode",
"geoCode" : {
"latitude" : "11.03",
"longitude" : "77.53"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tiruchirappalli",
"value" : "Tiruchirappalli",
"geoCode" : {
"latitude" : "10.97",
"longitude" : "78.65"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tirumala",
"value" : "Tirumala",
"geoCode" : {
"latitude" : "26.480425",
"longitude" : "80.29115"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tirunelveli",
"value" : "Tirunelveli",
"geoCode" : {
"latitude" : "8.72742",
"longitude" : "77.6838"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tirupati",
"value" : "Tirupati",
"geoCode" : {
"latitude" : "13.63551",
"longitude" : "79.41989"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tiruppur",
"value" : "Tiruppur",
"geoCode" : {
"latitude" : "11.11541",
"longitude" : "77.35456"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tirur",
"value" : "Tirur",
"geoCode" : {
"latitude" : "10.91368",
"longitude" : "75.92118"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tiruvalla",
"value" : "Tiruvalla",
"geoCode" : {
"latitude" : "9.3816",
"longitude" : "76.57489"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tiruvallur",
"value" : "Tiruvallur",
"geoCode" : {
"latitude" : "13.1",
"longitude" : "79.91"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tiruvannamalai",
"value" : "Tiruvannamalai",
"geoCode" : {
"latitude" : "12.51",
"longitude" : "79.09"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Titagarh",
"value" : "Titagarh",
"geoCode" : {
"latitude" : "22.74",
"longitude" : "88.37"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Titwala",
"value" : "Titwala",
"geoCode" : {
"latitude" : "19.295486",
"longitude" : "73.20367"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tohana",
"value" : "Tohana",
"geoCode" : {
"latitude" : "29.71444",
"longitude" : "75.90129"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tonk",
"value" : "Tonk",
"geoCode" : {
"latitude" : "26.16667",
"longitude" : "75.58333"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Trimbak",
"value" : "Trimbak",
"geoCode" : {
"latitude" : "19.89",
"longitude" : "73.54"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tripunithura",
"value" : "Tripunithura",
"geoCode" : {
"latitude" : "9.937768",
"longitude" : "76.34636"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Trivandrum",
"value" : "Trivandrum",
"geoCode" : {
"latitude" : "8.484528",
"longitude" : "76.94774"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tuljapur",
"value" : "Tuljapur",
"geoCode" : {
"latitude" : "18.0",
"longitude" : "76.06"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tumakuru",
"value" : "Tumakuru",
"geoCode" : {
"latitude" : "13.3379",
"longitude" : "77.1173"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tumkur",
"value" : "Tumkur",
"geoCode" : {
"latitude" : "13.5",
"longitude" : "77.0"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tuni",
"value" : "Tuni",
"geoCode" : {
"latitude" : "17.357471",
"longitude" : "82.547165"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tura",
"value" : "Tura",
"geoCode" : {
"latitude" : "25.51",
"longitude" : "90.19"
},
"stateValue" : "Manipur",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tuticorin",
"value" : "Tuticorin",
"geoCode" : {
"latitude" : "8.37",
"longitude" : "78.06"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udaipur",
"value" : "Udaipur",
"geoCode" : {
"latitude" : "24.33",
"longitude" : "73.77"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udalguri",
"value" : "Udalguri",
"geoCode" : {
"latitude" : "22.59965",
"longitude" : "88.36085"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udayagiri",
"value" : "Udayagiri",
"geoCode" : {
"latitude" : "20.12416",
"longitude" : "84.36869"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udgir",
"value" : "Udgir",
"geoCode" : {
"latitude" : "18.389229",
"longitude" : "77.12351"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udham Singh Nagar",
"value" : "Udham Singh Nagar",
"geoCode" : {
"latitude" : "29.02746",
"longitude" : "79.52347"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udhampur",
"value" : "Udhampur",
"geoCode" : {
"latitude" : "33.0",
"longitude" : "75.16667"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udumalaipettai",
"value" : "Udumalaipettai",
"geoCode" : {
"latitude" : "10.59",
"longitude" : "77.25"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udumalaippettai",
"value" : "Udumalaippettai",
"geoCode" : {
"latitude" : "10.58806",
"longitude" : "77.24779"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udupi",
"value" : "Udupi",
"geoCode" : {
"latitude" : "13.5",
"longitude" : "74.87"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ujjain",
"value" : "Ujjain",
"geoCode" : {
"latitude" : "23.41667",
"longitude" : "75.5"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ukhrul",
"value" : "Ukhrul",
"geoCode" : {
"latitude" : "25.05",
"longitude" : "94.4"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ulhasnagar",
"value" : "Ulhasnagar",
"geoCode" : {
"latitude" : "19.21667",
"longitude" : "73.15"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Umaria",
"value" : "Umaria",
"geoCode" : {
"latitude" : "23.52473",
"longitude" : "80.83716"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Umm Al Quwain",
"value" : "Umm Al Quwain",
"geoCode" : {
"latitude" : "25.49325",
"longitude" : "55.7351"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Una",
"value" : "Una",
"geoCode" : {
"latitude" : "-15.16451",
"longitude" : "-39.20568"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Unjha",
"value" : "Unjha",
"geoCode" : {
"latitude" : "23.8",
"longitude" : "72.38"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Unnao",
"value" : "Unnao",
"geoCode" : {
"latitude" : "26.5",
"longitude" : "80.5"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Urmar Tanda",
"value" : "Urmar Tanda",
"geoCode" : {
"latitude" : "31.69996",
"longitude" : "75.57386"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Uttar Dinajpur District",
"value" : "Uttar Dinajpur District",
"geoCode" : {
"latitude" : "26.25965",
"longitude" : "88.18843"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Uttar Kannada",
"value" : "Uttar Kannada",
"geoCode" : {
"latitude" : "14.88333",
"longitude" : "74.58333"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Uttarkashi",
"value" : "Uttarkashi",
"geoCode" : {
"latitude" : "30.7",
"longitude" : "78.3"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Uttarpara Kotrung",
"value" : "Uttarpara Kotrung",
"geoCode" : {
"latitude" : "22.67",
"longitude" : "88.35"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vadgaon",
"value" : "Vadgaon",
"geoCode" : {
"latitude" : "16.835627",
"longitude" : "74.31246"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vadnagar",
"value" : "Vadnagar",
"geoCode" : {
"latitude" : "23.78",
"longitude" : "72.63"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vadodara",
"value" : "Vadodara",
"geoCode" : {
"latitude" : "22.29941",
"longitude" : "73.20812"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vagator",
"value" : "Vagator",
"geoCode" : {
"latitude" : "15.59",
"longitude" : "73.73"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vaishali",
"value" : "Vaishali",
"geoCode" : {
"latitude" : "25.75",
"longitude" : "85.41667"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vallabh Vidyanagar",
"value" : "Vallabh Vidyanagar",
"geoCode" : {
"latitude" : "22.54",
"longitude" : "72.9"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Valparai",
"value" : "Valparai",
"geoCode" : {
"latitude" : "10.27",
"longitude" : "76.98"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Valsad",
"value" : "Valsad",
"geoCode" : {
"latitude" : "20.5",
"longitude" : "73.08333"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vancouver",
"value" : "Vancouver",
"geoCode" : {
"latitude" : "49.288826",
"longitude" : "-123.11112"
},
"stateValue" : "British Columbia",
"countryValue" : "Canada"
}, {
"label" : "Vandalur",
"value" : "Vandalur",
"geoCode" : {
"latitude" : "12.87",
"longitude" : "80.07"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vaniyambadi",
"value" : "Vaniyambadi",
"geoCode" : {
"latitude" : "12.50507",
"longitude" : "79.60915"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vapi",
"value" : "Vapi",
"geoCode" : {
"latitude" : "20.37175",
"longitude" : "72.90493"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Varanasi",
"value" : "Varanasi",
"geoCode" : {
"latitude" : "25.31668",
"longitude" : "83.01041"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Varca",
"value" : "Varca",
"geoCode" : {
"latitude" : "15.2",
"longitude" : "73.93"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Varkala",
"value" : "Varkala",
"geoCode" : {
"latitude" : "8.66",
"longitude" : "76.76"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vasai",
"value" : "Vasai",
"geoCode" : {
"latitude" : "19.28",
"longitude" : "72.9"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vasco Da Gama",
"value" : "Vasco Da Gama",
"geoCode" : {
"latitude" : "15.39585",
"longitude" : "73.81568"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vashi",
"value" : "Vashi",
"geoCode" : {
"latitude" : "19.08",
"longitude" : "73.01"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vayalar",
"value" : "Vayalar",
"geoCode" : {
"latitude" : "9.74",
"longitude" : "76.33"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Velankanni",
"value" : "Velankanni",
"geoCode" : {
"latitude" : "10.67",
"longitude" : "79.85"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vellore",
"value" : "Vellore",
"geoCode" : {
"latitude" : "12.86",
"longitude" : "79.035"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Velneshwar",
"value" : "Velneshwar",
"geoCode" : {
"latitude" : "17.38",
"longitude" : "73.2"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Velur",
"value" : "Velur",
"geoCode" : {
"latitude" : "11.11",
"longitude" : "78.01"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vengurla",
"value" : "Vengurla",
"geoCode" : {
"latitude" : "15.74",
"longitude" : "73.65"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Veraval",
"value" : "Veraval",
"geoCode" : {
"latitude" : "20.9077",
"longitude" : "70.36786"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vidhani",
"value" : "Vidhani",
"geoCode" : {
"latitude" : "26.779623",
"longitude" : "75.87702"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vidisha",
"value" : "Vidisha",
"geoCode" : {
"latitude" : "23.91667",
"longitude" : "78.0"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vijapur",
"value" : "Vijapur",
"geoCode" : {
"latitude" : "16.830172",
"longitude" : "75.71003"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vijayapura",
"value" : "Vijayapura",
"geoCode" : {
"latitude" : "16.82",
"longitude" : "75.67"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vijayawada",
"value" : "Vijayawada",
"geoCode" : {
"latitude" : "16.50745",
"longitude" : "80.6466"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vikarabad",
"value" : "Vikarabad",
"geoCode" : {
"latitude" : "17.3",
"longitude" : "77.96"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vikasnagar",
"value" : "Vikasnagar",
"geoCode" : {
"latitude" : "30.46944",
"longitude" : "77.77275"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Villupuram",
"value" : "Villupuram",
"geoCode" : {
"latitude" : "11.99",
"longitude" : "79.37"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Viluppuram",
"value" : "Viluppuram",
"geoCode" : {
"latitude" : "11.940138",
"longitude" : "79.486145"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Virar",
"value" : "Virar",
"geoCode" : {
"latitude" : "19.45591",
"longitude" : "72.81136"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Virpur",
"value" : "Virpur",
"geoCode" : {
"latitude" : "21.53",
"longitude" : "71.83"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Virudachalam",
"value" : "Virudachalam",
"geoCode" : {
"latitude" : "11.52102",
"longitude" : "79.32356"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Virudhunagar",
"value" : "Virudhunagar",
"geoCode" : {
"latitude" : "9.45",
"longitude" : "77.92"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Visakhapatnam",
"value" : "Visakhapatnam",
"geoCode" : {
"latitude" : "17.68009",
"longitude" : "83.20161"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vizianagaram",
"value" : "Vizianagaram",
"geoCode" : {
"latitude" : "18.11692",
"longitude" : "83.41148"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vriddhachalam",
"value" : "Vriddhachalam",
"geoCode" : {
"latitude" : "11.5183",
"longitude" : "79.32411"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vrindavan",
"value" : "Vrindavan",
"geoCode" : {
"latitude" : "27.51",
"longitude" : "77.47"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vyara",
"value" : "Vyara",
"geoCode" : {
"latitude" : "21.11079",
"longitude" : "73.39365"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Wagholi",
"value" : "Wagholi",
"geoCode" : {
"latitude" : "18.59013",
"longitude" : "73.997314"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Wai",
"value" : "Wai",
"geoCode" : {
"latitude" : "17.94",
"longitude" : "73.91"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Wakad",
"value" : "Wakad",
"geoCode" : {
"latitude" : "18.61",
"longitude" : "73.74"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Wankaner",
"value" : "Wankaner",
"geoCode" : {
"latitude" : "22.61",
"longitude" : "70.93"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Warangal",
"value" : "Warangal",
"geoCode" : {
"latitude" : "18.0",
"longitude" : "79.83333"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Wardha",
"value" : "Wardha",
"geoCode" : {
"latitude" : "20.73933",
"longitude" : "78.59784"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Washim",
"value" : "Washim",
"geoCode" : {
"latitude" : "20.2",
"longitude" : "77.2"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Wayanad",
"value" : "Wayanad",
"geoCode" : {
"latitude" : "11.605",
"longitude" : "76.083"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "West Godavari",
"value" : "West Godavari",
"geoCode" : {
"latitude" : "17.0",
"longitude" : "81.16667"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "West Jaintia Hills",
"value" : "West Jaintia Hills",
"geoCode" : {
"latitude" : "25.450903",
"longitude" : "92.20891"
},
"stateValue" : "Meghalaya",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Wokha",
"value" : "Wokha",
"geoCode" : {
"latitude" : "26.16667",
"longitude" : "94.25"
},
"stateValue" : "Nagaland",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Yadgir",
"value" : "Yadgir",
"geoCode" : {
"latitude" : "16.17",
"longitude" : "76.22"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Yamunanagar",
"value" : "Yamunanagar",
"geoCode" : {
"latitude" : "30.23644",
"longitude" : "77.30498"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Yanam",
"value" : "Yanam",
"geoCode" : {
"latitude" : "16.73308",
"longitude" : "82.21364"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Yavatmal",
"value" : "Yavatmal",
"geoCode" : {
"latitude" : "20.15",
"longitude" : "78.35"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Yelahanka",
"value" : "Yelahanka",
"geoCode" : {
"latitude" : "13.14",
"longitude" : "77.58"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Yellandu",
"value" : "Yellandu",
"geoCode" : {
"latitude" : "17.595297",
"longitude" : "80.00522"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Yellapur",
"value" : "Yellapur",
"geoCode" : {
"latitude" : "14.84",
"longitude" : "74.71"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Zirakpur",
"value" : "Zirakpur",
"geoCode" : {
"latitude" : "30.637442",
"longitude" : "76.81545"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Zunheboto",
"value" : "Zunheboto",
"geoCode" : {
"latitude" : "26.0",
"longitude" : "94.5"
},
"stateValue" : "Nagaland",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Élancourt",
"value" : "Élancourt",
"geoCode" : {
"latitude" : "48.77657",
"longitude" : "1.963188"
},
"stateValue" : "Île-De-France",
"countryValue" : "France"
} ]
6.1.19. Example 11 ii): Get Cities List Based on Country
Get the list of cities based on country (filter by countryValue or countryCode).
The 'value' from this API can be used for filtering choices by city.
In Swagger UI, Expand 'Data List API' and select '/api/v3/list/{id}'.
| Parameter | Description |
|---|---|
|
Unique identifier of the list |
| Parameter | Description |
|---|---|
|
Language (default: en) |
|
Filter type |
|
Filter value |
Key in inputs as below:
GET /api/v3/list/cities?lang=en&filterBy=countryCode&filterValue=AE HTTP/1.1
Content-Type: application/json
Host: localhost:8080
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 2391
[ {
"label" : "Abu Dhabi",
"value" : "Abu Dhabi",
"geoCode" : {
"latitude" : "24.502419",
"longitude" : "54.373077"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Ajman",
"value" : "Ajman",
"geoCode" : {
"latitude" : "25.4032",
"longitude" : "55.52341"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Al Ain",
"value" : "Al Ain",
"geoCode" : {
"latitude" : "24.24345",
"longitude" : "55.7265"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Al Dhaid",
"value" : "Al Dhaid",
"geoCode" : {
"latitude" : "25.74331",
"longitude" : "55.89634"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Dubai",
"value" : "Dubai",
"geoCode" : {
"latitude" : "25.07507",
"longitude" : "55.12984"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Fujairah",
"value" : "Fujairah",
"geoCode" : {
"latitude" : "25.12166",
"longitude" : "56.32639"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Ras Al Khaimah",
"value" : "Ras Al Khaimah",
"geoCode" : {
"latitude" : "25.4611",
"longitude" : "56.04058"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Sharjah",
"value" : "Sharjah",
"geoCode" : {
"latitude" : "25.33736",
"longitude" : "55.41205"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Umm Al Quwain",
"value" : "Umm Al Quwain",
"geoCode" : {
"latitude" : "25.49325",
"longitude" : "55.7351"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
} ]
6.1.20. Example 12: Get Categories List
Get the list of categories.
The 'value' from this API can be used for filtering choices by category.
In Swagger UI, Expand 'Data List API' and select '/api/v3/list/{id}'.
| Parameter | Description |
|---|---|
|
Unique identifier of the list |
| Parameter | Description |
|---|---|
|
Language (default: en) |
|
Filter type |
|
Filter value |
Key in inputs as below:
GET /api/v3/list/categories?lang=en HTTP/1.1
Content-Type: application/json
Host: localhost:8080
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 689
[ {
"label" : "Dining",
"value" : "dining"
}, {
"label" : "Retail",
"value" : "retail stores"
}, {
"label" : "Apparel",
"value" : "apparel and accessories"
}, {
"label" : "Travel",
"value" : "travel"
}, {
"label" : "Entertainment",
"value" : "entertainment"
}, {
"label" : "Personal Services",
"value" : "personal service providers"
}, {
"label" : "Miscellaneous",
"value" : "miscellaneous stores"
}, {
"label" : "Jewellery",
"value" : "jewellery"
}, {
"label" : "Electronics",
"value" : "electronics"
}, {
"label" : "Home and Decor",
"value" : "home and decor"
}, {
"label" : "Exclusive offers for you",
"value" : "exclusive offers for you"
} ]
6.1.21. Example 13: Get Categories List
Get the list of categories based on selected location (city/geoCode) i.e filter out categories without offers in the selected location.
The 'value' from this API can be used for filtering choices by category.
In Swagger UI, Expand 'Data List API' and select '/api/v3/list/{id}'.
| Parameter | Description |
|---|---|
|
Unique identifier of the list |
| Parameter | Description |
|---|---|
|
Language (default: en) |
|
Filter type |
|
Filter value |
Key in inputs as below:
GET /api/v3/list/categories?lang=en&filterBy=geoCode&filterValue=25.0657,55.17128 HTTP/1.1
Content-Type: application/json
Host: localhost:8080
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 513
[ {
"label" : "Dining",
"value" : "dining"
}, {
"label" : "Retail",
"value" : "retail stores"
}, {
"label" : "Apparel",
"value" : "apparel and accessories"
}, {
"label" : "Travel",
"value" : "travel"
}, {
"label" : "Entertainment",
"value" : "entertainment"
}, {
"label" : "Personal Services",
"value" : "personal service providers"
}, {
"label" : "Miscellaneous",
"value" : "miscellaneous stores"
}, {
"label" : "Exclusive offers for you",
"value" : "exclusive offers for you"
} ]
6.1.22. Example 14: Get Attributes List
Get the list of attribute names for a given category. The 'value' from this API has to be used for attribute filtering of choices.
In Swagger UI, Expand 'Data List API' and select '/api/v3/list/{id}'.
Key in inputs as below:
'id' |
attributes-dining |
where 'dining' is the category value.
And you should be getting output as below:
[
{
"score": 0.75,
"label": "Cafes",
"value": "cafe"
},
{
"score": 0.75,
"label": "food trucks",
"value": "food-truck"
},
...
{
"score": 0.75,
"label": "Luxury",
"value": "luxury"
}
]
6.1.23. Example 15: Get sorted city details
Get city details sorted based on current location.
In Swagger UI, Expand 'Data List API' and select POST method of '/api/v3/list/cities'.
| Parameter | Description |
|---|---|
|
Language (default: en) |
| Path | Type | Description |
|---|---|---|
|
|
Geo coordinates |
|
|
Latitude |
|
|
Longitude |
|
|
Filter type |
|
|
Filter value |
|
|
Identifier |
Key in inputs as below:
POST /api/v3/list/cities?lang=en HTTP/1.1
Content-Type: application/json
Content-Length: 141
Host: localhost:8080
{
"geoCode" : {
"latitude" : "19.07283",
"longitude" : "72.88261"
},
"filterBy" : null,
"filterValue" : null,
"id" : null
}
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 366096
[ {
"label" : "Mumbai",
"value" : "Mumbai",
"geoCode" : {
"latitude" : "19.07283",
"longitude" : "72.88261"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chembur",
"value" : "Chembur",
"geoCode" : {
"latitude" : "19.059338",
"longitude" : "72.89944"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dadar",
"value" : "Dadar",
"geoCode" : {
"latitude" : "19.019926",
"longitude" : "72.8413"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Parel",
"value" : "Parel",
"geoCode" : {
"latitude" : "18.997658",
"longitude" : "72.83759"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malad",
"value" : "Malad",
"geoCode" : {
"latitude" : "19.174494",
"longitude" : "72.8438"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vashi",
"value" : "Vashi",
"geoCode" : {
"latitude" : "19.08",
"longitude" : "73.01"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Navi Mumbai",
"value" : "Navi Mumbai",
"geoCode" : {
"latitude" : "19.03681",
"longitude" : "73.01582"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mira Bhayandar",
"value" : "Mira Bhayandar",
"geoCode" : {
"latitude" : "19.203081",
"longitude" : "72.96484"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kharghar",
"value" : "Kharghar",
"geoCode" : {
"latitude" : "19.034637",
"longitude" : "73.06635"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vasai",
"value" : "Vasai",
"geoCode" : {
"latitude" : "19.28",
"longitude" : "72.9"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhayandar",
"value" : "Bhayandar",
"geoCode" : {
"latitude" : "19.30157",
"longitude" : "72.85107"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panvel",
"value" : "Panvel",
"geoCode" : {
"latitude" : "18.98878",
"longitude" : "73.11013"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dombivli",
"value" : "Dombivli",
"geoCode" : {
"latitude" : "19.21667",
"longitude" : "73.08333"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhiwandi",
"value" : "Bhiwandi",
"geoCode" : {
"latitude" : "19.30023",
"longitude" : "73.05881"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ambarnath",
"value" : "Ambarnath",
"geoCode" : {
"latitude" : "19.18",
"longitude" : "73.16"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ulhasnagar",
"value" : "Ulhasnagar",
"geoCode" : {
"latitude" : "19.21667",
"longitude" : "73.15"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalyan",
"value" : "Kalyan",
"geoCode" : {
"latitude" : "19.2437",
"longitude" : "73.13554"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalyan-Dombivli",
"value" : "Kalyan-Dombivli",
"geoCode" : {
"latitude" : "19.25",
"longitude" : "73.14"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palghar",
"value" : "Palghar",
"geoCode" : {
"latitude" : "18.98",
"longitude" : "73.22"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nala Sopara",
"value" : "Nala Sopara",
"geoCode" : {
"latitude" : "19.39",
"longitude" : "72.77"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Badlapur",
"value" : "Badlapur",
"geoCode" : {
"latitude" : "19.15516",
"longitude" : "73.26553"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Matheran",
"value" : "Matheran",
"geoCode" : {
"latitude" : "18.98281",
"longitude" : "73.2652"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Titwala",
"value" : "Titwala",
"geoCode" : {
"latitude" : "19.295486",
"longitude" : "73.20367"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Virar",
"value" : "Virar",
"geoCode" : {
"latitude" : "19.45591",
"longitude" : "72.81136"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pen",
"value" : "Pen",
"geoCode" : {
"latitude" : "18.73",
"longitude" : "73.08"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Neral",
"value" : "Neral",
"geoCode" : {
"latitude" : "18.99",
"longitude" : "73.33"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thane",
"value" : "Thane",
"geoCode" : {
"latitude" : "19.33333",
"longitude" : "73.25"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karjat",
"value" : "Karjat",
"geoCode" : {
"latitude" : "18.9107",
"longitude" : "73.32354"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shahapur",
"value" : "Shahapur",
"geoCode" : {
"latitude" : "19.39",
"longitude" : "73.23"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khalapur",
"value" : "Khalapur",
"geoCode" : {
"latitude" : "18.743332",
"longitude" : "73.28813"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Murbad",
"value" : "Murbad",
"geoCode" : {
"latitude" : "19.258135",
"longitude" : "73.381645"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khopoli",
"value" : "Khopoli",
"geoCode" : {
"latitude" : "18.78562",
"longitude" : "73.34589"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ghatkopar",
"value" : "Ghatkopar",
"geoCode" : {
"latitude" : "19.61",
"longitude" : "72.72"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shahpur",
"value" : "Shahpur",
"geoCode" : {
"latitude" : "19.452078",
"longitude" : "73.32796"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Igatpuri",
"value" : "Igatpuri",
"geoCode" : {
"latitude" : "19.65",
"longitude" : "73.14"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Roha",
"value" : "Roha",
"geoCode" : {
"latitude" : "18.43",
"longitude" : "73.11"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Boisar",
"value" : "Boisar",
"geoCode" : {
"latitude" : "19.78",
"longitude" : "72.74"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dahanu",
"value" : "Dahanu",
"geoCode" : {
"latitude" : "19.91",
"longitude" : "72.96"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalamb",
"value" : "Kalamb",
"geoCode" : {
"latitude" : "19.34",
"longitude" : "73.76"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhandardara",
"value" : "Bhandardara",
"geoCode" : {
"latitude" : "19.5",
"longitude" : "73.69"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jawhar",
"value" : "Jawhar",
"geoCode" : {
"latitude" : "19.9",
"longitude" : "73.21"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Junnar",
"value" : "Junnar",
"geoCode" : {
"latitude" : "19.2",
"longitude" : "73.85"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lavasa",
"value" : "Lavasa",
"geoCode" : {
"latitude" : "18.38",
"longitude" : "73.53"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Wakad",
"value" : "Wakad",
"geoCode" : {
"latitude" : "18.61",
"longitude" : "73.74"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hinjewadi",
"value" : "Hinjewadi",
"geoCode" : {
"latitude" : "18.591272",
"longitude" : "73.73891"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Alandi",
"value" : "Alandi",
"geoCode" : {
"latitude" : "18.683237",
"longitude" : "73.81564"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajgurunagar",
"value" : "Rajgurunagar",
"geoCode" : {
"latitude" : "18.85",
"longitude" : "73.88"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pimpri-Chinchwad",
"value" : "Pimpri-Chinchwad",
"geoCode" : {
"latitude" : "18.627777",
"longitude" : "73.81306"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Diveagar",
"value" : "Diveagar",
"geoCode" : {
"latitude" : "18.08",
"longitude" : "72.99"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pimpri",
"value" : "Pimpri",
"geoCode" : {
"latitude" : "18.600418",
"longitude" : "73.81765"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ozar",
"value" : "Ozar",
"geoCode" : {
"latitude" : "19.18",
"longitude" : "73.95"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Trimbak",
"value" : "Trimbak",
"geoCode" : {
"latitude" : "19.89",
"longitude" : "73.54"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narayangaon",
"value" : "Narayangaon",
"geoCode" : {
"latitude" : "19.106308",
"longitude" : "73.97428"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pune",
"value" : "Pune",
"geoCode" : {
"latitude" : "18.51957",
"longitude" : "73.85535"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahad",
"value" : "Mahad",
"geoCode" : {
"latitude" : "18.08",
"longitude" : "73.42"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Wagholi",
"value" : "Wagholi",
"geoCode" : {
"latitude" : "18.59013",
"longitude" : "73.997314"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Silvassa",
"value" : "Silvassa",
"geoCode" : {
"latitude" : "20.27386",
"longitude" : "72.99673"
},
"stateValue" : "Dadra And Nagar Haveli And Daman And Diu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Amli",
"value" : "Amli",
"geoCode" : {
"latitude" : "20.2756",
"longitude" : "73.00512"
},
"stateValue" : "Dadra And Nagar Haveli And Daman And Diu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gangapur",
"value" : "Gangapur",
"geoCode" : {
"latitude" : "20.007668",
"longitude" : "73.77073"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nashik",
"value" : "Nashik",
"geoCode" : {
"latitude" : "19.99727",
"longitude" : "73.79096"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Harnai",
"value" : "Harnai",
"geoCode" : {
"latitude" : "17.81",
"longitude" : "73.08"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vapi",
"value" : "Vapi",
"geoCode" : {
"latitude" : "20.37175",
"longitude" : "72.90493"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Saswad",
"value" : "Saswad",
"geoCode" : {
"latitude" : "18.33",
"longitude" : "74.02"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nighoj",
"value" : "Nighoj",
"geoCode" : {
"latitude" : "18.93",
"longitude" : "74.26"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Daman",
"value" : "Daman",
"geoCode" : {
"latitude" : "20.41431",
"longitude" : "72.83236"
},
"stateValue" : "Dadra And Nagar Haveli And Daman And Diu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sangamner",
"value" : "Sangamner",
"geoCode" : {
"latitude" : "19.572197",
"longitude" : "74.21031"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panchgani",
"value" : "Panchgani",
"geoCode" : {
"latitude" : "17.9",
"longitude" : "73.75"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Valsad",
"value" : "Valsad",
"geoCode" : {
"latitude" : "20.5",
"longitude" : "73.08333"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jejuri",
"value" : "Jejuri",
"geoCode" : {
"latitude" : "18.27",
"longitude" : "74.16"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dapoli",
"value" : "Dapoli",
"geoCode" : {
"latitude" : "17.64",
"longitude" : "73.14"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khed",
"value" : "Khed",
"geoCode" : {
"latitude" : "17.64",
"longitude" : "73.24"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Wai",
"value" : "Wai",
"geoCode" : {
"latitude" : "17.94",
"longitude" : "73.91"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shirdi",
"value" : "Shirdi",
"geoCode" : {
"latitude" : "18.48",
"longitude" : "74.37"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahabaleshwar",
"value" : "Mahabaleshwar",
"geoCode" : {
"latitude" : "17.56",
"longitude" : "73.4"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khandala",
"value" : "Khandala",
"geoCode" : {
"latitude" : "18.03",
"longitude" : "74.17"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chiplun",
"value" : "Chiplun",
"geoCode" : {
"latitude" : "17.53521",
"longitude" : "73.50999"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bilimora",
"value" : "Bilimora",
"geoCode" : {
"latitude" : "20.76",
"longitude" : "72.96"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rahuri",
"value" : "Rahuri",
"geoCode" : {
"latitude" : "19.395098",
"longitude" : "74.652084"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Guhagar",
"value" : "Guhagar",
"geoCode" : {
"latitude" : "17.39",
"longitude" : "73.21"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kopargaon",
"value" : "Kopargaon",
"geoCode" : {
"latitude" : "19.89",
"longitude" : "74.48"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Velneshwar",
"value" : "Velneshwar",
"geoCode" : {
"latitude" : "17.38",
"longitude" : "73.2"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shirgaon",
"value" : "Shirgaon",
"geoCode" : {
"latitude" : "17.54",
"longitude" : "73.75"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Satara",
"value" : "Satara",
"geoCode" : {
"latitude" : "17.68589",
"longitude" : "73.99333"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ahmednagar",
"value" : "Ahmednagar",
"geoCode" : {
"latitude" : "19.083334",
"longitude" : "74.73333"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ahilya Nagar",
"value" : "Ahilya Nagar",
"geoCode" : {
"latitude" : "19.094551",
"longitude" : "74.73341"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ahmadnagar",
"value" : "Ahmadnagar",
"geoCode" : {
"latitude" : "19.09457",
"longitude" : "74.73843"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Phaltan",
"value" : "Phaltan",
"geoCode" : {
"latitude" : "17.986254",
"longitude" : "74.436935"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Koregaon",
"value" : "Koregaon",
"geoCode" : {
"latitude" : "17.701035",
"longitude" : "74.16219"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baramati",
"value" : "Baramati",
"geoCode" : {
"latitude" : "18.15174",
"longitude" : "74.57767"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kamargaon",
"value" : "Kamargaon",
"geoCode" : {
"latitude" : "17.4",
"longitude" : "73.75"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Navsari",
"value" : "Navsari",
"geoCode" : {
"latitude" : "20.95",
"longitude" : "72.92"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Koynanagar",
"value" : "Koynanagar",
"geoCode" : {
"latitude" : "17.37",
"longitude" : "73.9"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ganpatipule",
"value" : "Ganpatipule",
"geoCode" : {
"latitude" : "17.11",
"longitude" : "73.27"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bardoli",
"value" : "Bardoli",
"geoCode" : {
"latitude" : "21.12297",
"longitude" : "73.11151"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Songadh",
"value" : "Songadh",
"geoCode" : {
"latitude" : "20.98",
"longitude" : "73.72"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vyara",
"value" : "Vyara",
"geoCode" : {
"latitude" : "21.11079",
"longitude" : "73.39365"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Surat",
"value" : "Surat",
"geoCode" : {
"latitude" : "21.17801",
"longitude" : "72.81189"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malegaon",
"value" : "Malegaon",
"geoCode" : {
"latitude" : "20.54966",
"longitude" : "74.53462"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Devrukh",
"value" : "Devrukh",
"geoCode" : {
"latitude" : "17.05",
"longitude" : "73.65"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ratnagiri",
"value" : "Ratnagiri",
"geoCode" : {
"latitude" : "17.0",
"longitude" : "73.5"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sangameshwar",
"value" : "Sangameshwar",
"geoCode" : {
"latitude" : "17.07",
"longitude" : "73.73"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karad",
"value" : "Karad",
"geoCode" : {
"latitude" : "17.28937",
"longitude" : "74.18183"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mundra",
"value" : "Mundra",
"geoCode" : {
"latitude" : "21.25",
"longitude" : "73.3"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shevgaon",
"value" : "Shevgaon",
"geoCode" : {
"latitude" : "19.350367",
"longitude" : "75.219376"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajpipla",
"value" : "Rajpipla",
"geoCode" : {
"latitude" : "21.31",
"longitude" : "72.72"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahuva",
"value" : "Mahuva",
"geoCode" : {
"latitude" : "21.08",
"longitude" : "71.76"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Akluj",
"value" : "Akluj",
"geoCode" : {
"latitude" : "17.8",
"longitude" : "74.92"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khuldabad",
"value" : "Khuldabad",
"geoCode" : {
"latitude" : "20.01",
"longitude" : "75.18"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Daulatabad",
"value" : "Daulatabad",
"geoCode" : {
"latitude" : "19.93611",
"longitude" : "75.22148"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajula",
"value" : "Rajula",
"geoCode" : {
"latitude" : "21.03854",
"longitude" : "71.44345"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shirala",
"value" : "Shirala",
"geoCode" : {
"latitude" : "16.983484",
"longitude" : "74.12555"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Islampur",
"value" : "Islampur",
"geoCode" : {
"latitude" : "17.04994",
"longitude" : "74.26524"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tasgaon",
"value" : "Tasgaon",
"geoCode" : {
"latitude" : "17.098425",
"longitude" : "74.38735"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dungarpur",
"value" : "Dungarpur",
"geoCode" : {
"latitude" : "21.28777",
"longitude" : "71.7556"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Diu",
"value" : "Diu",
"geoCode" : {
"latitude" : "20.72081",
"longitude" : "70.93989"
},
"stateValue" : "Dadra And Nagar Haveli And Daman And Diu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panhala",
"value" : "Panhala",
"geoCode" : {
"latitude" : "16.8",
"longitude" : "74.1"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhulia",
"value" : "Dhulia",
"geoCode" : {
"latitude" : "20.9013",
"longitude" : "74.77737"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhule",
"value" : "Dhule",
"geoCode" : {
"latitude" : "21.06852",
"longitude" : "74.58837"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ankleshwar",
"value" : "Ankleshwar",
"geoCode" : {
"latitude" : "21.63236",
"longitude" : "72.99001"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vadgaon",
"value" : "Vadgaon",
"geoCode" : {
"latitude" : "16.835627",
"longitude" : "74.31246"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bharuch",
"value" : "Bharuch",
"geoCode" : {
"latitude" : "21.69482",
"longitude" : "72.9805"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nandurbar",
"value" : "Nandurbar",
"geoCode" : {
"latitude" : "21.36766",
"longitude" : "74.24359"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palitana",
"value" : "Palitana",
"geoCode" : {
"latitude" : "21.49",
"longitude" : "71.77"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Virpur",
"value" : "Virpur",
"geoCode" : {
"latitude" : "21.53",
"longitude" : "71.83"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dahej",
"value" : "Dahej",
"geoCode" : {
"latitude" : "21.712868",
"longitude" : "72.65208"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sangli",
"value" : "Sangli",
"geoCode" : {
"latitude" : "17.11202",
"longitude" : "74.7699"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kolhapur",
"value" : "Kolhapur",
"geoCode" : {
"latitude" : "16.69013",
"longitude" : "74.22981"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pandharpur",
"value" : "Pandharpur",
"geoCode" : {
"latitude" : "17.67924",
"longitude" : "75.33098"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Beed",
"value" : "Beed",
"geoCode" : {
"latitude" : "18.98921",
"longitude" : "75.75634"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bid",
"value" : "Bid",
"geoCode" : {
"latitude" : "18.83333",
"longitude" : "75.75"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narmada",
"value" : "Narmada",
"geoCode" : {
"latitude" : "21.67",
"longitude" : "73.79"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhavnagar",
"value" : "Bhavnagar",
"geoCode" : {
"latitude" : "21.76287",
"longitude" : "72.15331"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barsi",
"value" : "Barsi",
"geoCode" : {
"latitude" : "18.23454",
"longitude" : "75.69275"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jaysingpur",
"value" : "Jaysingpur",
"geoCode" : {
"latitude" : "16.779844",
"longitude" : "74.55605"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barshi",
"value" : "Barshi",
"geoCode" : {
"latitude" : "18.233385",
"longitude" : "75.694145"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Solapur",
"value" : "Solapur",
"geoCode" : {
"latitude" : "17.75",
"longitude" : "75.5"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ichalkaranji",
"value" : "Ichalkaranji",
"geoCode" : {
"latitude" : "16.69117",
"longitude" : "74.46054"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Savarkundla",
"value" : "Savarkundla",
"geoCode" : {
"latitude" : "21.42",
"longitude" : "71.21"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kagal",
"value" : "Kagal",
"geoCode" : {
"latitude" : "16.588646",
"longitude" : "74.30855"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shahada",
"value" : "Shahada",
"geoCode" : {
"latitude" : "21.53",
"longitude" : "74.46"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhari",
"value" : "Dhari",
"geoCode" : {
"latitude" : "21.31",
"longitude" : "70.95"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Miraj",
"value" : "Miraj",
"geoCode" : {
"latitude" : "16.69",
"longitude" : "74.6"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mohol",
"value" : "Mohol",
"geoCode" : {
"latitude" : "17.809198",
"longitude" : "75.638245"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Amreli",
"value" : "Amreli",
"geoCode" : {
"latitude" : "21.50789",
"longitude" : "71.18323"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tal",
"value" : "Tal",
"geoCode" : {
"latitude" : "16.264748",
"longitude" : "73.70965"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalna",
"value" : "Jalna",
"geoCode" : {
"latitude" : "19.8",
"longitude" : "75.9"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Veraval",
"value" : "Veraval",
"geoCode" : {
"latitude" : "20.9077",
"longitude" : "70.36786"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kankavli",
"value" : "Kankavli",
"geoCode" : {
"latitude" : "16.17",
"longitude" : "73.69"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sinnar",
"value" : "Sinnar",
"geoCode" : {
"latitude" : "16.317434",
"longitude" : "74.13868"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kayavarohan",
"value" : "Kayavarohan",
"geoCode" : {
"latitude" : "22.08",
"longitude" : "73.24"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Soygaon",
"value" : "Soygaon",
"geoCode" : {
"latitude" : "20.59",
"longitude" : "75.72"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shirpur",
"value" : "Shirpur",
"geoCode" : {
"latitude" : "21.43",
"longitude" : "74.98"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Padra",
"value" : "Padra",
"geoCode" : {
"latitude" : "22.2398",
"longitude" : "73.08451"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalgaon",
"value" : "Jalgaon",
"geoCode" : {
"latitude" : "21.00292",
"longitude" : "75.56602"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kudal",
"value" : "Kudal",
"geoCode" : {
"latitude" : "15.97",
"longitude" : "73.68"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tuljapur",
"value" : "Tuljapur",
"geoCode" : {
"latitude" : "18.0",
"longitude" : "76.06"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gadhinglaj",
"value" : "Gadhinglaj",
"geoCode" : {
"latitude" : "16.12",
"longitude" : "74.2"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Osmanabad",
"value" : "Osmanabad",
"geoCode" : {
"latitude" : "18.25",
"longitude" : "76.16667"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Borsad",
"value" : "Borsad",
"geoCode" : {
"latitude" : "22.3",
"longitude" : "72.91"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Junagadh",
"value" : "Junagadh",
"geoCode" : {
"latitude" : "21.25",
"longitude" : "70.33333"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vadodara",
"value" : "Vadodara",
"geoCode" : {
"latitude" : "22.29941",
"longitude" : "73.20812"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khambhat",
"value" : "Khambhat",
"geoCode" : {
"latitude" : "22.31744",
"longitude" : "72.61916"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Belgaum",
"value" : "Belgaum",
"geoCode" : {
"latitude" : "16.33333",
"longitude" : "74.75"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malvan",
"value" : "Malvan",
"geoCode" : {
"latitude" : "15.86",
"longitude" : "73.62"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sindhudurg",
"value" : "Sindhudurg",
"geoCode" : {
"latitude" : "15.905263",
"longitude" : "73.82132"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Botad",
"value" : "Botad",
"geoCode" : {
"latitude" : "22.16917",
"longitude" : "71.66671"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Anand",
"value" : "Anand",
"geoCode" : {
"latitude" : "22.4",
"longitude" : "72.75"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ambajogai",
"value" : "Ambajogai",
"geoCode" : {
"latitude" : "18.73",
"longitude" : "76.41"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhusawal",
"value" : "Bhusawal",
"geoCode" : {
"latitude" : "21.05",
"longitude" : "75.77"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dabhoi",
"value" : "Dabhoi",
"geoCode" : {
"latitude" : "22.36",
"longitude" : "73.67"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Halol",
"value" : "Halol",
"geoCode" : {
"latitude" : "22.4",
"longitude" : "73.55"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vengurla",
"value" : "Vengurla",
"geoCode" : {
"latitude" : "15.74",
"longitude" : "73.65"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chhota Udepur",
"value" : "Chhota Udepur",
"geoCode" : {
"latitude" : "22.35",
"longitude" : "73.91"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jetpur",
"value" : "Jetpur",
"geoCode" : {
"latitude" : "21.75482",
"longitude" : "70.62347"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Buldhana",
"value" : "Buldhana",
"geoCode" : {
"latitude" : "20.53333",
"longitude" : "76.18333"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mehekar",
"value" : "Mehekar",
"geoCode" : {
"latitude" : "20.56",
"longitude" : "76.18"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gokak",
"value" : "Gokak",
"geoCode" : {
"latitude" : "16.16",
"longitude" : "74.81"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Parli Vaijnath",
"value" : "Parli Vaijnath",
"geoCode" : {
"latitude" : "18.85057",
"longitude" : "76.53163"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Champaner",
"value" : "Champaner",
"geoCode" : {
"latitude" : "22.48",
"longitude" : "73.52"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vallabh Vidyanagar",
"value" : "Vallabh Vidyanagar",
"geoCode" : {
"latitude" : "22.54",
"longitude" : "72.9"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karamsad",
"value" : "Karamsad",
"geoCode" : {
"latitude" : "22.54593",
"longitude" : "72.91362"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vijayapura",
"value" : "Vijayapura",
"geoCode" : {
"latitude" : "16.82",
"longitude" : "75.67"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gondal",
"value" : "Gondal",
"geoCode" : {
"latitude" : "21.96074",
"longitude" : "70.80255"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vijapur",
"value" : "Vijapur",
"geoCode" : {
"latitude" : "16.830172",
"longitude" : "75.71003"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sindagi",
"value" : "Sindagi",
"geoCode" : {
"latitude" : "16.83017",
"longitude" : "75.71003"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhoraji",
"value" : "Dhoraji",
"geoCode" : {
"latitude" : "21.73359",
"longitude" : "70.45004"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barwani",
"value" : "Barwani",
"geoCode" : {
"latitude" : "22.02485",
"longitude" : "74.91805"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pernem",
"value" : "Pernem",
"geoCode" : {
"latitude" : "15.65",
"longitude" : "73.72"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ausa",
"value" : "Ausa",
"geoCode" : {
"latitude" : "18.23",
"longitude" : "76.52"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lonar",
"value" : "Lonar",
"geoCode" : {
"latitude" : "19.98",
"longitude" : "76.53"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Morjim",
"value" : "Morjim",
"geoCode" : {
"latitude" : "15.61",
"longitude" : "73.73"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajpur",
"value" : "Rajpur",
"geoCode" : {
"latitude" : "21.94015",
"longitude" : "75.13557"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Belagavi",
"value" : "Belagavi",
"geoCode" : {
"latitude" : "15.8497",
"longitude" : "74.4977"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vagator",
"value" : "Vagator",
"geoCode" : {
"latitude" : "15.59",
"longitude" : "73.73"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panchmahal District",
"value" : "Panchmahal District",
"geoCode" : {
"latitude" : "22.60743",
"longitude" : "73.46004"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalol",
"value" : "Kalol",
"geoCode" : {
"latitude" : "22.60777",
"longitude" : "73.46272"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mapusa",
"value" : "Mapusa",
"geoCode" : {
"latitude" : "15.606042",
"longitude" : "73.824295"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Salon",
"value" : "Salon",
"geoCode" : {
"latitude" : "15.594748",
"longitude" : "73.812836"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mapuca",
"value" : "Mapuca",
"geoCode" : {
"latitude" : "15.58885",
"longitude" : "73.81455"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Aldona",
"value" : "Aldona",
"geoCode" : {
"latitude" : "15.58",
"longitude" : "73.87"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baga",
"value" : "Baga",
"geoCode" : {
"latitude" : "15.55",
"longitude" : "73.75"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nadiad",
"value" : "Nadiad",
"geoCode" : {
"latitude" : "22.69385",
"longitude" : "72.86157"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Saligao",
"value" : "Saligao",
"geoCode" : {
"latitude" : "15.55359",
"longitude" : "73.79036"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "North Goa",
"value" : "North Goa",
"geoCode" : {
"latitude" : "15.54608",
"longitude" : "73.76663"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mehkar",
"value" : "Mehkar",
"geoCode" : {
"latitude" : "20.15",
"longitude" : "76.56"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Limbdi",
"value" : "Limbdi",
"geoCode" : {
"latitude" : "22.56",
"longitude" : "71.77"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Buldana",
"value" : "Buldana",
"geoCode" : {
"latitude" : "20.58333",
"longitude" : "76.41667"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Candolim",
"value" : "Candolim",
"geoCode" : {
"latitude" : "15.51807",
"longitude" : "73.76259"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Porvorim",
"value" : "Porvorim",
"geoCode" : {
"latitude" : "15.51",
"longitude" : "73.82"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Parbhani",
"value" : "Parbhani",
"geoCode" : {
"latitude" : "19.5",
"longitude" : "76.75"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dakor",
"value" : "Dakor",
"geoCode" : {
"latitude" : "22.74",
"longitude" : "73.15"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kheda",
"value" : "Kheda",
"geoCode" : {
"latitude" : "22.75",
"longitude" : "72.83333"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sanquelim",
"value" : "Sanquelim",
"geoCode" : {
"latitude" : "15.55",
"longitude" : "74.02"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panaji",
"value" : "Panaji",
"geoCode" : {
"latitude" : "15.49574",
"longitude" : "73.82624"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panjim",
"value" : "Panjim",
"geoCode" : {
"latitude" : "15.49093",
"longitude" : "73.82785"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Goa",
"value" : "Goa",
"geoCode" : {
"latitude" : "15.501984",
"longitude" : "73.91"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chotila",
"value" : "Chotila",
"geoCode" : {
"latitude" : "22.424833",
"longitude" : "71.19621"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dona Paula",
"value" : "Dona Paula",
"geoCode" : {
"latitude" : "15.45",
"longitude" : "73.8"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bambolim",
"value" : "Bambolim",
"geoCode" : {
"latitude" : "15.44",
"longitude" : "73.85"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahemdavad",
"value" : "Mahemdavad",
"geoCode" : {
"latitude" : "22.82163",
"longitude" : "72.7631"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Goa Velha",
"value" : "Goa Velha",
"geoCode" : {
"latitude" : "15.44384",
"longitude" : "73.88572"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khargone",
"value" : "Khargone",
"geoCode" : {
"latitude" : "21.82306",
"longitude" : "75.61028"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Godhra",
"value" : "Godhra",
"geoCode" : {
"latitude" : "22.77547",
"longitude" : "73.61488"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Latur",
"value" : "Latur",
"geoCode" : {
"latitude" : "18.4",
"longitude" : "76.8"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajkot",
"value" : "Rajkot",
"geoCode" : {
"latitude" : "22.33333",
"longitude" : "70.83333"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vasco Da Gama",
"value" : "Vasco Da Gama",
"geoCode" : {
"latitude" : "15.39585",
"longitude" : "73.81568"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mormugao",
"value" : "Mormugao",
"geoCode" : {
"latitude" : "15.38914",
"longitude" : "73.81491"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dabolim",
"value" : "Dabolim",
"geoCode" : {
"latitude" : "15.390381",
"longitude" : "73.85855"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cortalim",
"value" : "Cortalim",
"geoCode" : {
"latitude" : "15.4",
"longitude" : "73.9"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chicalim",
"value" : "Chicalim",
"geoCode" : {
"latitude" : "15.38",
"longitude" : "73.86"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ponda",
"value" : "Ponda",
"geoCode" : {
"latitude" : "15.40341",
"longitude" : "74.01519"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Surendranagar",
"value" : "Surendranagar",
"geoCode" : {
"latitude" : "22.72706",
"longitude" : "71.64856"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sanand",
"value" : "Sanand",
"geoCode" : {
"latitude" : "22.83",
"longitude" : "72.07"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thangadh",
"value" : "Thangadh",
"geoCode" : {
"latitude" : "22.59",
"longitude" : "71.21"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Burhanpur",
"value" : "Burhanpur",
"geoCode" : {
"latitude" : "21.31",
"longitude" : "76.23"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Piplod",
"value" : "Piplod",
"geoCode" : {
"latitude" : "22.81",
"longitude" : "73.91"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhrangadhra",
"value" : "Dhrangadhra",
"geoCode" : {
"latitude" : "22.773893",
"longitude" : "71.667336"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kadi",
"value" : "Kadi",
"geoCode" : {
"latitude" : "22.9",
"longitude" : "72.23"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jodhpur",
"value" : "Jodhpur",
"geoCode" : {
"latitude" : "21.90174",
"longitude" : "70.0327"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balasinor",
"value" : "Balasinor",
"geoCode" : {
"latitude" : "22.95",
"longitude" : "73.33"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raia",
"value" : "Raia",
"geoCode" : {
"latitude" : "15.31",
"longitude" : "73.98"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Madgaon",
"value" : "Madgaon",
"geoCode" : {
"latitude" : "15.27501",
"longitude" : "73.95786"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hingoli",
"value" : "Hingoli",
"geoCode" : {
"latitude" : "19.49",
"longitude" : "77.03"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Colva",
"value" : "Colva",
"geoCode" : {
"latitude" : "15.26",
"longitude" : "73.91"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Margao",
"value" : "Margao",
"geoCode" : {
"latitude" : "15.271918",
"longitude" : "73.959404"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shegaon",
"value" : "Shegaon",
"geoCode" : {
"latitude" : "20.77",
"longitude" : "76.67"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sanvordem",
"value" : "Sanvordem",
"geoCode" : {
"latitude" : "15.32",
"longitude" : "74.16"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Saundatti",
"value" : "Saundatti",
"geoCode" : {
"latitude" : "15.75",
"longitude" : "75.12"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Calangute",
"value" : "Calangute",
"geoCode" : {
"latitude" : "15.26",
"longitude" : "73.98"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Modasa",
"value" : "Modasa",
"geoCode" : {
"latitude" : "23.02251",
"longitude" : "72.57136"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ahmedabad",
"value" : "Ahmedabad",
"geoCode" : {
"latitude" : "23.02579",
"longitude" : "72.58727"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dahod",
"value" : "Dahod",
"geoCode" : {
"latitude" : "22.83576",
"longitude" : "74.25586"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Benaulim",
"value" : "Benaulim",
"geoCode" : {
"latitude" : "15.23",
"longitude" : "73.95"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Wankaner",
"value" : "Wankaner",
"geoCode" : {
"latitude" : "22.61",
"longitude" : "70.93"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chandor",
"value" : "Chandor",
"geoCode" : {
"latitude" : "15.24",
"longitude" : "74.03"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Varca",
"value" : "Varca",
"geoCode" : {
"latitude" : "15.2",
"longitude" : "73.93"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sancoale",
"value" : "Sancoale",
"geoCode" : {
"latitude" : "15.21",
"longitude" : "73.97"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Porbandar",
"value" : "Porbandar",
"geoCode" : {
"latitude" : "21.64219",
"longitude" : "69.60929"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Maheshwar",
"value" : "Maheshwar",
"geoCode" : {
"latitude" : "22.17592",
"longitude" : "75.58715"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jhabua",
"value" : "Jhabua",
"geoCode" : {
"latitude" : "22.76772",
"longitude" : "74.59087"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Quepem",
"value" : "Quepem",
"geoCode" : {
"latitude" : "15.21",
"longitude" : "74.07"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cuncolim",
"value" : "Cuncolim",
"geoCode" : {
"latitude" : "15.17",
"longitude" : "73.99"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "South Goa",
"value" : "South Goa",
"geoCode" : {
"latitude" : "15.20425",
"longitude" : "74.16733"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udgir",
"value" : "Udgir",
"geoCode" : {
"latitude" : "18.389229",
"longitude" : "77.12351"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hubli",
"value" : "Hubli",
"geoCode" : {
"latitude" : "15.34776",
"longitude" : "71.1"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arambol",
"value" : "Arambol",
"geoCode" : {
"latitude" : "15.11",
"longitude" : "74.0"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cavelossim",
"value" : "Cavelossim",
"geoCode" : {
"latitude" : "15.08",
"longitude" : "73.92"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Badami",
"value" : "Badami",
"geoCode" : {
"latitude" : "15.91495",
"longitude" : "75.67683"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gandhinagar",
"value" : "Gandhinagar",
"geoCode" : {
"latitude" : "23.21667",
"longitude" : "72.68333"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hubli-Dharwad",
"value" : "Hubli-Dharwad",
"geoCode" : {
"latitude" : "15.45557",
"longitude" : "75.01068"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dandeli",
"value" : "Dandeli",
"geoCode" : {
"latitude" : "15.26667",
"longitude" : "74.61667"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bayad",
"value" : "Bayad",
"geoCode" : {
"latitude" : "23.22335",
"longitude" : "73.21457"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sanawad",
"value" : "Sanawad",
"geoCode" : {
"latitude" : "22.17",
"longitude" : "75.87"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sanguem",
"value" : "Sanguem",
"geoCode" : {
"latitude" : "15.09",
"longitude" : "74.21"
},
"stateValue" : "Goa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhar",
"value" : "Dhar",
"geoCode" : {
"latitude" : "22.59373",
"longitude" : "75.29774"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bagalkot",
"value" : "Bagalkot",
"geoCode" : {
"latitude" : "16.01",
"longitude" : "75.88"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Morbi",
"value" : "Morbi",
"geoCode" : {
"latitude" : "22.81731",
"longitude" : "70.8377"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Washim",
"value" : "Washim",
"geoCode" : {
"latitude" : "20.2",
"longitude" : "77.2"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khandwa",
"value" : "Khandwa",
"geoCode" : {
"latitude" : "21.82427",
"longitude" : "76.35086"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Canacona",
"value" : "Canacona",
"geoCode" : {
"latitude" : "14.96",
"longitude" : "74.04"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Akola",
"value" : "Akola",
"geoCode" : {
"latitude" : "20.5",
"longitude" : "77.16667"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hublidharwad",
"value" : "Hublidharwad",
"geoCode" : {
"latitude" : "15.364726",
"longitude" : "75.12447"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharwad",
"value" : "Dharwad",
"geoCode" : {
"latitude" : "15.37",
"longitude" : "75.14"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jamnagar",
"value" : "Jamnagar",
"geoCode" : {
"latitude" : "22.47292",
"longitude" : "70.06673"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Yadgir",
"value" : "Yadgir",
"geoCode" : {
"latitude" : "16.17",
"longitude" : "76.22"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bidar",
"value" : "Bidar",
"geoCode" : {
"latitude" : "18.08333",
"longitude" : "77.33333"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Prantij",
"value" : "Prantij",
"geoCode" : {
"latitude" : "23.43",
"longitude" : "72.85"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nanded",
"value" : "Nanded",
"geoCode" : {
"latitude" : "18.91667",
"longitude" : "77.5"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pithampur",
"value" : "Pithampur",
"geoCode" : {
"latitude" : "22.59",
"longitude" : "75.69"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karwar",
"value" : "Karwar",
"geoCode" : {
"latitude" : "14.81361",
"longitude" : "74.12972"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gulbarga",
"value" : "Gulbarga",
"geoCode" : {
"latitude" : "17.16667",
"longitude" : "77.08333"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gadag",
"value" : "Gadag",
"geoCode" : {
"latitude" : "15.49835",
"longitude" : "75.65187"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Himmatnagar",
"value" : "Himmatnagar",
"geoCode" : {
"latitude" : "23.52",
"longitude" : "72.94"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Indore",
"value" : "Indore",
"geoCode" : {
"latitude" : "22.66667",
"longitude" : "75.75"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Uttar Kannada",
"value" : "Uttar Kannada",
"geoCode" : {
"latitude" : "14.88333",
"longitude" : "74.58333"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Himatnagar",
"value" : "Himatnagar",
"geoCode" : {
"latitude" : "23.59893",
"longitude" : "72.96602"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sabarkantha",
"value" : "Sabarkantha",
"geoCode" : {
"latitude" : "23.60502",
"longitude" : "72.96198"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karanja",
"value" : "Karanja",
"geoCode" : {
"latitude" : "20.47",
"longitude" : "77.47"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mehsana",
"value" : "Mehsana",
"geoCode" : {
"latitude" : "23.6",
"longitude" : "72.4"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Yellapur",
"value" : "Yellapur",
"geoCode" : {
"latitude" : "14.84",
"longitude" : "74.71"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahesana",
"value" : "Mahesana",
"geoCode" : {
"latitude" : "23.66667",
"longitude" : "72.5"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mangalam",
"value" : "Mangalam",
"geoCode" : {
"latitude" : "22.735462",
"longitude" : "75.90736"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ankola",
"value" : "Ankola",
"geoCode" : {
"latitude" : "14.65",
"longitude" : "74.31"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shiggaon",
"value" : "Shiggaon",
"geoCode" : {
"latitude" : "14.99",
"longitude" : "75.21"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Banswara",
"value" : "Banswara",
"geoCode" : {
"latitude" : "23.52",
"longitude" : "74.34"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kandla",
"value" : "Kandla",
"geoCode" : {
"latitude" : "23.03333",
"longitude" : "70.21667"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ratlam",
"value" : "Ratlam",
"geoCode" : {
"latitude" : "23.33033",
"longitude" : "75.04032"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vadnagar",
"value" : "Vadnagar",
"geoCode" : {
"latitude" : "23.78",
"longitude" : "72.63"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Idar",
"value" : "Idar",
"geoCode" : {
"latitude" : "23.82",
"longitude" : "73.0"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Unjha",
"value" : "Unjha",
"geoCode" : {
"latitude" : "23.8",
"longitude" : "72.38"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gandhidham",
"value" : "Gandhidham",
"geoCode" : {
"latitude" : "23.08333",
"longitude" : "70.13333"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Koppal",
"value" : "Koppal",
"geoCode" : {
"latitude" : "15.5",
"longitude" : "76.2"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raichur",
"value" : "Raichur",
"geoCode" : {
"latitude" : "16.16",
"longitude" : "76.91"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gokarna",
"value" : "Gokarna",
"geoCode" : {
"latitude" : "14.48",
"longitude" : "74.41"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sirsi",
"value" : "Sirsi",
"geoCode" : {
"latitude" : "14.62072",
"longitude" : "74.83554"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Anjar",
"value" : "Anjar",
"geoCode" : {
"latitude" : "23.11072",
"longitude" : "70.02941"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dwarka",
"value" : "Dwarka",
"geoCode" : {
"latitude" : "22.23944",
"longitude" : "68.96778"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandu",
"value" : "Mandu",
"geoCode" : {
"latitude" : "22.963297",
"longitude" : "76.04685"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kumta",
"value" : "Kumta",
"geoCode" : {
"latitude" : "14.41",
"longitude" : "74.43"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Okha",
"value" : "Okha",
"geoCode" : {
"latitude" : "22.46756",
"longitude" : "69.07002"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Amravati",
"value" : "Amravati",
"geoCode" : {
"latitude" : "20.93333",
"longitude" : "77.75"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haveri",
"value" : "Haveri",
"geoCode" : {
"latitude" : "14.73732",
"longitude" : "75.41062"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dewas",
"value" : "Dewas",
"geoCode" : {
"latitude" : "23.0",
"longitude" : "76.16667"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ujjain",
"value" : "Ujjain",
"geoCode" : {
"latitude" : "23.41667",
"longitude" : "75.5"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandvi",
"value" : "Mandvi",
"geoCode" : {
"latitude" : "22.83282",
"longitude" : "69.35237"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Honavar",
"value" : "Honavar",
"geoCode" : {
"latitude" : "14.28088",
"longitude" : "74.44497"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chanderi",
"value" : "Chanderi",
"geoCode" : {
"latitude" : "22.97",
"longitude" : "76.34"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hospet",
"value" : "Hospet",
"geoCode" : {
"latitude" : "15.26954",
"longitude" : "76.3871"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Harda",
"value" : "Harda",
"geoCode" : {
"latitude" : "22.335121",
"longitude" : "77.05645"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nizamabad",
"value" : "Nizamabad",
"geoCode" : {
"latitude" : "18.75",
"longitude" : "78.25"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gangavathi",
"value" : "Gangavathi",
"geoCode" : {
"latitude" : "15.33",
"longitude" : "76.5"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Honnavar",
"value" : "Honnavar",
"geoCode" : {
"latitude" : "14.2",
"longitude" : "74.47"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hosapete",
"value" : "Hosapete",
"geoCode" : {
"latitude" : "15.23",
"longitude" : "76.4"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palanpur",
"value" : "Palanpur",
"geoCode" : {
"latitude" : "24.17128",
"longitude" : "72.43827"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vikarabad",
"value" : "Vikarabad",
"geoCode" : {
"latitude" : "17.3",
"longitude" : "77.96"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhuj",
"value" : "Bhuj",
"geoCode" : {
"latitude" : "23.25397",
"longitude" : "69.66928"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sangareddi",
"value" : "Sangareddi",
"geoCode" : {
"latitude" : "17.62477",
"longitude" : "78.08669"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nirmal",
"value" : "Nirmal",
"geoCode" : {
"latitude" : "19.09685",
"longitude" : "78.34407"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ranebennuru",
"value" : "Ranebennuru",
"geoCode" : {
"latitude" : "14.63",
"longitude" : "75.68"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kamareddy",
"value" : "Kamareddy",
"geoCode" : {
"latitude" : "18.32567",
"longitude" : "78.33416"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahbubnagar",
"value" : "Mahbubnagar",
"geoCode" : {
"latitude" : "16.63171",
"longitude" : "77.75556"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kachchh",
"value" : "Kachchh",
"geoCode" : {
"latitude" : "23.58333",
"longitude" : "70.0"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kannod",
"value" : "Kannod",
"geoCode" : {
"latitude" : "22.921175",
"longitude" : "76.7194"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ballari",
"value" : "Ballari",
"geoCode" : {
"latitude" : "15.15",
"longitude" : "76.55"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Medak",
"value" : "Medak",
"geoCode" : {
"latitude" : "17.75",
"longitude" : "78.25"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Yavatmal",
"value" : "Yavatmal",
"geoCode" : {
"latitude" : "20.15",
"longitude" : "78.35"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pratapgarh",
"value" : "Pratapgarh",
"geoCode" : {
"latitude" : "24.03",
"longitude" : "74.78"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sagar",
"value" : "Sagar",
"geoCode" : {
"latitude" : "14.16498",
"longitude" : "75.02901"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udaipur",
"value" : "Udaipur",
"geoCode" : {
"latitude" : "24.33",
"longitude" : "73.77"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ashta",
"value" : "Ashta",
"geoCode" : {
"latitude" : "23.018047",
"longitude" : "76.71597"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhatkal",
"value" : "Bhatkal",
"geoCode" : {
"latitude" : "13.98534",
"longitude" : "74.55531"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Harihar",
"value" : "Harihar",
"geoCode" : {
"latitude" : "14.51",
"longitude" : "75.8"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Abu Road",
"value" : "Abu Road",
"geoCode" : {
"latitude" : "24.42",
"longitude" : "72.69"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Adilabad",
"value" : "Adilabad",
"geoCode" : {
"latitude" : "19.676567",
"longitude" : "78.53208"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Serilingampalle",
"value" : "Serilingampalle",
"geoCode" : {
"latitude" : "17.49313",
"longitude" : "78.30196"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Betul",
"value" : "Betul",
"geoCode" : {
"latitude" : "21.83333",
"longitude" : "77.83333"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bamora",
"value" : "Bamora",
"geoCode" : {
"latitude" : "24.38",
"longitude" : "74.05"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Adoni",
"value" : "Adoni",
"geoCode" : {
"latitude" : "15.62788",
"longitude" : "77.27495"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shajapur",
"value" : "Shajapur",
"geoCode" : {
"latitude" : "23.5",
"longitude" : "76.25"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kutch District",
"value" : "Kutch District",
"geoCode" : {
"latitude" : "23.733732",
"longitude" : "69.85974"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Davangere",
"value" : "Davangere",
"geoCode" : {
"latitude" : "14.460957",
"longitude" : "75.91009"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Davanagere",
"value" : "Davanagere",
"geoCode" : {
"latitude" : "14.43",
"longitude" : "75.9"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rangareddi",
"value" : "Rangareddi",
"geoCode" : {
"latitude" : "17.4947",
"longitude" : "78.39857"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shimoga",
"value" : "Shimoga",
"geoCode" : {
"latitude" : "14.05",
"longitude" : "75.16"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gadwal",
"value" : "Gadwal",
"geoCode" : {
"latitude" : "16.236176",
"longitude" : "77.8047"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kukatpalli",
"value" : "Kukatpalli",
"geoCode" : {
"latitude" : "17.48486",
"longitude" : "78.41376"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kothi",
"value" : "Kothi",
"geoCode" : {
"latitude" : "21.915817",
"longitude" : "77.900314"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Medchal",
"value" : "Medchal",
"geoCode" : {
"latitude" : "17.62972",
"longitude" : "78.48139"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Medchal Malkajgiri",
"value" : "Medchal Malkajgiri",
"geoCode" : {
"latitude" : "17.50417",
"longitude" : "78.44393"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Honnali",
"value" : "Honnali",
"geoCode" : {
"latitude" : "14.23976",
"longitude" : "75.64507"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bellary",
"value" : "Bellary",
"geoCode" : {
"latitude" : "15.14205",
"longitude" : "76.92398"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Abu",
"value" : "Abu",
"geoCode" : {
"latitude" : "24.59365",
"longitude" : "72.71756"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tenali",
"value" : "Tenali",
"geoCode" : {
"latitude" : "17.531977",
"longitude" : "78.48782"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hyderabad",
"value" : "Hyderabad",
"geoCode" : {
"latitude" : "17.38405",
"longitude" : "78.45636"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalore",
"value" : "Jalore",
"geoCode" : {
"latitude" : "24.54",
"longitude" : "71.69"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hampi",
"value" : "Hampi",
"geoCode" : {
"latitude" : "14.99",
"longitude" : "76.88"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Secunderabad",
"value" : "Secunderabad",
"geoCode" : {
"latitude" : "17.50427",
"longitude" : "78.54263"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malkajgiri",
"value" : "Malkajgiri",
"geoCode" : {
"latitude" : "17.44781",
"longitude" : "78.52633"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sarangpur",
"value" : "Sarangpur",
"geoCode" : {
"latitude" : "23.56651",
"longitude" : "76.47306"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Wardha",
"value" : "Wardha",
"geoCode" : {
"latitude" : "20.73933",
"longitude" : "78.59784"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chittaurgarh",
"value" : "Chittaurgarh",
"geoCode" : {
"latitude" : "24.5",
"longitude" : "74.5"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lal Bahadur Nagar",
"value" : "Lal Bahadur Nagar",
"geoCode" : {
"latitude" : "17.34769",
"longitude" : "78.55757"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sevagram",
"value" : "Sevagram",
"geoCode" : {
"latitude" : "20.73499",
"longitude" : "78.66257"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sehore",
"value" : "Sehore",
"geoCode" : {
"latitude" : "23.2",
"longitude" : "77.08333"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandsaur",
"value" : "Mandsaur",
"geoCode" : {
"latitude" : "24.33333",
"longitude" : "75.25"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Neemuch",
"value" : "Neemuch",
"geoCode" : {
"latitude" : "24.47",
"longitude" : "74.87"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jagtial",
"value" : "Jagtial",
"geoCode" : {
"latitude" : "18.79473",
"longitude" : "78.91661"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shivamogga",
"value" : "Shivamogga",
"geoCode" : {
"latitude" : "13.95",
"longitude" : "75.57"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Siddipet",
"value" : "Siddipet",
"geoCode" : {
"latitude" : "18.10483",
"longitude" : "78.84858"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajsamand",
"value" : "Rajsamand",
"geoCode" : {
"latitude" : "24.77",
"longitude" : "73.74"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sirohi",
"value" : "Sirohi",
"geoCode" : {
"latitude" : "24.83333",
"longitude" : "72.75"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Itarsi",
"value" : "Itarsi",
"geoCode" : {
"latitude" : "22.61477",
"longitude" : "77.76222"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nagarkurnool",
"value" : "Nagarkurnool",
"geoCode" : {
"latitude" : "16.485487",
"longitude" : "78.31726"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Guntakal Junction",
"value" : "Guntakal Junction",
"geoCode" : {
"latitude" : "15.17112",
"longitude" : "77.36244"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pachmarhi",
"value" : "Pachmarhi",
"geoCode" : {
"latitude" : "22.7519",
"longitude" : "77.72887"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhadravati",
"value" : "Bhadravati",
"geoCode" : {
"latitude" : "13.84846",
"longitude" : "75.70502"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udupi",
"value" : "Udupi",
"geoCode" : {
"latitude" : "13.5",
"longitude" : "74.87"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhuvanagiri",
"value" : "Bhuvanagiri",
"geoCode" : {
"latitude" : "17.50777",
"longitude" : "78.88021"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhongir",
"value" : "Bhongir",
"geoCode" : {
"latitude" : "17.507769",
"longitude" : "78.88021"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hoshangabad",
"value" : "Hoshangabad",
"geoCode" : {
"latitude" : "22.58827",
"longitude" : "77.98887"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nathdwara",
"value" : "Nathdwara",
"geoCode" : {
"latitude" : "24.93805",
"longitude" : "73.82392"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhopal",
"value" : "Bhopal",
"geoCode" : {
"latitude" : "23.25469",
"longitude" : "77.40289"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhinmal",
"value" : "Bhinmal",
"geoCode" : {
"latitude" : "24.99",
"longitude" : "72.26"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chittorgarh",
"value" : "Chittorgarh",
"geoCode" : {
"latitude" : "24.82",
"longitude" : "74.58"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Berasia",
"value" : "Berasia",
"geoCode" : {
"latitude" : "23.3025",
"longitude" : "77.40429"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chitradurga",
"value" : "Chitradurga",
"geoCode" : {
"latitude" : "14.2",
"longitude" : "76.5"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malpe",
"value" : "Malpe",
"geoCode" : {
"latitude" : "13.35",
"longitude" : "74.7"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Manipal",
"value" : "Manipal",
"geoCode" : {
"latitude" : "13.33928",
"longitude" : "74.79084"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Koppa",
"value" : "Koppa",
"geoCode" : {
"latitude" : "13.53",
"longitude" : "75.36"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karimnagar",
"value" : "Karimnagar",
"geoCode" : {
"latitude" : "18.33844",
"longitude" : "79.22938"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sadri",
"value" : "Sadri",
"geoCode" : {
"latitude" : "25.11",
"longitude" : "73.47"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narsinghgarh",
"value" : "Narsinghgarh",
"geoCode" : {
"latitude" : "23.70758",
"longitude" : "77.09319"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lakhpat",
"value" : "Lakhpat",
"geoCode" : {
"latitude" : "23.82",
"longitude" : "68.77"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jangaon",
"value" : "Jangaon",
"geoCode" : {
"latitude" : "17.72378",
"longitude" : "79.17057"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Durgapur",
"value" : "Durgapur",
"geoCode" : {
"latitude" : "20.0054",
"longitude" : "79.30273"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Byndoor",
"value" : "Byndoor",
"geoCode" : {
"latitude" : "13.2",
"longitude" : "74.74"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nagpur",
"value" : "Nagpur",
"geoCode" : {
"latitude" : "21.14631",
"longitude" : "79.08491"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mancheral",
"value" : "Mancheral",
"geoCode" : {
"latitude" : "18.875492",
"longitude" : "79.44695"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Devarkonda",
"value" : "Devarkonda",
"geoCode" : {
"latitude" : "16.69186",
"longitude" : "78.92073"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sultanpur",
"value" : "Sultanpur",
"geoCode" : {
"latitude" : "23.13812",
"longitude" : "77.93404"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sanchi",
"value" : "Sanchi",
"geoCode" : {
"latitude" : "23.47",
"longitude" : "77.63"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sringeri",
"value" : "Sringeri",
"geoCode" : {
"latitude" : "13.23",
"longitude" : "75.17"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ramagundam",
"value" : "Ramagundam",
"geoCode" : {
"latitude" : "18.755",
"longitude" : "79.474"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kurnool",
"value" : "Kurnool",
"geoCode" : {
"latitude" : "15.58333",
"longitude" : "78.33333"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Anantapur",
"value" : "Anantapur",
"geoCode" : {
"latitude" : "14.55",
"longitude" : "77.41667"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chandrapur",
"value" : "Chandrapur",
"geoCode" : {
"latitude" : "20.11793",
"longitude" : "79.44377"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalor",
"value" : "Jalor",
"geoCode" : {
"latitude" : "25.34558",
"longitude" : "72.61559"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kadur",
"value" : "Kadur",
"geoCode" : {
"latitude" : "13.54",
"longitude" : "76.02"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jhalawar",
"value" : "Jhalawar",
"geoCode" : {
"latitude" : "24.59633",
"longitude" : "76.16499"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karkala",
"value" : "Karkala",
"geoCode" : {
"latitude" : "13.06",
"longitude" : "74.99"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rawatbhata",
"value" : "Rawatbhata",
"geoCode" : {
"latitude" : "24.91",
"longitude" : "75.58"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raisen",
"value" : "Raisen",
"geoCode" : {
"latitude" : "23.25",
"longitude" : "78.08333"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chhindwara",
"value" : "Chhindwara",
"geoCode" : {
"latitude" : "22.05697",
"longitude" : "78.93958"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hanamkonda",
"value" : "Hanamkonda",
"geoCode" : {
"latitude" : "18.007235",
"longitude" : "79.558395"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tadipatri",
"value" : "Tadipatri",
"geoCode" : {
"latitude" : "14.908236",
"longitude" : "78.010475"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nandyal",
"value" : "Nandyal",
"geoCode" : {
"latitude" : "15.483729",
"longitude" : "78.48327"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mangalore",
"value" : "Mangalore",
"geoCode" : {
"latitude" : "12.91723",
"longitude" : "74.85603"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ghatkesar",
"value" : "Ghatkesar",
"geoCode" : {
"latitude" : "17.9689",
"longitude" : "79.594055"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ramtek",
"value" : "Ramtek",
"geoCode" : {
"latitude" : "21.37",
"longitude" : "79.39"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bantwal",
"value" : "Bantwal",
"geoCode" : {
"latitude" : "12.88052",
"longitude" : "75.02363"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nalgonda",
"value" : "Nalgonda",
"geoCode" : {
"latitude" : "17.16667",
"longitude" : "79.5"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharmavaram",
"value" : "Dharmavaram",
"geoCode" : {
"latitude" : "14.38",
"longitude" : "77.69"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahabubabad",
"value" : "Mahabubabad",
"geoCode" : {
"latitude" : "17.5918",
"longitude" : "79.64946"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chikmagalur",
"value" : "Chikmagalur",
"geoCode" : {
"latitude" : "13.01",
"longitude" : "75.62"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhilwara",
"value" : "Bhilwara",
"geoCode" : {
"latitude" : "25.5",
"longitude" : "74.75"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Warangal",
"value" : "Warangal",
"geoCode" : {
"latitude" : "18.0",
"longitude" : "79.83333"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Suriapet",
"value" : "Suriapet",
"geoCode" : {
"latitude" : "17.14054",
"longitude" : "79.62045"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Brahmapuri",
"value" : "Brahmapuri",
"geoCode" : {
"latitude" : "20.6084",
"longitude" : "79.8559"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balotra",
"value" : "Balotra",
"geoCode" : {
"latitude" : "25.79",
"longitude" : "72.17"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Macherla",
"value" : "Macherla",
"geoCode" : {
"latitude" : "16.4779",
"longitude" : "79.4377"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tiptur",
"value" : "Tiptur",
"geoCode" : {
"latitude" : "13.2563",
"longitude" : "76.47768"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Guna",
"value" : "Guna",
"geoCode" : {
"latitude" : "24.55464",
"longitude" : "77.20082"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vidisha",
"value" : "Vidisha",
"geoCode" : {
"latitude" : "23.91667",
"longitude" : "78.0"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barmer",
"value" : "Barmer",
"geoCode" : {
"latitude" : "25.75",
"longitude" : "71.5"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Puttaparthi",
"value" : "Puttaparthi",
"geoCode" : {
"latitude" : "14.1",
"longitude" : "77.77"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tumkur",
"value" : "Tumkur",
"geoCode" : {
"latitude" : "13.5",
"longitude" : "77.0"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hassan",
"value" : "Hassan",
"geoCode" : {
"latitude" : "12.95",
"longitude" : "76.08333"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bundi",
"value" : "Bundi",
"geoCode" : {
"latitude" : "25.43855",
"longitude" : "75.63735"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hindupur",
"value" : "Hindupur",
"geoCode" : {
"latitude" : "13.82807",
"longitude" : "77.49143"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baran",
"value" : "Baran",
"geoCode" : {
"latitude" : "25.09",
"longitude" : "76.5"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Yellandu",
"value" : "Yellandu",
"geoCode" : {
"latitude" : "17.595297",
"longitude" : "80.00522"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Proddatur",
"value" : "Proddatur",
"geoCode" : {
"latitude" : "14.7502",
"longitude" : "78.54813"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sakleshpur",
"value" : "Sakleshpur",
"geoCode" : {
"latitude" : "12.66",
"longitude" : "75.68"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kodlipet",
"value" : "Kodlipet",
"geoCode" : {
"latitude" : "12.72",
"longitude" : "75.89"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhandara",
"value" : "Bhandara",
"geoCode" : {
"latitude" : "21.18333",
"longitude" : "80.0"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narsimhapur",
"value" : "Narsimhapur",
"geoCode" : {
"latitude" : "22.91667",
"longitude" : "79.16667"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barghat",
"value" : "Barghat",
"geoCode" : {
"latitude" : "22.05943",
"longitude" : "79.66523"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Channarayapatna",
"value" : "Channarayapatna",
"geoCode" : {
"latitude" : "12.90428",
"longitude" : "76.38883"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tumakuru",
"value" : "Tumakuru",
"geoCode" : {
"latitude" : "13.3379",
"longitude" : "77.1173"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kasaragod District",
"value" : "Kasaragod District",
"geoCode" : {
"latitude" : "12.328525",
"longitude" : "75.08273"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kadiri",
"value" : "Kadiri",
"geoCode" : {
"latitude" : "14.11376",
"longitude" : "78.16107"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bagepalli",
"value" : "Bagepalli",
"geoCode" : {
"latitude" : "13.78338",
"longitude" : "77.79667"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ashoknagar",
"value" : "Ashoknagar",
"geoCode" : {
"latitude" : "24.56",
"longitude" : "77.73"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kanhangad",
"value" : "Kanhangad",
"geoCode" : {
"latitude" : "12.3",
"longitude" : "75.09"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Belur",
"value" : "Belur",
"geoCode" : {
"latitude" : "12.55",
"longitude" : "75.85"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Beawar",
"value" : "Beawar",
"geoCode" : {
"latitude" : "26.10119",
"longitude" : "74.32028"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kadapa",
"value" : "Kadapa",
"geoCode" : {
"latitude" : "14.32",
"longitude" : "78.48"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Madikeri",
"value" : "Madikeri",
"geoCode" : {
"latitude" : "12.42602",
"longitude" : "75.7382"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Suntikoppa",
"value" : "Suntikoppa",
"geoCode" : {
"latitude" : "12.41",
"longitude" : "75.8"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kasaragod",
"value" : "Kasaragod",
"geoCode" : {
"latitude" : "12.17",
"longitude" : "75.13"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kunigal",
"value" : "Kunigal",
"geoCode" : {
"latitude" : "13.02",
"longitude" : "77.03"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khammam",
"value" : "Khammam",
"geoCode" : {
"latitude" : "17.5",
"longitude" : "80.33333"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Prakasam",
"value" : "Prakasam",
"geoCode" : {
"latitude" : "15.5",
"longitude" : "79.5"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gondia",
"value" : "Gondia",
"geoCode" : {
"latitude" : "21.45",
"longitude" : "80.2"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cuddapah",
"value" : "Cuddapah",
"geoCode" : {
"latitude" : "14.41667",
"longitude" : "78.75"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kannur",
"value" : "Kannur",
"geoCode" : {
"latitude" : "12.16667",
"longitude" : "75.33333"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Deori",
"value" : "Deori",
"geoCode" : {
"latitude" : "21.07",
"longitude" : "80.37"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Somvarpet",
"value" : "Somvarpet",
"geoCode" : {
"latitude" : "12.36",
"longitude" : "75.9"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Payyannur",
"value" : "Payyannur",
"geoCode" : {
"latitude" : "12.110282",
"longitude" : "75.21947"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chinnachowk",
"value" : "Chinnachowk",
"geoCode" : {
"latitude" : "14.477793",
"longitude" : "78.83968"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chikkaballapur",
"value" : "Chikkaballapur",
"geoCode" : {
"latitude" : "13.36",
"longitude" : "77.68"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Channapatna",
"value" : "Channapatna",
"geoCode" : {
"latitude" : "12.38",
"longitude" : "76.03"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kushalnagar",
"value" : "Kushalnagar",
"geoCode" : {
"latitude" : "12.36",
"longitude" : "75.99"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ajmer",
"value" : "Ajmer",
"geoCode" : {
"latitude" : "26.25",
"longitude" : "74.66667"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Melukote",
"value" : "Melukote",
"geoCode" : {
"latitude" : "12.66",
"longitude" : "76.65"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narasaraopet",
"value" : "Narasaraopet",
"geoCode" : {
"latitude" : "16.23488",
"longitude" : "80.04927"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Yelahanka",
"value" : "Yelahanka",
"geoCode" : {
"latitude" : "13.14",
"longitude" : "77.58"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Devanhalli",
"value" : "Devanhalli",
"geoCode" : {
"latitude" : "13.2",
"longitude" : "77.67"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bijapur",
"value" : "Bijapur",
"geoCode" : {
"latitude" : "18.84322",
"longitude" : "80.7761"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nelamangala",
"value" : "Nelamangala",
"geoCode" : {
"latitude" : "13.0",
"longitude" : "77.41"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kothagudem",
"value" : "Kothagudem",
"geoCode" : {
"latitude" : "17.54",
"longitude" : "80.61"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kottagudem",
"value" : "Kottagudem",
"geoCode" : {
"latitude" : "17.55106",
"longitude" : "80.61779"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhadradri Kothagudem",
"value" : "Bhadradri Kothagudem",
"geoCode" : {
"latitude" : "17.5546",
"longitude" : "80.61976"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Addanki",
"value" : "Addanki",
"geoCode" : {
"latitude" : "15.810707",
"longitude" : "79.97243"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shahpura",
"value" : "Shahpura",
"geoCode" : {
"latitude" : "23.13663",
"longitude" : "79.66402"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tonk",
"value" : "Tonk",
"geoCode" : {
"latitude" : "26.16667",
"longitude" : "75.58333"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malpura",
"value" : "Malpura",
"geoCode" : {
"latitude" : "26.22",
"longitude" : "75.42"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lalitpur",
"value" : "Lalitpur",
"geoCode" : {
"latitude" : "24.5",
"longitude" : "78.5"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chintamani",
"value" : "Chintamani",
"geoCode" : {
"latitude" : "13.40112",
"longitude" : "78.05639"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balaghat",
"value" : "Balaghat",
"geoCode" : {
"latitude" : "21.96667",
"longitude" : "80.33333"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pushkar",
"value" : "Pushkar",
"geoCode" : {
"latitude" : "26.49022",
"longitude" : "74.55211"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shrirangapattana",
"value" : "Shrirangapattana",
"geoCode" : {
"latitude" : "12.42264",
"longitude" : "76.68439"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bengaluru",
"value" : "Bengaluru",
"geoCode" : {
"latitude" : "12.97194",
"longitude" : "77.59369"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandya",
"value" : "Mandya",
"geoCode" : {
"latitude" : "12.5223",
"longitude" : "76.89746"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ponnampet",
"value" : "Ponnampet",
"geoCode" : {
"latitude" : "12.02",
"longitude" : "75.92"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hoskote",
"value" : "Hoskote",
"geoCode" : {
"latitude" : "13.0707",
"longitude" : "77.79814"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mysore",
"value" : "Mysore",
"geoCode" : {
"latitude" : "12.23",
"longitude" : "76.42"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sawai Madhopur",
"value" : "Sawai Madhopur",
"geoCode" : {
"latitude" : "26.02301",
"longitude" : "76.34408"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Merta",
"value" : "Merta",
"geoCode" : {
"latitude" : "26.64859",
"longitude" : "74.03414"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mysuru",
"value" : "Mysuru",
"geoCode" : {
"latitude" : "12.295811",
"longitude" : "76.63938"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ongole",
"value" : "Ongole",
"geoCode" : {
"latitude" : "15.50357",
"longitude" : "80.04454"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Madanapalle",
"value" : "Madanapalle",
"geoCode" : {
"latitude" : "13.5503",
"longitude" : "78.50288"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Eluru",
"value" : "Eluru",
"geoCode" : {
"latitude" : "15.2",
"longitude" : "79.88"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ramanagara",
"value" : "Ramanagara",
"geoCode" : {
"latitude" : "12.65",
"longitude" : "77.35"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sheopur",
"value" : "Sheopur",
"geoCode" : {
"latitude" : "25.8",
"longitude" : "77.0"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Guntur",
"value" : "Guntur",
"geoCode" : {
"latitude" : "16.29974",
"longitude" : "80.45729"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kishangarh",
"value" : "Kishangarh",
"geoCode" : {
"latitude" : "26.59006",
"longitude" : "74.85397"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shivpuri",
"value" : "Shivpuri",
"geoCode" : {
"latitude" : "25.42378",
"longitude" : "77.66223"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tellicherry",
"value" : "Tellicherry",
"geoCode" : {
"latitude" : "11.74811",
"longitude" : "75.4929"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jabalpur",
"value" : "Jabalpur",
"geoCode" : {
"latitude" : "23.16",
"longitude" : "79.95"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malavalli",
"value" : "Malavalli",
"geoCode" : {
"latitude" : "12.35",
"longitude" : "76.94"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malur",
"value" : "Malur",
"geoCode" : {
"latitude" : "13.00348",
"longitude" : "77.9425"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mangalagiri",
"value" : "Mangalagiri",
"geoCode" : {
"latitude" : "16.43083",
"longitude" : "80.56815"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Damoh",
"value" : "Damoh",
"geoCode" : {
"latitude" : "23.75",
"longitude" : "79.58333"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hunsur",
"value" : "Hunsur",
"geoCode" : {
"latitude" : "11.84",
"longitude" : "75.91"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahe",
"value" : "Mahe",
"geoCode" : {
"latitude" : "11.7",
"longitude" : "75.53333"
},
"stateValue" : "Puducherry",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vijayawada",
"value" : "Vijayawada",
"geoCode" : {
"latitude" : "16.50745",
"longitude" : "80.6466"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chirala",
"value" : "Chirala",
"geoCode" : {
"latitude" : "15.82385",
"longitude" : "80.35219"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kareli",
"value" : "Kareli",
"geoCode" : {
"latitude" : "22.16",
"longitude" : "80.58"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kolar",
"value" : "Kolar",
"geoCode" : {
"latitude" : "13.13",
"longitude" : "78.23"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandapam",
"value" : "Mandapam",
"geoCode" : {
"latitude" : "16.519629",
"longitude" : "80.69455"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nanjangud",
"value" : "Nanjangud",
"geoCode" : {
"latitude" : "12.11",
"longitude" : "76.69"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Punganuru",
"value" : "Punganuru",
"geoCode" : {
"latitude" : "13.367614",
"longitude" : "78.57107"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pokaran",
"value" : "Pokaran",
"geoCode" : {
"latitude" : "26.92",
"longitude" : "71.91"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tikamgarh",
"value" : "Tikamgarh",
"geoCode" : {
"latitude" : "24.74",
"longitude" : "78.82"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raj Nandgaon",
"value" : "Raj Nandgaon",
"geoCode" : {
"latitude" : "21.16667",
"longitude" : "81.0"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nuzvid",
"value" : "Nuzvid",
"geoCode" : {
"latitude" : "16.783632",
"longitude" : "80.84819"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kothapet",
"value" : "Kothapet",
"geoCode" : {
"latitude" : "16.78363",
"longitude" : "80.84822"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nuzividu",
"value" : "Nuzividu",
"geoCode" : {
"latitude" : "16.78272",
"longitude" : "80.84801"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hosur",
"value" : "Hosur",
"geoCode" : {
"latitude" : "12.73647",
"longitude" : "77.83264"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mulbagal",
"value" : "Mulbagal",
"geoCode" : {
"latitude" : "13.16",
"longitude" : "78.39"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panamaram",
"value" : "Panamaram",
"geoCode" : {
"latitude" : "11.74",
"longitude" : "76.07"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khairagarh",
"value" : "Khairagarh",
"geoCode" : {
"latitude" : "21.418257",
"longitude" : "80.98091"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bapatla",
"value" : "Bapatla",
"geoCode" : {
"latitude" : "15.83",
"longitude" : "80.5"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandla",
"value" : "Mandla",
"geoCode" : {
"latitude" : "22.64041",
"longitude" : "80.51344"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balod",
"value" : "Balod",
"geoCode" : {
"latitude" : "20.727066",
"longitude" : "81.20558"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karauli",
"value" : "Karauli",
"geoCode" : {
"latitude" : "26.25",
"longitude" : "76.74"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dausa",
"value" : "Dausa",
"geoCode" : {
"latitude" : "26.49",
"longitude" : "76.21"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narwar",
"value" : "Narwar",
"geoCode" : {
"latitude" : "25.6439",
"longitude" : "77.9129"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Phalodi",
"value" : "Phalodi",
"geoCode" : {
"latitude" : "27.13102",
"longitude" : "72.36826"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalpetta",
"value" : "Kalpetta",
"geoCode" : {
"latitude" : "11.610328",
"longitude" : "76.08281"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Wayanad",
"value" : "Wayanad",
"geoCode" : {
"latitude" : "11.605",
"longitude" : "76.083"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Krishna",
"value" : "Krishna",
"geoCode" : {
"latitude" : "16.66667",
"longitude" : "81.0"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sultan Bathery",
"value" : "Sultan Bathery",
"geoCode" : {
"latitude" : "11.662913",
"longitude" : "76.25702"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Calicut",
"value" : "Calicut",
"geoCode" : {
"latitude" : "11.45",
"longitude" : "75.7"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jaisalmer",
"value" : "Jaisalmer",
"geoCode" : {
"latitude" : "26.99382",
"longitude" : "71.00889"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kuchaman",
"value" : "Kuchaman",
"geoCode" : {
"latitude" : "26.91",
"longitude" : "75.18"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Makrana",
"value" : "Makrana",
"geoCode" : {
"latitude" : "27.02",
"longitude" : "74.69"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Krishnagiri",
"value" : "Krishnagiri",
"geoCode" : {
"latitude" : "12.58",
"longitude" : "77.96"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dongri",
"value" : "Dongri",
"geoCode" : {
"latitude" : "24.83922",
"longitude" : "79.05886"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nellore",
"value" : "Nellore",
"geoCode" : {
"latitude" : "14.08333",
"longitude" : "79.58333"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "West Godavari",
"value" : "West Godavari",
"geoCode" : {
"latitude" : "17.0",
"longitude" : "81.16667"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chamrajnagar",
"value" : "Chamrajnagar",
"geoCode" : {
"latitude" : "11.92615",
"longitude" : "76.94373"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kozhikode",
"value" : "Kozhikode",
"geoCode" : {
"latitude" : "11.5",
"longitude" : "76.0"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chittoor",
"value" : "Chittoor",
"geoCode" : {
"latitude" : "13.41667",
"longitude" : "79.0"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raigad",
"value" : "Raigad",
"geoCode" : {
"latitude" : "21.189276",
"longitude" : "81.27958"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gudivada",
"value" : "Gudivada",
"geoCode" : {
"latitude" : "16.43547",
"longitude" : "80.99555"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nagaur",
"value" : "Nagaur",
"geoCode" : {
"latitude" : "27.20201",
"longitude" : "73.73394"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ellore",
"value" : "Ellore",
"geoCode" : {
"latitude" : "16.71311",
"longitude" : "81.10437"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vidhani",
"value" : "Vidhani",
"geoCode" : {
"latitude" : "26.779623",
"longitude" : "75.87702"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kanker",
"value" : "Kanker",
"geoCode" : {
"latitude" : "20.25",
"longitude" : "81.5"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kuppam",
"value" : "Kuppam",
"geoCode" : {
"latitude" : "12.746113",
"longitude" : "78.34229"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Orchha",
"value" : "Orchha",
"geoCode" : {
"latitude" : "25.35192",
"longitude" : "78.64033"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dindori",
"value" : "Dindori",
"geoCode" : {
"latitude" : "22.99",
"longitude" : "80.66"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Durg",
"value" : "Durg",
"geoCode" : {
"latitude" : "21.15",
"longitude" : "81.4"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jhansi",
"value" : "Jhansi",
"geoCode" : {
"latitude" : "25.5",
"longitude" : "78.5"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Morena",
"value" : "Morena",
"geoCode" : {
"latitude" : "26.16667",
"longitude" : "77.5"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Phulera",
"value" : "Phulera",
"geoCode" : {
"latitude" : "27.15",
"longitude" : "74.85"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sabalgarh",
"value" : "Sabalgarh",
"geoCode" : {
"latitude" : "26.24",
"longitude" : "77.39"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tirupati",
"value" : "Tirupati",
"geoCode" : {
"latitude" : "13.63551",
"longitude" : "79.41989"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhilai",
"value" : "Bhilai",
"geoCode" : {
"latitude" : "21.20919",
"longitude" : "81.4285"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Naduvattam",
"value" : "Naduvattam",
"geoCode" : {
"latitude" : "11.54",
"longitude" : "76.51"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhamtari",
"value" : "Dhamtari",
"geoCode" : {
"latitude" : "20.70718",
"longitude" : "81.54874"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kawardha",
"value" : "Kawardha",
"geoCode" : {
"latitude" : "22.000137",
"longitude" : "81.225426"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gudalur",
"value" : "Gudalur",
"geoCode" : {
"latitude" : "11.49",
"longitude" : "76.49"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Patan",
"value" : "Patan",
"geoCode" : {
"latitude" : "21.03333",
"longitude" : "81.53333"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Machilipatnam",
"value" : "Machilipatnam",
"geoCode" : {
"latitude" : "16.18747",
"longitude" : "81.13888"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Markapur",
"value" : "Markapur",
"geoCode" : {
"latitude" : "16.19",
"longitude" : "81.14"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Beypore",
"value" : "Beypore",
"geoCode" : {
"latitude" : "11.17",
"longitude" : "75.8"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gudiyatham",
"value" : "Gudiyatham",
"geoCode" : {
"latitude" : "12.94412",
"longitude" : "78.86896"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jaipur",
"value" : "Jaipur",
"geoCode" : {
"latitude" : "27.0",
"longitude" : "76.0"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Katni",
"value" : "Katni",
"geoCode" : {
"latitude" : "23.01",
"longitude" : "80.88"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nilambur",
"value" : "Nilambur",
"geoCode" : {
"latitude" : "11.273716",
"longitude" : "76.220726"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ambur",
"value" : "Ambur",
"geoCode" : {
"latitude" : "12.72",
"longitude" : "78.66"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Datia",
"value" : "Datia",
"geoCode" : {
"latitude" : "25.75",
"longitude" : "78.5"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Murwara",
"value" : "Murwara",
"geoCode" : {
"latitude" : "23.83776",
"longitude" : "80.39405"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ooty",
"value" : "Ooty",
"geoCode" : {
"latitude" : "11.4134",
"longitude" : "76.69521"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chomu",
"value" : "Chomu",
"geoCode" : {
"latitude" : "27.16",
"longitude" : "75.72"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tadepallegudem",
"value" : "Tadepallegudem",
"geoCode" : {
"latitude" : "16.81635",
"longitude" : "81.52351"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Puttur",
"value" : "Puttur",
"geoCode" : {
"latitude" : "13.44189",
"longitude" : "79.55314"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bemetara",
"value" : "Bemetara",
"geoCode" : {
"latitude" : "21.714025",
"longitude" : "81.535614"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chhatarpur",
"value" : "Chhatarpur",
"geoCode" : {
"latitude" : "24.75",
"longitude" : "79.75"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Manjeri",
"value" : "Manjeri",
"geoCode" : {
"latitude" : "11.13314",
"longitude" : "76.13526"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raipur",
"value" : "Raipur",
"geoCode" : {
"latitude" : "21.25621",
"longitude" : "81.69022"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vellore",
"value" : "Vellore",
"geoCode" : {
"latitude" : "12.86",
"longitude" : "79.035"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kotagiri",
"value" : "Kotagiri",
"geoCode" : {
"latitude" : "11.39",
"longitude" : "76.84"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hindaun",
"value" : "Hindaun",
"geoCode" : {
"latitude" : "26.76",
"longitude" : "77.02"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "East Godavari",
"value" : "East Godavari",
"geoCode" : {
"latitude" : "17.83333",
"longitude" : "81.83333"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharmapuri",
"value" : "Dharmapuri",
"geoCode" : {
"latitude" : "12.1277",
"longitude" : "78.15794"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhimavaram",
"value" : "Bhimavaram",
"geoCode" : {
"latitude" : "16.54078",
"longitude" : "81.52322"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Abhaneri",
"value" : "Abhaneri",
"geoCode" : {
"latitude" : "27.0",
"longitude" : "76.6"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jagdalpur",
"value" : "Jagdalpur",
"geoCode" : {
"latitude" : "19.08136",
"longitude" : "82.02131"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Umaria",
"value" : "Umaria",
"geoCode" : {
"latitude" : "23.52473",
"longitude" : "80.83716"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bastar",
"value" : "Bastar",
"geoCode" : {
"latitude" : "19.06",
"longitude" : "82.03"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahwah",
"value" : "Mahwah",
"geoCode" : {
"latitude" : "26.95",
"longitude" : "76.78"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Coonoor",
"value" : "Coonoor",
"geoCode" : {
"latitude" : "11.25",
"longitude" : "76.73"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gwalior",
"value" : "Gwalior",
"geoCode" : {
"latitude" : "26.22983",
"longitude" : "78.17337"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sathyamangalam",
"value" : "Sathyamangalam",
"geoCode" : {
"latitude" : "11.49",
"longitude" : "77.24"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tirur",
"value" : "Tirur",
"geoCode" : {
"latitude" : "10.91368",
"longitude" : "75.92118"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sholinghur",
"value" : "Sholinghur",
"geoCode" : {
"latitude" : "13.1",
"longitude" : "79.43"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malappuram",
"value" : "Malappuram",
"geoCode" : {
"latitude" : "11.0",
"longitude" : "76.16667"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mettur",
"value" : "Mettur",
"geoCode" : {
"latitude" : "11.803759",
"longitude" : "77.80742"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tanuku",
"value" : "Tanuku",
"geoCode" : {
"latitude" : "16.75438",
"longitude" : "81.68143"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ladnun",
"value" : "Ladnun",
"geoCode" : {
"latitude" : "27.65",
"longitude" : "74.39"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kondapalle",
"value" : "Kondapalle",
"geoCode" : {
"latitude" : "17.01511",
"longitude" : "81.77255"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mettuppalaiyam",
"value" : "Mettuppalaiyam",
"geoCode" : {
"latitude" : "11.29733",
"longitude" : "76.9395"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajahmundry",
"value" : "Rajahmundry",
"geoCode" : {
"latitude" : "17.00517",
"longitude" : "81.77784"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jhunjhunu",
"value" : "Jhunjhunu",
"geoCode" : {
"latitude" : "27.47",
"longitude" : "75.4"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Perintalmanna",
"value" : "Perintalmanna",
"geoCode" : {
"latitude" : "10.97494",
"longitude" : "76.21596"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ranipet",
"value" : "Ranipet",
"geoCode" : {
"latitude" : "12.93356",
"longitude" : "79.33038"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Deshnoke",
"value" : "Deshnoke",
"geoCode" : {
"latitude" : "27.79",
"longitude" : "73.34"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panna",
"value" : "Panna",
"geoCode" : {
"latitude" : "24.5",
"longitude" : "80.25"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pali",
"value" : "Pali",
"geoCode" : {
"latitude" : "23.36453",
"longitude" : "81.04374"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arcot",
"value" : "Arcot",
"geoCode" : {
"latitude" : "12.90569",
"longitude" : "79.31897"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thiruthani",
"value" : "Thiruthani",
"geoCode" : {
"latitude" : "13.18",
"longitude" : "79.6"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sujangarh",
"value" : "Sujangarh",
"geoCode" : {
"latitude" : "27.7",
"longitude" : "74.45"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandapeta",
"value" : "Mandapeta",
"geoCode" : {
"latitude" : "16.89",
"longitude" : "81.8"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tharamangalam",
"value" : "Tharamangalam",
"geoCode" : {
"latitude" : "11.725243",
"longitude" : "77.884"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mannarkkad",
"value" : "Mannarkkad",
"geoCode" : {
"latitude" : "10.993237",
"longitude" : "76.461"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sikar",
"value" : "Sikar",
"geoCode" : {
"latitude" : "27.61206",
"longitude" : "75.13996"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gobichettipalayam",
"value" : "Gobichettipalayam",
"geoCode" : {
"latitude" : "11.45",
"longitude" : "77.44"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palakollu",
"value" : "Palakollu",
"geoCode" : {
"latitude" : "16.5167",
"longitude" : "81.73"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhaulpur",
"value" : "Dhaulpur",
"geoCode" : {
"latitude" : "26.71183",
"longitude" : "77.73956"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arakkonam",
"value" : "Arakkonam",
"geoCode" : {
"latitude" : "13.08449",
"longitude" : "79.67053"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Omalur",
"value" : "Omalur",
"geoCode" : {
"latitude" : "11.74099",
"longitude" : "78.04559"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thiruvannamalai",
"value" : "Thiruvannamalai",
"geoCode" : {
"latitude" : "12.629862",
"longitude" : "79.21334"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tiruvannamalai",
"value" : "Tiruvannamalai",
"geoCode" : {
"latitude" : "12.51",
"longitude" : "79.09"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ponnani",
"value" : "Ponnani",
"geoCode" : {
"latitude" : "10.71",
"longitude" : "75.95"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhavani",
"value" : "Bhavani",
"geoCode" : {
"latitude" : "11.587118",
"longitude" : "77.83535"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arni",
"value" : "Arni",
"geoCode" : {
"latitude" : "12.66963",
"longitude" : "79.28521"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhadrachalam",
"value" : "Bhadrachalam",
"geoCode" : {
"latitude" : "16.93",
"longitude" : "81.95"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cherpulassery",
"value" : "Cherpulassery",
"geoCode" : {
"latitude" : "10.75",
"longitude" : "76.11"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhatapara",
"value" : "Bhatapara",
"geoCode" : {
"latitude" : "21.735",
"longitude" : "81.94711"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Erode",
"value" : "Erode",
"geoCode" : {
"latitude" : "11.34",
"longitude" : "77.55"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Maihar",
"value" : "Maihar",
"geoCode" : {
"latitude" : "24.24",
"longitude" : "80.75"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bikaner",
"value" : "Bikaner",
"geoCode" : {
"latitude" : "28.01762",
"longitude" : "73.31495"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ottapalam",
"value" : "Ottapalam",
"geoCode" : {
"latitude" : "10.772779",
"longitude" : "76.37478"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Avinashi",
"value" : "Avinashi",
"geoCode" : {
"latitude" : "11.172957",
"longitude" : "77.2686"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ottappalam",
"value" : "Ottappalam",
"geoCode" : {
"latitude" : "10.767594",
"longitude" : "76.38287"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thiruvallur",
"value" : "Thiruvallur",
"geoCode" : {
"latitude" : "13.25",
"longitude" : "80.0"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kunnamkulam",
"value" : "Kunnamkulam",
"geoCode" : {
"latitude" : "10.64",
"longitude" : "76.07"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thrissur District",
"value" : "Thrissur District",
"geoCode" : {
"latitude" : "10.591155",
"longitude" : "76.01018"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Singanallur, Coimbatore",
"value" : "Singanallur, Coimbatore",
"geoCode" : {
"latitude" : "10.99637",
"longitude" : "77.01781"
},
"stateValue" : "Tamil Nadu",
"countryValue" : "Nan",
"countryCode" : "nan"
}, {
"label" : "Tiruvallur",
"value" : "Tiruvallur",
"geoCode" : {
"latitude" : "13.1",
"longitude" : "79.91"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sirpur",
"value" : "Sirpur",
"geoCode" : {
"latitude" : "21.34",
"longitude" : "82.18"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Guruvayur",
"value" : "Guruvayur",
"geoCode" : {
"latitude" : "10.58",
"longitude" : "76.03"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sulur",
"value" : "Sulur",
"geoCode" : {
"latitude" : "11.0",
"longitude" : "77.06"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Amalapuram",
"value" : "Amalapuram",
"geoCode" : {
"latitude" : "16.57868",
"longitude" : "82.00609"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Salem",
"value" : "Salem",
"geoCode" : {
"latitude" : "11.69",
"longitude" : "78.29"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nawalgarh",
"value" : "Nawalgarh",
"geoCode" : {
"latitude" : "27.85",
"longitude" : "75.25"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gohand",
"value" : "Gohand",
"geoCode" : {
"latitude" : "25.69895",
"longitude" : "79.54564"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kanchipuram",
"value" : "Kanchipuram",
"geoCode" : {
"latitude" : "12.83515",
"longitude" : "79.70006"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fort",
"value" : "Fort",
"geoCode" : {
"latitude" : "10.786731",
"longitude" : "76.65479"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tiruppur",
"value" : "Tiruppur",
"geoCode" : {
"latitude" : "11.11541",
"longitude" : "77.35456"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Alwar",
"value" : "Alwar",
"geoCode" : {
"latitude" : "27.5",
"longitude" : "76.5"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palakkad",
"value" : "Palakkad",
"geoCode" : {
"latitude" : "10.775",
"longitude" : "76.651"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palghat",
"value" : "Palghat",
"geoCode" : {
"latitude" : "10.77319",
"longitude" : "76.65366"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baloda Bazar",
"value" : "Baloda Bazar",
"geoCode" : {
"latitude" : "21.65678",
"longitude" : "82.16062"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bharatpur",
"value" : "Bharatpur",
"geoCode" : {
"latitude" : "27.21",
"longitude" : "77.29"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cheyyar",
"value" : "Cheyyar",
"geoCode" : {
"latitude" : "12.39",
"longitude" : "79.32"
},
"stateValue" : "Sikkim",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ratangarh",
"value" : "Ratangarh",
"geoCode" : {
"latitude" : "28.05",
"longitude" : "74.61"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palladam",
"value" : "Palladam",
"geoCode" : {
"latitude" : "10.99753",
"longitude" : "77.27548"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahasamund",
"value" : "Mahasamund",
"geoCode" : {
"latitude" : "21.02",
"longitude" : "82.37"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fatehpur",
"value" : "Fatehpur",
"geoCode" : {
"latitude" : "27.99486",
"longitude" : "74.95628"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sriperumbudur",
"value" : "Sriperumbudur",
"geoCode" : {
"latitude" : "12.96763",
"longitude" : "79.94197"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pithapuram",
"value" : "Pithapuram",
"geoCode" : {
"latitude" : "17.13",
"longitude" : "82.27"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nabarangpur",
"value" : "Nabarangpur",
"geoCode" : {
"latitude" : "19.2333",
"longitude" : "82.55"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kota",
"value" : "Kota",
"geoCode" : {
"latitude" : "22.29507",
"longitude" : "82.02366"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thrissur",
"value" : "Thrissur",
"geoCode" : {
"latitude" : "10.51975",
"longitude" : "76.21673"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kakinada",
"value" : "Kakinada",
"geoCode" : {
"latitude" : "16.96036",
"longitude" : "82.23809"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fatehpur Sikri",
"value" : "Fatehpur Sikri",
"geoCode" : {
"latitude" : "27.0937",
"longitude" : "77.66003"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Anuppur",
"value" : "Anuppur",
"geoCode" : {
"latitude" : "23.171013",
"longitude" : "81.64871"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kotputli",
"value" : "Kotputli",
"geoCode" : {
"latitude" : "27.70207",
"longitude" : "76.19911"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Minjur",
"value" : "Minjur",
"geoCode" : {
"latitude" : "13.278929",
"longitude" : "80.26231"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jeypore",
"value" : "Jeypore",
"geoCode" : {
"latitude" : "18.8563",
"longitude" : "82.5716"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shahdol",
"value" : "Shahdol",
"geoCode" : {
"latitude" : "23.5",
"longitude" : "81.5"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rasipuram",
"value" : "Rasipuram",
"geoCode" : {
"latitude" : "11.46009",
"longitude" : "78.18635"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Yanam",
"value" : "Yanam",
"geoCode" : {
"latitude" : "16.73308",
"longitude" : "82.21364"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhind",
"value" : "Bhind",
"geoCode" : {
"latitude" : "26.5",
"longitude" : "78.75"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Orai",
"value" : "Orai",
"geoCode" : {
"latitude" : "25.98",
"longitude" : "79.45"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gannavaram",
"value" : "Gannavaram",
"geoCode" : {
"latitude" : "17.09",
"longitude" : "82.34"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chirawa",
"value" : "Chirawa",
"geoCode" : {
"latitude" : "28.05227",
"longitude" : "75.0999"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tiruchengode",
"value" : "Tiruchengode",
"geoCode" : {
"latitude" : "11.03",
"longitude" : "77.53"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Coimbatore",
"value" : "Coimbatore",
"geoCode" : {
"latitude" : "10.8",
"longitude" : "77.09"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vaniyambadi",
"value" : "Vaniyambadi",
"geoCode" : {
"latitude" : "12.50507",
"longitude" : "79.60915"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tambaram",
"value" : "Tambaram",
"geoCode" : {
"latitude" : "12.89",
"longitude" : "80.02"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalaun",
"value" : "Jalaun",
"geoCode" : {
"latitude" : "26.0",
"longitude" : "79.5"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Manali",
"value" : "Manali",
"geoCode" : {
"latitude" : "13.17",
"longitude" : "80.28"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bilaspur",
"value" : "Bilaspur",
"geoCode" : {
"latitude" : "22.38333",
"longitude" : "82.13333"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gingee",
"value" : "Gingee",
"geoCode" : {
"latitude" : "12.25",
"longitude" : "79.4"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nandambakkam",
"value" : "Nandambakkam",
"geoCode" : {
"latitude" : "13.014799",
"longitude" : "80.19092"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vandalur",
"value" : "Vandalur",
"geoCode" : {
"latitude" : "12.87",
"longitude" : "80.07"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Satna",
"value" : "Satna",
"geoCode" : {
"latitude" : "24.5",
"longitude" : "81.0"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chennai",
"value" : "Chennai",
"geoCode" : {
"latitude" : "13.08784",
"longitude" : "80.27847"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Attur",
"value" : "Attur",
"geoCode" : {
"latitude" : "11.59414",
"longitude" : "78.60143"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Melmaruvathur",
"value" : "Melmaruvathur",
"geoCode" : {
"latitude" : "12.83461",
"longitude" : "80.0498"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Guduvancheri",
"value" : "Guduvancheri",
"geoCode" : {
"latitude" : "12.84519",
"longitude" : "80.06055"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khetri",
"value" : "Khetri",
"geoCode" : {
"latitude" : "27.99",
"longitude" : "75.77"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Maraimalai Nagar",
"value" : "Maraimalai Nagar",
"geoCode" : {
"latitude" : "12.79",
"longitude" : "80.02"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Irinjalakuda",
"value" : "Irinjalakuda",
"geoCode" : {
"latitude" : "10.34238",
"longitude" : "76.21124"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pollachi",
"value" : "Pollachi",
"geoCode" : {
"latitude" : "10.65825",
"longitude" : "77.0085"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tuni",
"value" : "Tuni",
"geoCode" : {
"latitude" : "17.357471",
"longitude" : "82.547165"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narsipatnam",
"value" : "Narsipatnam",
"geoCode" : {
"latitude" : "17.66709",
"longitude" : "82.61245"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jhunjhunun",
"value" : "Jhunjhunun",
"geoCode" : {
"latitude" : "28.12559",
"longitude" : "75.39797"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Namakkal",
"value" : "Namakkal",
"geoCode" : {
"latitude" : "11.2367",
"longitude" : "78.1689"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Behror",
"value" : "Behror",
"geoCode" : {
"latitude" : "27.88832",
"longitude" : "76.28108"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thoraipakkam",
"value" : "Thoraipakkam",
"geoCode" : {
"latitude" : "12.9464",
"longitude" : "80.24064"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chengalpattu",
"value" : "Chengalpattu",
"geoCode" : {
"latitude" : "12.6819",
"longitude" : "79.9888"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chingleput",
"value" : "Chingleput",
"geoCode" : {
"latitude" : "12.68194",
"longitude" : "79.98884"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Velur",
"value" : "Velur",
"geoCode" : {
"latitude" : "11.11",
"longitude" : "78.01"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Etmadpur",
"value" : "Etmadpur",
"geoCode" : {
"latitude" : "27.21",
"longitude" : "77.95"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nuapada",
"value" : "Nuapada",
"geoCode" : {
"latitude" : "20.286652",
"longitude" : "82.76234"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Agra",
"value" : "Agra",
"geoCode" : {
"latitude" : "27.18333",
"longitude" : "78.01667"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kallakkurichchi",
"value" : "Kallakkurichchi",
"geoCode" : {
"latitude" : "11.7404",
"longitude" : "78.959"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Madurantakam",
"value" : "Madurantakam",
"geoCode" : {
"latitude" : "12.52",
"longitude" : "79.89"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Siruseri",
"value" : "Siruseri",
"geoCode" : {
"latitude" : "12.835218",
"longitude" : "80.20108"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kodungallur",
"value" : "Kodungallur",
"geoCode" : {
"latitude" : "10.23263",
"longitude" : "76.19513"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Govardhan",
"value" : "Govardhan",
"geoCode" : {
"latitude" : "27.49",
"longitude" : "77.46"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Navalur",
"value" : "Navalur",
"geoCode" : {
"latitude" : "12.849959",
"longitude" : "80.230644"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhawanipatna",
"value" : "Bhawanipatna",
"geoCode" : {
"latitude" : "19.43",
"longitude" : "82.85"
},
"stateValue" : "Nagaland",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bagar",
"value" : "Bagar",
"geoCode" : {
"latitude" : "28.18",
"longitude" : "75.5"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Churu",
"value" : "Churu",
"geoCode" : {
"latitude" : "28.30415",
"longitude" : "74.96718"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vrindavan",
"value" : "Vrindavan",
"geoCode" : {
"latitude" : "27.51",
"longitude" : "77.47"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mala",
"value" : "Mala",
"geoCode" : {
"latitude" : "10.22",
"longitude" : "76.25"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kotma",
"value" : "Kotma",
"geoCode" : {
"latitude" : "23.204004",
"longitude" : "81.980385"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Villupuram",
"value" : "Villupuram",
"geoCode" : {
"latitude" : "11.99",
"longitude" : "79.37"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tindivanam",
"value" : "Tindivanam",
"geoCode" : {
"latitude" : "12.25",
"longitude" : "79.67"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narnaul",
"value" : "Narnaul",
"geoCode" : {
"latitude" : "28.04444",
"longitude" : "76.10833"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Atarra",
"value" : "Atarra",
"geoCode" : {
"latitude" : "25.286741",
"longitude" : "80.574394"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharapuram",
"value" : "Dharapuram",
"geoCode" : {
"latitude" : "10.736916",
"longitude" : "77.52577"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kovalam",
"value" : "Kovalam",
"geoCode" : {
"latitude" : "12.78",
"longitude" : "80.24"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udumalaipettai",
"value" : "Udumalaipettai",
"geoCode" : {
"latitude" : "10.59",
"longitude" : "77.25"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udumalaippettai",
"value" : "Udumalaippettai",
"geoCode" : {
"latitude" : "10.58806",
"longitude" : "77.24779"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Seorinarayan",
"value" : "Seorinarayan",
"geoCode" : {
"latitude" : "21.72055",
"longitude" : "82.59344"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Firozpur Jhirka",
"value" : "Firozpur Jhirka",
"geoCode" : {
"latitude" : "27.78853",
"longitude" : "76.94496"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Champa",
"value" : "Champa",
"geoCode" : {
"latitude" : "21.726929",
"longitude" : "82.60292"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Angamali",
"value" : "Angamali",
"geoCode" : {
"latitude" : "10.19055",
"longitude" : "76.38789"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Angamaly",
"value" : "Angamaly",
"geoCode" : {
"latitude" : "10.18",
"longitude" : "76.38"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rewa",
"value" : "Rewa",
"geoCode" : {
"latitude" : "24.53256",
"longitude" : "81.29234"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chitrakoot",
"value" : "Chitrakoot",
"geoCode" : {
"latitude" : "25.14",
"longitude" : "80.82"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nedumbassery",
"value" : "Nedumbassery",
"geoCode" : {
"latitude" : "10.15828",
"longitude" : "76.39267"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Janjgir",
"value" : "Janjgir",
"geoCode" : {
"latitude" : "22.00922",
"longitude" : "82.5778"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karur",
"value" : "Karur",
"geoCode" : {
"latitude" : "10.95771",
"longitude" : "78.08095"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Viluppuram",
"value" : "Viluppuram",
"geoCode" : {
"latitude" : "11.940138",
"longitude" : "79.486145"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Koraput",
"value" : "Koraput",
"geoCode" : {
"latitude" : "19.0",
"longitude" : "83.0"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Aluva",
"value" : "Aluva",
"geoCode" : {
"latitude" : "10.10764",
"longitude" : "76.35158"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tijara",
"value" : "Tijara",
"geoCode" : {
"latitude" : "27.92",
"longitude" : "76.88"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mathura",
"value" : "Mathura",
"geoCode" : {
"latitude" : "27.63333",
"longitude" : "77.58333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Firozabad",
"value" : "Firozabad",
"geoCode" : {
"latitude" : "27.20072",
"longitude" : "78.42867"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Surajgarh",
"value" : "Surajgarh",
"geoCode" : {
"latitude" : "28.31",
"longitude" : "75.73"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalamassery",
"value" : "Kalamassery",
"geoCode" : {
"latitude" : "10.0614",
"longitude" : "76.32631"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pilani",
"value" : "Pilani",
"geoCode" : {
"latitude" : "28.36",
"longitude" : "75.58"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bawal",
"value" : "Bawal",
"geoCode" : {
"latitude" : "28.08",
"longitude" : "76.57"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Janjgir-Champa",
"value" : "Janjgir-Champa",
"geoCode" : {
"latitude" : "21.9",
"longitude" : "82.7"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Perumbavoor",
"value" : "Perumbavoor",
"geoCode" : {
"latitude" : "10.1",
"longitude" : "76.48"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kochi",
"value" : "Kochi",
"geoCode" : {
"latitude" : "10.02652",
"longitude" : "76.30859"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kallakurichi",
"value" : "Kallakurichi",
"geoCode" : {
"latitude" : "11.7",
"longitude" : "79.32"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thrikkakara",
"value" : "Thrikkakara",
"geoCode" : {
"latitude" : "10.03272",
"longitude" : "76.33189"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Valparai",
"value" : "Valparai",
"geoCode" : {
"latitude" : "10.27",
"longitude" : "76.98"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Etawah",
"value" : "Etawah",
"geoCode" : {
"latitude" : "26.75",
"longitude" : "79.25"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mahendragarh",
"value" : "Mahendragarh",
"geoCode" : {
"latitude" : "28.26",
"longitude" : "76.15"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kosi",
"value" : "Kosi",
"geoCode" : {
"latitude" : "27.79449",
"longitude" : "77.4368"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Marakkanam",
"value" : "Marakkanam",
"geoCode" : {
"latitude" : "12.18",
"longitude" : "79.94"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cochin",
"value" : "Cochin",
"geoCode" : {
"latitude" : "9.93988",
"longitude" : "76.26022"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Anakapalle",
"value" : "Anakapalle",
"geoCode" : {
"latitude" : "17.69134",
"longitude" : "83.00395"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Korba",
"value" : "Korba",
"geoCode" : {
"latitude" : "22.5",
"longitude" : "82.6"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kothamangalam",
"value" : "Kothamangalam",
"geoCode" : {
"latitude" : "10.06157",
"longitude" : "76.63114"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Auroville",
"value" : "Auroville",
"geoCode" : {
"latitude" : "12.00549",
"longitude" : "79.80885"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palani",
"value" : "Palani",
"geoCode" : {
"latitude" : "10.449433",
"longitude" : "77.51792"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ernakulam",
"value" : "Ernakulam",
"geoCode" : {
"latitude" : "10.0",
"longitude" : "76.5"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Maradu",
"value" : "Maradu",
"geoCode" : {
"latitude" : "9.92827",
"longitude" : "76.31452"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tripunithura",
"value" : "Tripunithura",
"geoCode" : {
"latitude" : "9.937768",
"longitude" : "76.34636"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Loharu",
"value" : "Loharu",
"geoCode" : {
"latitude" : "28.42993",
"longitude" : "75.80779"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thirunelly",
"value" : "Thirunelly",
"geoCode" : {
"latitude" : "9.942871",
"longitude" : "76.37409"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panruti",
"value" : "Panruti",
"geoCode" : {
"latitude" : "11.76658",
"longitude" : "79.56291"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rewari",
"value" : "Rewari",
"geoCode" : {
"latitude" : "28.199",
"longitude" : "76.6183"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Padampur",
"value" : "Padampur",
"geoCode" : {
"latitude" : "21.0",
"longitude" : "83.06"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hathras",
"value" : "Hathras",
"geoCode" : {
"latitude" : "27.59551",
"longitude" : "78.05201"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kumbalam",
"value" : "Kumbalam",
"geoCode" : {
"latitude" : "9.89",
"longitude" : "76.3"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pondicherry",
"value" : "Pondicherry",
"geoCode" : {
"latitude" : "11.941591",
"longitude" : "79.80831"
},
"stateValue" : "Puducherry",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Muvattupuzha",
"value" : "Muvattupuzha",
"geoCode" : {
"latitude" : "9.97985",
"longitude" : "76.57381"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Perambalur",
"value" : "Perambalur",
"geoCode" : {
"latitude" : "11.2",
"longitude" : "78.88"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Virudachalam",
"value" : "Virudachalam",
"geoCode" : {
"latitude" : "11.52102",
"longitude" : "79.32356"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vriddhachalam",
"value" : "Vriddhachalam",
"geoCode" : {
"latitude" : "11.5183",
"longitude" : "79.32411"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nuh",
"value" : "Nuh",
"geoCode" : {
"latitude" : "28.1",
"longitude" : "77.0"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Puducherry",
"value" : "Puducherry",
"geoCode" : {
"latitude" : "11.93381",
"longitude" : "79.82979"
},
"stateValue" : "Puducherry",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharuhera",
"value" : "Dharuhera",
"geoCode" : {
"latitude" : "28.2",
"longitude" : "76.75"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tiruchirappalli",
"value" : "Tiruchirappalli",
"geoCode" : {
"latitude" : "10.97",
"longitude" : "78.65"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhiwadi",
"value" : "Bhiwadi",
"geoCode" : {
"latitude" : "28.21024",
"longitude" : "76.86056"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Marayur",
"value" : "Marayur",
"geoCode" : {
"latitude" : "10.14",
"longitude" : "77.16"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Munnar",
"value" : "Munnar",
"geoCode" : {
"latitude" : "10.08818",
"longitude" : "77.06239"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mainpuri",
"value" : "Mainpuri",
"geoCode" : {
"latitude" : "27.16667",
"longitude" : "79.0"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Neyveli",
"value" : "Neyveli",
"geoCode" : {
"latitude" : "11.5389805",
"longitude" : "79.479385"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Taoru",
"value" : "Taoru",
"geoCode" : {
"latitude" : "28.21173",
"longitude" : "76.94984"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dindigul",
"value" : "Dindigul",
"geoCode" : {
"latitude" : "10.4",
"longitude" : "77.8"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balangir",
"value" : "Balangir",
"geoCode" : {
"latitude" : "20.75",
"longitude" : "83.25"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Visakhapatnam",
"value" : "Visakhapatnam",
"geoCode" : {
"latitude" : "17.68009",
"longitude" : "83.20161"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cuddalore",
"value" : "Cuddalore",
"geoCode" : {
"latitude" : "11.52",
"longitude" : "79.51"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kodaikanal",
"value" : "Kodaikanal",
"geoCode" : {
"latitude" : "10.23925",
"longitude" : "77.48932"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gajuwaka",
"value" : "Gajuwaka",
"geoCode" : {
"latitude" : "17.685076",
"longitude" : "83.21044"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pataudi",
"value" : "Pataudi",
"geoCode" : {
"latitude" : "28.26043",
"longitude" : "76.91602"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Idukki",
"value" : "Idukki",
"geoCode" : {
"latitude" : "10.0",
"longitude" : "77.0"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vayalar",
"value" : "Vayalar",
"geoCode" : {
"latitude" : "9.74",
"longitude" : "76.33"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sidhi",
"value" : "Sidhi",
"geoCode" : {
"latitude" : "24.41",
"longitude" : "81.88"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bobbili",
"value" : "Bobbili",
"geoCode" : {
"latitude" : "18.575659",
"longitude" : "83.35743"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ariyalur",
"value" : "Ariyalur",
"geoCode" : {
"latitude" : "11.14",
"longitude" : "79.07"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rayagada",
"value" : "Rayagada",
"geoCode" : {
"latitude" : "19.16",
"longitude" : "83.4"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palwal",
"value" : "Palwal",
"geoCode" : {
"latitude" : "28.14469",
"longitude" : "77.32546"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Koriya",
"value" : "Koriya",
"geoCode" : {
"latitude" : "23.25",
"longitude" : "82.56"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baikunthpur",
"value" : "Baikunthpur",
"geoCode" : {
"latitude" : "23.26206",
"longitude" : "82.56051"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sohna",
"value" : "Sohna",
"geoCode" : {
"latitude" : "28.24",
"longitude" : "77.15"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cherthala",
"value" : "Cherthala",
"geoCode" : {
"latitude" : "9.68444",
"longitude" : "76.33558"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Manesar",
"value" : "Manesar",
"geoCode" : {
"latitude" : "28.357723",
"longitude" : "76.917076"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Etah",
"value" : "Etah",
"geoCode" : {
"latitude" : "27.5",
"longitude" : "78.75"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dadri",
"value" : "Dadri",
"geoCode" : {
"latitude" : "28.593044",
"longitude" : "76.25344"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Aligarh",
"value" : "Aligarh",
"geoCode" : {
"latitude" : "27.83333",
"longitude" : "78.16667"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thodupuzha",
"value" : "Thodupuzha",
"geoCode" : {
"latitude" : "9.81",
"longitude" : "76.81"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Auraiya",
"value" : "Auraiya",
"geoCode" : {
"latitude" : "26.45792",
"longitude" : "80.22499"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Manapparai",
"value" : "Manapparai",
"geoCode" : {
"latitude" : "10.6",
"longitude" : "78.41"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vizianagaram",
"value" : "Vizianagaram",
"geoCode" : {
"latitude" : "18.11692",
"longitude" : "83.41148"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jewar",
"value" : "Jewar",
"geoCode" : {
"latitude" : "28.14",
"longitude" : "77.57"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pala",
"value" : "Pala",
"geoCode" : {
"latitude" : "9.7",
"longitude" : "76.68"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tirumala",
"value" : "Tirumala",
"geoCode" : {
"latitude" : "26.480425",
"longitude" : "80.29115"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kottayam",
"value" : "Kottayam",
"geoCode" : {
"latitude" : "9.66667",
"longitude" : "76.66667"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gurgaon",
"value" : "Gurgaon",
"geoCode" : {
"latitude" : "28.43891",
"longitude" : "77.00592"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kanpur",
"value" : "Kanpur",
"geoCode" : {
"latitude" : "26.46523",
"longitude" : "80.34975"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chidambaram",
"value" : "Chidambaram",
"geoCode" : {
"latitude" : "11.39929",
"longitude" : "79.69352"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kannauj",
"value" : "Kannauj",
"geoCode" : {
"latitude" : "27.0177",
"longitude" : "79.67846"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baudh",
"value" : "Baudh",
"geoCode" : {
"latitude" : "26.959429",
"longitude" : "79.78905"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhiwani",
"value" : "Bhiwani",
"geoCode" : {
"latitude" : "28.75",
"longitude" : "76.16667"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Farrukhabad",
"value" : "Farrukhabad",
"geoCode" : {
"latitude" : "27.34",
"longitude" : "79.27"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Manarcaud",
"value" : "Manarcaud",
"geoCode" : {
"latitude" : "9.58988",
"longitude" : "76.57972"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jhajjar",
"value" : "Jhajjar",
"geoCode" : {
"latitude" : "28.6063",
"longitude" : "76.6565"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gurugram",
"value" : "Gurugram",
"geoCode" : {
"latitude" : "28.477865",
"longitude" : "77.045425"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Alappuzha",
"value" : "Alappuzha",
"geoCode" : {
"latitude" : "9.49004",
"longitude" : "76.3264"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bithur",
"value" : "Bithur",
"geoCode" : {
"latitude" : "26.60664",
"longitude" : "80.27098"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hanumangarh",
"value" : "Hanumangarh",
"geoCode" : {
"latitude" : "29.11",
"longitude" : "74.6"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Faridabad",
"value" : "Faridabad",
"geoCode" : {
"latitude" : "28.41124",
"longitude" : "77.31316"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhagwantnagar",
"value" : "Bhagwantnagar",
"geoCode" : {
"latitude" : "26.22051",
"longitude" : "80.75292"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kasganj",
"value" : "Kasganj",
"geoCode" : {
"latitude" : "27.8",
"longitude" : "78.64"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raigarh",
"value" : "Raigarh",
"geoCode" : {
"latitude" : "22.08582",
"longitude" : "83.30603"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Theni",
"value" : "Theni",
"geoCode" : {
"latitude" : "9.85",
"longitude" : "77.42"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Unnao",
"value" : "Unnao",
"geoCode" : {
"latitude" : "26.5",
"longitude" : "80.5"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Swamimalai",
"value" : "Swamimalai",
"geoCode" : {
"latitude" : "10.95",
"longitude" : "79.32"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khurja",
"value" : "Khurja",
"geoCode" : {
"latitude" : "28.23",
"longitude" : "77.86"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sirkazhi",
"value" : "Sirkazhi",
"geoCode" : {
"latitude" : "11.24132",
"longitude" : "79.72597"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kumbakonam",
"value" : "Kumbakonam",
"geoCode" : {
"latitude" : "10.96209",
"longitude" : "79.39124"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Changanacheri",
"value" : "Changanacheri",
"geoCode" : {
"latitude" : "9.44203",
"longitude" : "76.53604"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bargarh",
"value" : "Bargarh",
"geoCode" : {
"latitude" : "21.19",
"longitude" : "83.58"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalanaur",
"value" : "Kalanaur",
"geoCode" : {
"latitude" : "28.82823",
"longitude" : "76.3955"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cumbum",
"value" : "Cumbum",
"geoCode" : {
"latitude" : "9.72",
"longitude" : "77.27"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Suratgarh",
"value" : "Suratgarh",
"geoCode" : {
"latitude" : "29.32186",
"longitude" : "73.900925"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Changanacherry",
"value" : "Changanacherry",
"geoCode" : {
"latitude" : "9.416892",
"longitude" : "76.5635"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mayiladuthurai",
"value" : "Mayiladuthurai",
"geoCode" : {
"latitude" : "11.10354",
"longitude" : "79.655"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bahadurgarh",
"value" : "Bahadurgarh",
"geoCode" : {
"latitude" : "28.69287",
"longitude" : "76.93555"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gautam Buddha Nagar",
"value" : "Gautam Buddha Nagar",
"geoCode" : {
"latitude" : "28.539177",
"longitude" : "77.36585"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thiruvalla",
"value" : "Thiruvalla",
"geoCode" : {
"latitude" : "9.3866",
"longitude" : "76.57465"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tiruvalla",
"value" : "Tiruvalla",
"geoCode" : {
"latitude" : "9.3816",
"longitude" : "76.57489"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Singrauli",
"value" : "Singrauli",
"geoCode" : {
"latitude" : "24.06",
"longitude" : "82.62"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Greater Noida",
"value" : "Greater Noida",
"geoCode" : {
"latitude" : "28.49615",
"longitude" : "77.53601"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Noida",
"value" : "Noida",
"geoCode" : {
"latitude" : "28.58",
"longitude" : "77.33"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "New Delhi",
"value" : "New Delhi",
"geoCode" : {
"latitude" : "28.63576",
"longitude" : "77.22445"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rohtak",
"value" : "Rohtak",
"geoCode" : {
"latitude" : "28.83333",
"longitude" : "76.66667"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Delhi",
"value" : "Delhi",
"geoCode" : {
"latitude" : "28.65195",
"longitude" : "77.23149"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "North West Delhi",
"value" : "North West Delhi",
"geoCode" : {
"latitude" : "28.70113",
"longitude" : "77.10154"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kunda",
"value" : "Kunda",
"geoCode" : {
"latitude" : "25.72721",
"longitude" : "81.50831"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bulandshahr",
"value" : "Bulandshahr",
"geoCode" : {
"latitude" : "28.41667",
"longitude" : "77.83333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "North Delhi",
"value" : "North Delhi",
"geoCode" : {
"latitude" : "28.6692",
"longitude" : "77.22273"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pitampura",
"value" : "Pitampura",
"geoCode" : {
"latitude" : "28.702991",
"longitude" : "77.13648"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rohini",
"value" : "Rohini",
"geoCode" : {
"latitude" : "28.738268",
"longitude" : "77.082214"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "East Delhi",
"value" : "East Delhi",
"geoCode" : {
"latitude" : "28.66242",
"longitude" : "77.29122"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chengannur",
"value" : "Chengannur",
"geoCode" : {
"latitude" : "9.31575",
"longitude" : "76.61513"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hisar",
"value" : "Hisar",
"geoCode" : {
"latitude" : "29.15394",
"longitude" : "75.72294"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Surguja",
"value" : "Surguja",
"geoCode" : {
"latitude" : "23.12304",
"longitude" : "83.1716"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hansi",
"value" : "Hansi",
"geoCode" : {
"latitude" : "29.10239",
"longitude" : "75.96253"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thanjavur",
"value" : "Thanjavur",
"geoCode" : {
"latitude" : "10.64",
"longitude" : "79.22"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "North East Delhi",
"value" : "North East Delhi",
"geoCode" : {
"latitude" : "28.6869",
"longitude" : "77.30195"
},
"stateValue" : "Delhi",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ambikapur",
"value" : "Ambikapur",
"geoCode" : {
"latitude" : "23.11892",
"longitude" : "83.19537"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Prayagraj",
"value" : "Prayagraj",
"geoCode" : {
"latitude" : "25.437387",
"longitude" : "81.833275"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Madurai",
"value" : "Madurai",
"geoCode" : {
"latitude" : "9.89",
"longitude" : "78.03"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ghaziabad",
"value" : "Ghaziabad",
"geoCode" : {
"latitude" : "28.66535",
"longitude" : "77.43915"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sahibabad",
"value" : "Sahibabad",
"geoCode" : {
"latitude" : "28.683332",
"longitude" : "77.4"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mavelikara",
"value" : "Mavelikara",
"geoCode" : {
"latitude" : "9.22",
"longitude" : "76.51"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Allahabad",
"value" : "Allahabad",
"geoCode" : {
"latitude" : "25.45",
"longitude" : "81.85"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Srikakulam",
"value" : "Srikakulam",
"geoCode" : {
"latitude" : "18.2989",
"longitude" : "83.89751"
},
"stateValue" : "Andhra Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pudukkottai",
"value" : "Pudukkottai",
"geoCode" : {
"latitude" : "10.35",
"longitude" : "78.9"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tharangambadi",
"value" : "Tharangambadi",
"geoCode" : {
"latitude" : "11.02",
"longitude" : "79.85"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ellenabad",
"value" : "Ellenabad",
"geoCode" : {
"latitude" : "29.45282",
"longitude" : "74.66122"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pathanamthitta",
"value" : "Pathanamthitta",
"geoCode" : {
"latitude" : "9.26667",
"longitude" : "76.78333"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thiruvarur",
"value" : "Thiruvarur",
"geoCode" : {
"latitude" : "10.66",
"longitude" : "79.41"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raebareli",
"value" : "Raebareli",
"geoCode" : {
"latitude" : "26.2309",
"longitude" : "81.23315"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mannargudi",
"value" : "Mannargudi",
"geoCode" : {
"latitude" : "10.66",
"longitude" : "79.44"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kandhamal",
"value" : "Kandhamal",
"geoCode" : {
"latitude" : "20.3",
"longitude" : "84.0"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karaikal",
"value" : "Karaikal",
"geoCode" : {
"latitude" : "10.92544",
"longitude" : "79.838005"
},
"stateValue" : "Puducherry",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sivaganga",
"value" : "Sivaganga",
"geoCode" : {
"latitude" : "10.11",
"longitude" : "78.66"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sambalpur",
"value" : "Sambalpur",
"geoCode" : {
"latitude" : "21.4",
"longitude" : "83.88333"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Muradnagar",
"value" : "Muradnagar",
"geoCode" : {
"latitude" : "28.78069",
"longitude" : "77.49865"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sonipat",
"value" : "Sonipat",
"geoCode" : {
"latitude" : "29.0",
"longitude" : "76.91667"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Adoor",
"value" : "Adoor",
"geoCode" : {
"latitude" : "9.152764",
"longitude" : "76.73555"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Adur",
"value" : "Adur",
"geoCode" : {
"latitude" : "9.15305",
"longitude" : "76.74201"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Srivilliputhur",
"value" : "Srivilliputhur",
"geoCode" : {
"latitude" : "9.5",
"longitude" : "77.63"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Budaun",
"value" : "Budaun",
"geoCode" : {
"latitude" : "28.11667",
"longitude" : "78.98333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajapalaiyam",
"value" : "Rajapalaiyam",
"geoCode" : {
"latitude" : "9.44967",
"longitude" : "77.5545"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajapalayam",
"value" : "Rajapalayam",
"geoCode" : {
"latitude" : "9.44",
"longitude" : "77.55"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hapur",
"value" : "Hapur",
"geoCode" : {
"latitude" : "28.72985",
"longitude" : "77.78068"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sirsa",
"value" : "Sirsa",
"geoCode" : {
"latitude" : "29.53489",
"longitude" : "75.02898"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sandila",
"value" : "Sandila",
"geoCode" : {
"latitude" : "27.07647",
"longitude" : "80.51791"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karaikkudi",
"value" : "Karaikkudi",
"geoCode" : {
"latitude" : "10.07354",
"longitude" : "78.7732"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gohana",
"value" : "Gohana",
"geoCode" : {
"latitude" : "29.13777",
"longitude" : "76.70247"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karaikudi",
"value" : "Karaikudi",
"geoCode" : {
"latitude" : "10.072847",
"longitude" : "78.77231"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pattukkottai",
"value" : "Pattukkottai",
"geoCode" : {
"latitude" : "10.42358",
"longitude" : "79.31949"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barwala",
"value" : "Barwala",
"geoCode" : {
"latitude" : "29.36747",
"longitude" : "75.90809"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kuchesar",
"value" : "Kuchesar",
"geoCode" : {
"latitude" : "28.68",
"longitude" : "77.94"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Babugarh",
"value" : "Babugarh",
"geoCode" : {
"latitude" : "28.72",
"longitude" : "77.86"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gorakhpur",
"value" : "Gorakhpur",
"geoCode" : {
"latitude" : "29.44768",
"longitude" : "75.67206"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nagapattinam",
"value" : "Nagapattinam",
"geoCode" : {
"latitude" : "10.76441",
"longitude" : "79.84219"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arantangi",
"value" : "Arantangi",
"geoCode" : {
"latitude" : "10.16923",
"longitude" : "79.00234"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fatehabad",
"value" : "Fatehabad",
"geoCode" : {
"latitude" : "29.51525",
"longitude" : "75.45554"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jind",
"value" : "Jind",
"geoCode" : {
"latitude" : "29.31577",
"longitude" : "76.31502"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lucknow",
"value" : "Lucknow",
"geoCode" : {
"latitude" : "26.83928",
"longitude" : "80.92313"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sivakasi",
"value" : "Sivakasi",
"geoCode" : {
"latitude" : "9.44999",
"longitude" : "77.79797"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hardoi",
"value" : "Hardoi",
"geoCode" : {
"latitude" : "27.41667",
"longitude" : "80.25"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Phulbani",
"value" : "Phulbani",
"geoCode" : {
"latitude" : "20.05",
"longitude" : "84.24"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Renukoot",
"value" : "Renukoot",
"geoCode" : {
"latitude" : "24.23",
"longitude" : "83.05"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Velankanni",
"value" : "Velankanni",
"geoCode" : {
"latitude" : "10.67",
"longitude" : "79.85"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Meerut",
"value" : "Meerut",
"geoCode" : {
"latitude" : "28.91667",
"longitude" : "77.68333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jharsuguda",
"value" : "Jharsuguda",
"geoCode" : {
"latitude" : "21.85531",
"longitude" : "84.00698"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Virudhunagar",
"value" : "Virudhunagar",
"geoCode" : {
"latitude" : "9.45",
"longitude" : "77.92"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baraut",
"value" : "Baraut",
"geoCode" : {
"latitude" : "29.10177",
"longitude" : "77.255066"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Punalur",
"value" : "Punalur",
"geoCode" : {
"latitude" : "9.01",
"longitude" : "76.91"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kollam",
"value" : "Kollam",
"geoCode" : {
"latitude" : "8.88113",
"longitude" : "76.58469"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gauriganj",
"value" : "Gauriganj",
"geoCode" : {
"latitude" : "26.207111",
"longitude" : "81.69386"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Aruppukkottai",
"value" : "Aruppukkottai",
"geoCode" : {
"latitude" : "9.5096",
"longitude" : "78.09588"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mirzapur",
"value" : "Mirzapur",
"geoCode" : {
"latitude" : "25.1449",
"longitude" : "82.56534"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mansa",
"value" : "Mansa",
"geoCode" : {
"latitude" : "29.69",
"longitude" : "75.23"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Amethi",
"value" : "Amethi",
"geoCode" : {
"latitude" : "26.16",
"longitude" : "81.77"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Samalkha",
"value" : "Samalkha",
"geoCode" : {
"latitude" : "29.23552",
"longitude" : "77.01273"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sambhal",
"value" : "Sambhal",
"geoCode" : {
"latitude" : "28.58498",
"longitude" : "78.56959"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sonbhadra",
"value" : "Sonbhadra",
"geoCode" : {
"latitude" : "24.40212",
"longitude" : "83.05352"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nawabganj (Barabanki)",
"value" : "Nawabganj (Barabanki)",
"geoCode" : {
"latitude" : "26.60458",
"longitude" : "81.36327"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sankarankoil",
"value" : "Sankarankoil",
"geoCode" : {
"latitude" : "9.18",
"longitude" : "77.53"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udayagiri",
"value" : "Udayagiri",
"geoCode" : {
"latitude" : "20.12416",
"longitude" : "84.36869"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sattur",
"value" : "Sattur",
"geoCode" : {
"latitude" : "9.35",
"longitude" : "77.92"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sri Ganganagar",
"value" : "Sri Ganganagar",
"geoCode" : {
"latitude" : "29.915121",
"longitude" : "73.85875"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ganganagar",
"value" : "Ganganagar",
"geoCode" : {
"latitude" : "29.92009",
"longitude" : "73.87496"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jashpur",
"value" : "Jashpur",
"geoCode" : {
"latitude" : "22.78495",
"longitude" : "83.84573"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ratia",
"value" : "Ratia",
"geoCode" : {
"latitude" : "29.684353",
"longitude" : "75.57397"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panipat",
"value" : "Panipat",
"geoCode" : {
"latitude" : "29.33259",
"longitude" : "76.92634"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barabanki",
"value" : "Barabanki",
"geoCode" : {
"latitude" : "26.91",
"longitude" : "81.16"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gajraula",
"value" : "Gajraula",
"geoCode" : {
"latitude" : "28.8457",
"longitude" : "78.2396"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narwana",
"value" : "Narwana",
"geoCode" : {
"latitude" : "29.59903",
"longitude" : "76.11927"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhadohi",
"value" : "Bhadohi",
"geoCode" : {
"latitude" : "25.39",
"longitude" : "82.55"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fatehpur (Barabanki)",
"value" : "Fatehpur (Barabanki)",
"geoCode" : {
"latitude" : "26.9268",
"longitude" : "81.18338"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kottarakkara",
"value" : "Kottarakkara",
"geoCode" : {
"latitude" : "8.82",
"longitude" : "76.86"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shahjahanpur",
"value" : "Shahjahanpur",
"geoCode" : {
"latitude" : "28.0",
"longitude" : "79.83333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bara Banki",
"value" : "Bara Banki",
"geoCode" : {
"latitude" : "26.94",
"longitude" : "81.19"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tenkasi",
"value" : "Tenkasi",
"geoCode" : {
"latitude" : "8.958407",
"longitude" : "77.30601"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sidhauli",
"value" : "Sidhauli",
"geoCode" : {
"latitude" : "27.28208",
"longitude" : "80.83443"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thenkasi",
"value" : "Thenkasi",
"geoCode" : {
"latitude" : "8.96003",
"longitude" : "77.31525"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tohana",
"value" : "Tohana",
"geoCode" : {
"latitude" : "29.71444",
"longitude" : "75.90129"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dabwali",
"value" : "Dabwali",
"geoCode" : {
"latitude" : "29.94906",
"longitude" : "74.73832"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kovilpatti",
"value" : "Kovilpatti",
"geoCode" : {
"latitude" : "9.17167",
"longitude" : "77.86989"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Attingal",
"value" : "Attingal",
"geoCode" : {
"latitude" : "8.7",
"longitude" : "76.8"
},
"stateValue" : "Karnataka",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Varkala",
"value" : "Varkala",
"geoCode" : {
"latitude" : "8.66",
"longitude" : "76.76"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bareilly",
"value" : "Bareilly",
"geoCode" : {
"latitude" : "28.41667",
"longitude" : "79.38333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Amroha",
"value" : "Amroha",
"geoCode" : {
"latitude" : "28.90314",
"longitude" : "78.46984"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gharaunda",
"value" : "Gharaunda",
"geoCode" : {
"latitude" : "29.53692",
"longitude" : "76.97142"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shamli",
"value" : "Shamli",
"geoCode" : {
"latitude" : "29.4497",
"longitude" : "77.30959"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Abohar",
"value" : "Abohar",
"geoCode" : {
"latitude" : "30.14453",
"longitude" : "74.19552"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Moradabad",
"value" : "Moradabad",
"geoCode" : {
"latitude" : "28.8525",
"longitude" : "78.79703"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bisalpur",
"value" : "Bisalpur",
"geoCode" : {
"latitude" : "28.279886",
"longitude" : "79.80367"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karnal",
"value" : "Karnal",
"geoCode" : {
"latitude" : "29.66667",
"longitude" : "76.83333"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malout",
"value" : "Malout",
"geoCode" : {
"latitude" : "30.16",
"longitude" : "74.57"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kaithal",
"value" : "Kaithal",
"geoCode" : {
"latitude" : "29.80153",
"longitude" : "76.39959"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sitapur",
"value" : "Sitapur",
"geoCode" : {
"latitude" : "27.5",
"longitude" : "80.91667"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thiruvananthapuram",
"value" : "Thiruvananthapuram",
"geoCode" : {
"latitude" : "8.60399",
"longitude" : "76.98574"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Muzaffarnagar",
"value" : "Muzaffarnagar",
"geoCode" : {
"latitude" : "29.45",
"longitude" : "77.58333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rudraprayag",
"value" : "Rudraprayag",
"geoCode" : {
"latitude" : "25.2953",
"longitude" : "82.99857"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Berhampur",
"value" : "Berhampur",
"geoCode" : {
"latitude" : "19.315826",
"longitude" : "84.78283"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Giddarbaha",
"value" : "Giddarbaha",
"geoCode" : {
"latitude" : "30.200966",
"longitude" : "74.66199"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Brahmapur",
"value" : "Brahmapur",
"geoCode" : {
"latitude" : "19.31151",
"longitude" : "84.7929"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Varanasi",
"value" : "Varanasi",
"geoCode" : {
"latitude" : "25.31668",
"longitude" : "83.01041"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ambasamudram",
"value" : "Ambasamudram",
"geoCode" : {
"latitude" : "8.7",
"longitude" : "77.45"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ramanathapuram",
"value" : "Ramanathapuram",
"geoCode" : {
"latitude" : "9.37158",
"longitude" : "78.83077"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bathinda",
"value" : "Bathinda",
"geoCode" : {
"latitude" : "30.210995",
"longitude" : "74.94547"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jaunpur",
"value" : "Jaunpur",
"geoCode" : {
"latitude" : "25.75",
"longitude" : "82.75"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Trivandrum",
"value" : "Trivandrum",
"geoCode" : {
"latitude" : "8.484528",
"longitude" : "76.94774"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhatinda",
"value" : "Bhatinda",
"geoCode" : {
"latitude" : "30.21641",
"longitude" : "74.94176"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mughalsarai",
"value" : "Mughalsarai",
"geoCode" : {
"latitude" : "25.283775",
"longitude" : "83.11557"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mughal Sarai",
"value" : "Mughal Sarai",
"geoCode" : {
"latitude" : "25.28307",
"longitude" : "83.11968"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tirunelveli",
"value" : "Tirunelveli",
"geoCode" : {
"latitude" : "8.72742",
"longitude" : "77.6838"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Garhwa",
"value" : "Garhwa",
"geoCode" : {
"latitude" : "24.15899",
"longitude" : "83.80766"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gola Gokarannath",
"value" : "Gola Gokarannath",
"geoCode" : {
"latitude" : "28.07",
"longitude" : "80.47"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Faizabad",
"value" : "Faizabad",
"geoCode" : {
"latitude" : "26.75",
"longitude" : "82.0"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fazilka",
"value" : "Fazilka",
"geoCode" : {
"latitude" : "30.40207",
"longitude" : "74.02836"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pehowa",
"value" : "Pehowa",
"geoCode" : {
"latitude" : "29.97897",
"longitude" : "76.58249"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Neyyattinkara",
"value" : "Neyyattinkara",
"geoCode" : {
"latitude" : "8.4",
"longitude" : "77.08"
},
"stateValue" : "Kerala",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chandauli",
"value" : "Chandauli",
"geoCode" : {
"latitude" : "25.25803",
"longitude" : "83.26825"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhampur",
"value" : "Dhampur",
"geoCode" : {
"latitude" : "29.30883",
"longitude" : "78.51083"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Indri",
"value" : "Indri",
"geoCode" : {
"latitude" : "29.87999",
"longitude" : "77.05972"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pilibhit",
"value" : "Pilibhit",
"geoCode" : {
"latitude" : "28.63124",
"longitude" : "79.80436"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Deoband",
"value" : "Deoband",
"geoCode" : {
"latitude" : "29.688019",
"longitude" : "77.68205"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kurukshetra",
"value" : "Kurukshetra",
"geoCode" : {
"latitude" : "30.0",
"longitude" : "76.75"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thanesar",
"value" : "Thanesar",
"geoCode" : {
"latitude" : "29.96",
"longitude" : "76.91"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sangrur",
"value" : "Sangrur",
"geoCode" : {
"latitude" : "30.24506",
"longitude" : "75.84488"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ganjam",
"value" : "Ganjam",
"geoCode" : {
"latitude" : "19.38705",
"longitude" : "85.05079"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thoothukudi",
"value" : "Thoothukudi",
"geoCode" : {
"latitude" : "8.76735",
"longitude" : "78.13425"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Muktsar",
"value" : "Muktsar",
"geoCode" : {
"latitude" : "30.47",
"longitude" : "74.53"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sri Muktsar Sahib",
"value" : "Sri Muktsar Sahib",
"geoCode" : {
"latitude" : "30.47426",
"longitude" : "74.5166"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lalganj",
"value" : "Lalganj",
"geoCode" : {
"latitude" : "25.79612",
"longitude" : "82.99853"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Daltonganj",
"value" : "Daltonganj",
"geoCode" : {
"latitude" : "24.03971",
"longitude" : "84.0658"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rambha",
"value" : "Rambha",
"geoCode" : {
"latitude" : "19.51",
"longitude" : "85.09"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Puranpur",
"value" : "Puranpur",
"geoCode" : {
"latitude" : "28.51061",
"longitude" : "80.14529"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ambedkar Nagar",
"value" : "Ambedkar Nagar",
"geoCode" : {
"latitude" : "26.423304",
"longitude" : "82.53612"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Akbarpur",
"value" : "Akbarpur",
"geoCode" : {
"latitude" : "26.42",
"longitude" : "82.54"
},
"stateValue" : "Telangana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ayodhya",
"value" : "Ayodhya",
"geoCode" : {
"latitude" : "26.79909",
"longitude" : "82.2047"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bijnor",
"value" : "Bijnor",
"geoCode" : {
"latitude" : "29.41667",
"longitude" : "78.51667"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Roorkee",
"value" : "Roorkee",
"geoCode" : {
"latitude" : "29.7",
"longitude" : "77.85"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kashipur",
"value" : "Kashipur",
"geoCode" : {
"latitude" : "29.21399",
"longitude" : "78.95693"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nayagarh",
"value" : "Nayagarh",
"geoCode" : {
"latitude" : "20.12882",
"longitude" : "85.09626"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rudrapur",
"value" : "Rudrapur",
"geoCode" : {
"latitude" : "28.982435",
"longitude" : "79.39776"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ladwa",
"value" : "Ladwa",
"geoCode" : {
"latitude" : "29.9935",
"longitude" : "77.04563"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barnala",
"value" : "Barnala",
"geoCode" : {
"latitude" : "30.37451",
"longitude" : "75.5487"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nanguneri",
"value" : "Nanguneri",
"geoCode" : {
"latitude" : "8.48",
"longitude" : "77.65"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mailani",
"value" : "Mailani",
"geoCode" : {
"latitude" : "28.4",
"longitude" : "80.36"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gumla",
"value" : "Gumla",
"geoCode" : {
"latitude" : "23.046715",
"longitude" : "84.558525"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bazpur",
"value" : "Bazpur",
"geoCode" : {
"latitude" : "29.16",
"longitude" : "79.16"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhabhua",
"value" : "Bhabhua",
"geoCode" : {
"latitude" : "25.04873",
"longitude" : "83.61485"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalalabad",
"value" : "Jalalabad",
"geoCode" : {
"latitude" : "30.60622",
"longitude" : "74.25727"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Angul",
"value" : "Angul",
"geoCode" : {
"latitude" : "20.84089",
"longitude" : "85.10192"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sitarganj",
"value" : "Sitarganj",
"geoCode" : {
"latitude" : "28.91",
"longitude" : "79.7"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gonda",
"value" : "Gonda",
"geoCode" : {
"latitude" : "27.18581",
"longitude" : "81.96693"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sundargarh",
"value" : "Sundargarh",
"geoCode" : {
"latitude" : "22.225908",
"longitude" : "84.85781"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raurkela",
"value" : "Raurkela",
"geoCode" : {
"latitude" : "22.22496",
"longitude" : "84.86414"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kotkapura",
"value" : "Kotkapura",
"geoCode" : {
"latitude" : "30.5819",
"longitude" : "74.83298"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udham Singh Nagar",
"value" : "Udham Singh Nagar",
"geoCode" : {
"latitude" : "29.02746",
"longitude" : "79.52347"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kantilo",
"value" : "Kantilo",
"geoCode" : {
"latitude" : "20.36",
"longitude" : "85.19"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khordha",
"value" : "Khordha",
"geoCode" : {
"latitude" : "19.79",
"longitude" : "85.23"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Saharanpur",
"value" : "Saharanpur",
"geoCode" : {
"latitude" : "29.9",
"longitude" : "77.68333"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nabha",
"value" : "Nabha",
"geoCode" : {
"latitude" : "30.37577",
"longitude" : "76.15292"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palia Kalan",
"value" : "Palia Kalan",
"geoCode" : {
"latitude" : "28.42",
"longitude" : "80.57"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Patiala",
"value" : "Patiala",
"geoCode" : {
"latitude" : "30.33625",
"longitude" : "76.3922"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Garhwal",
"value" : "Garhwal",
"geoCode" : {
"latitude" : "29.51",
"longitude" : "78.75"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Faridkot",
"value" : "Faridkot",
"geoCode" : {
"latitude" : "30.67399",
"longitude" : "74.75579"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Talcher",
"value" : "Talcher",
"geoCode" : {
"latitude" : "20.93",
"longitude" : "85.22"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nagercoil",
"value" : "Nagercoil",
"geoCode" : {
"latitude" : "8.17899",
"longitude" : "77.43227"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tiruchchendur",
"value" : "Tiruchchendur",
"geoCode" : {
"latitude" : "8.42714",
"longitude" : "78.02605"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rourkela",
"value" : "Rourkela",
"geoCode" : {
"latitude" : "21.76",
"longitude" : "85.11"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kaladhungi",
"value" : "Kaladhungi",
"geoCode" : {
"latitude" : "29.29",
"longitude" : "79.31"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Latehar",
"value" : "Latehar",
"geoCode" : {
"latitude" : "23.74",
"longitude" : "84.5"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nainital",
"value" : "Nainital",
"geoCode" : {
"latitude" : "29.19",
"longitude" : "79.5"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khatima",
"value" : "Khatima",
"geoCode" : {
"latitude" : "28.920916",
"longitude" : "79.96963"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mukteshwar",
"value" : "Mukteshwar",
"geoCode" : {
"latitude" : "29.21",
"longitude" : "79.47"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bahraich",
"value" : "Bahraich",
"geoCode" : {
"latitude" : "27.80021",
"longitude" : "81.51855"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bagha Purana",
"value" : "Bagha Purana",
"geoCode" : {
"latitude" : "30.684683",
"longitude" : "75.09286"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jagadhri",
"value" : "Jagadhri",
"geoCode" : {
"latitude" : "30.16719",
"longitude" : "77.30367"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Azamgarh",
"value" : "Azamgarh",
"geoCode" : {
"latitude" : "26.06832",
"longitude" : "83.18358"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haldwani-Cum-Kathgodam",
"value" : "Haldwani-Cum-Kathgodam",
"geoCode" : {
"latitude" : "29.22",
"longitude" : "79.53"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haldwani",
"value" : "Haldwani",
"geoCode" : {
"latitude" : "29.22254",
"longitude" : "79.5286"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tuticorin",
"value" : "Tuticorin",
"geoCode" : {
"latitude" : "8.37",
"longitude" : "78.06"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lohardaga",
"value" : "Lohardaga",
"geoCode" : {
"latitude" : "23.43136",
"longitude" : "84.68364"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kotdwara",
"value" : "Kotdwara",
"geoCode" : {
"latitude" : "29.74612",
"longitude" : "78.52219"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ghazipur",
"value" : "Ghazipur",
"geoCode" : {
"latitude" : "25.58333",
"longitude" : "83.58526"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ambala",
"value" : "Ambala",
"geoCode" : {
"latitude" : "30.32854",
"longitude" : "76.9422"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khurda",
"value" : "Khurda",
"geoCode" : {
"latitude" : "19.91",
"longitude" : "85.42"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sasaram",
"value" : "Sasaram",
"geoCode" : {
"latitude" : "24.94",
"longitude" : "84.0"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Yamunanagar",
"value" : "Yamunanagar",
"geoCode" : {
"latitude" : "30.23644",
"longitude" : "77.30498"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chhachhrauli",
"value" : "Chhachhrauli",
"geoCode" : {
"latitude" : "30.23",
"longitude" : "77.35"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kanniyakumari",
"value" : "Kanniyakumari",
"geoCode" : {
"latitude" : "8.087887",
"longitude" : "77.546906"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haridwar",
"value" : "Haridwar",
"geoCode" : {
"latitude" : "29.94791",
"longitude" : "78.16025"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajpura",
"value" : "Rajpura",
"geoCode" : {
"latitude" : "30.47856",
"longitude" : "76.59284"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kanyakumari",
"value" : "Kanyakumari",
"geoCode" : {
"latitude" : "8.07",
"longitude" : "77.53"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rohtas",
"value" : "Rohtas",
"geoCode" : {
"latitude" : "24.97941",
"longitude" : "84.02774"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rameswaram",
"value" : "Rameswaram",
"geoCode" : {
"latitude" : "9.08",
"longitude" : "79.56"
},
"stateValue" : "Tamil Nadu",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Moga",
"value" : "Moga",
"geoCode" : {
"latitude" : "30.80376",
"longitude" : "75.14938"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhimtal",
"value" : "Bhimtal",
"geoCode" : {
"latitude" : "29.32",
"longitude" : "79.55"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dugadda",
"value" : "Dugadda",
"geoCode" : {
"latitude" : "29.81",
"longitude" : "78.6"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balrampur",
"value" : "Balrampur",
"geoCode" : {
"latitude" : "27.4",
"longitude" : "82.19"
},
"stateValue" : "Tripura",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Naini Tal",
"value" : "Naini Tal",
"geoCode" : {
"latitude" : "29.39743",
"longitude" : "79.44686"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lansdowne",
"value" : "Lansdowne",
"geoCode" : {
"latitude" : "29.75",
"longitude" : "78.74"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhowali",
"value" : "Bhowali",
"geoCode" : {
"latitude" : "29.37",
"longitude" : "79.51"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tanakpur",
"value" : "Tanakpur",
"geoCode" : {
"latitude" : "29.05",
"longitude" : "80.1"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Firozpur",
"value" : "Firozpur",
"geoCode" : {
"latitude" : "30.92574",
"longitude" : "74.61311"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Basti",
"value" : "Basti",
"geoCode" : {
"latitude" : "26.82816",
"longitude" : "82.77924"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pauri",
"value" : "Pauri",
"geoCode" : {
"latitude" : "29.8",
"longitude" : "78.74"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhenkanal",
"value" : "Dhenkanal",
"geoCode" : {
"latitude" : "20.75",
"longitude" : "85.5"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dehri",
"value" : "Dehri",
"geoCode" : {
"latitude" : "24.90247",
"longitude" : "84.18217"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fatehgarh Sahib",
"value" : "Fatehgarh Sahib",
"geoCode" : {
"latitude" : "30.64379",
"longitude" : "76.34787"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ranikhet",
"value" : "Ranikhet",
"geoCode" : {
"latitude" : "29.48",
"longitude" : "79.46"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mau",
"value" : "Mau",
"geoCode" : {
"latitude" : "25.925552",
"longitude" : "83.566055"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ghosi",
"value" : "Ghosi",
"geoCode" : {
"latitude" : "25.938305",
"longitude" : "83.56418"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Puri",
"value" : "Puri",
"geoCode" : {
"latitude" : "19.9",
"longitude" : "85.6"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khanna",
"value" : "Khanna",
"geoCode" : {
"latitude" : "30.70547",
"longitude" : "76.22196"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dera Bassi",
"value" : "Dera Bassi",
"geoCode" : {
"latitude" : "30.56",
"longitude" : "76.82"
},
"stateValue" : "Puducherry",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narayangarh",
"value" : "Narayangarh",
"geoCode" : {
"latitude" : "30.47848",
"longitude" : "77.131256"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khunti",
"value" : "Khunti",
"geoCode" : {
"latitude" : "22.88",
"longitude" : "85.12"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barbil",
"value" : "Barbil",
"geoCode" : {
"latitude" : "22.09",
"longitude" : "85.37"
},
"stateValue" : "Mizoram",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Aurangabad",
"value" : "Aurangabad",
"geoCode" : {
"latitude" : "24.75204",
"longitude" : "84.3742"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rishikesh",
"value" : "Rishikesh",
"geoCode" : {
"latitude" : "30.10778",
"longitude" : "78.29255"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kendujhar",
"value" : "Kendujhar",
"geoCode" : {
"latitude" : "21.5",
"longitude" : "85.5"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Narendranagar",
"value" : "Narendranagar",
"geoCode" : {
"latitude" : "30.13",
"longitude" : "78.3"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Zirakpur",
"value" : "Zirakpur",
"geoCode" : {
"latitude" : "30.637442",
"longitude" : "76.81545"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mohali",
"value" : "Mohali",
"geoCode" : {
"latitude" : "30.67995",
"longitude" : "76.72211"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barkot",
"value" : "Barkot",
"geoCode" : {
"latitude" : "30.0",
"longitude" : "78.66"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khalilabad",
"value" : "Khalilabad",
"geoCode" : {
"latitude" : "26.77577",
"longitude" : "83.05866"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ludhiana",
"value" : "Ludhiana",
"geoCode" : {
"latitude" : "30.91204",
"longitude" : "75.85379"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Paonta Sahib",
"value" : "Paonta Sahib",
"geoCode" : {
"latitude" : "30.43666",
"longitude" : "77.62462"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kharar",
"value" : "Kharar",
"geoCode" : {
"latitude" : "30.74632",
"longitude" : "76.64689"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nahan",
"value" : "Nahan",
"geoCode" : {
"latitude" : "30.56029",
"longitude" : "77.29426"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Champawat",
"value" : "Champawat",
"geoCode" : {
"latitude" : "29.33",
"longitude" : "80.07"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chakrata",
"value" : "Chakrata",
"geoCode" : {
"latitude" : "30.43",
"longitude" : "77.72"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Manimajra",
"value" : "Manimajra",
"geoCode" : {
"latitude" : "30.714373",
"longitude" : "76.84053"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Banga",
"value" : "Banga",
"geoCode" : {
"latitude" : "30.95",
"longitude" : "75.88"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chandigarh",
"value" : "Chandigarh",
"geoCode" : {
"latitude" : "30.73629",
"longitude" : "76.7884"
},
"stateValue" : "Chandigarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dehradun",
"value" : "Dehradun",
"geoCode" : {
"latitude" : "30.33",
"longitude" : "78.06"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Buxar",
"value" : "Buxar",
"geoCode" : {
"latitude" : "25.5",
"longitude" : "84.1"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Almora",
"value" : "Almora",
"geoCode" : {
"latitude" : "29.69223",
"longitude" : "79.49789"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Daudnagar",
"value" : "Daudnagar",
"geoCode" : {
"latitude" : "25.03323",
"longitude" : "84.39888"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panchkula",
"value" : "Panchkula",
"geoCode" : {
"latitude" : "30.72883",
"longitude" : "76.94716"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vikasnagar",
"value" : "Vikasnagar",
"geoCode" : {
"latitude" : "30.46944",
"longitude" : "77.77275"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhubaneswar",
"value" : "Bhubaneswar",
"geoCode" : {
"latitude" : "20.33287",
"longitude" : "85.80701"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lohaghat",
"value" : "Lohaghat",
"geoCode" : {
"latitude" : "29.404179",
"longitude" : "80.08422"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhubaneshwar",
"value" : "Bhubaneshwar",
"geoCode" : {
"latitude" : "20.27241",
"longitude" : "85.83385"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chatra",
"value" : "Chatra",
"geoCode" : {
"latitude" : "24.2",
"longitude" : "84.87"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Phillaur",
"value" : "Phillaur",
"geoCode" : {
"latitude" : "31.05",
"longitude" : "75.78"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bageshwar",
"value" : "Bageshwar",
"geoCode" : {
"latitude" : "29.66",
"longitude" : "79.69"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nakodar",
"value" : "Nakodar",
"geoCode" : {
"latitude" : "31.12",
"longitude" : "75.47"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Simdega",
"value" : "Simdega",
"geoCode" : {
"latitude" : "23.42",
"longitude" : "85.22"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Parwanoo",
"value" : "Parwanoo",
"geoCode" : {
"latitude" : "30.81",
"longitude" : "76.99"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mussoorie",
"value" : "Mussoorie",
"geoCode" : {
"latitude" : "30.45498",
"longitude" : "78.07068"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kasauli",
"value" : "Kasauli",
"geoCode" : {
"latitude" : "30.83",
"longitude" : "76.97"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalka",
"value" : "Kalka",
"geoCode" : {
"latitude" : "30.83982",
"longitude" : "76.94065"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ranchi",
"value" : "Ranchi",
"geoCode" : {
"latitude" : "23.34316",
"longitude" : "85.3094"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kausani",
"value" : "Kausani",
"geoCode" : {
"latitude" : "29.84",
"longitude" : "79.55"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhojpur",
"value" : "Bhojpur",
"geoCode" : {
"latitude" : "25.30886",
"longitude" : "84.44504"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharampur",
"value" : "Dharampur",
"geoCode" : {
"latitude" : "30.78",
"longitude" : "77.34"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nawanshahr",
"value" : "Nawanshahr",
"geoCode" : {
"latitude" : "31.02",
"longitude" : "76.5"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baddi",
"value" : "Baddi",
"geoCode" : {
"latitude" : "30.95783",
"longitude" : "76.79136"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tehri",
"value" : "Tehri",
"geoCode" : {
"latitude" : "30.39086",
"longitude" : "78.4803"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rupnagar",
"value" : "Rupnagar",
"geoCode" : {
"latitude" : "31.04",
"longitude" : "76.52"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ballia",
"value" : "Ballia",
"geoCode" : {
"latitude" : "25.83333",
"longitude" : "84.16667"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Siddharthnagar",
"value" : "Siddharthnagar",
"geoCode" : {
"latitude" : "27.260109",
"longitude" : "83.05762"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Phagwara",
"value" : "Phagwara",
"geoCode" : {
"latitude" : "31.22452",
"longitude" : "75.77387"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajgarh",
"value" : "Rajgarh",
"geoCode" : {
"latitude" : "30.85142",
"longitude" : "77.30066"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nalagarh",
"value" : "Nalagarh",
"geoCode" : {
"latitude" : "31.04168",
"longitude" : "76.72285"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chail",
"value" : "Chail",
"geoCode" : {
"latitude" : "30.93",
"longitude" : "77.2"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hazaribag",
"value" : "Hazaribag",
"geoCode" : {
"latitude" : "24.0",
"longitude" : "85.25"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kapurthala",
"value" : "Kapurthala",
"geoCode" : {
"latitude" : "31.38011",
"longitude" : "75.38105"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tarn Taran Sahib",
"value" : "Tarn Taran Sahib",
"geoCode" : {
"latitude" : "31.466448",
"longitude" : "74.91769"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Solan",
"value" : "Solan",
"geoCode" : {
"latitude" : "31.08333",
"longitude" : "76.83333"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sarahan",
"value" : "Sarahan",
"geoCode" : {
"latitude" : "30.9",
"longitude" : "77.51"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Deoria",
"value" : "Deoria",
"geoCode" : {
"latitude" : "26.66667",
"longitude" : "83.75"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chaibasa",
"value" : "Chaibasa",
"geoCode" : {
"latitude" : "22.55038",
"longitude" : "85.80249"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sherghati",
"value" : "Sherghati",
"geoCode" : {
"latitude" : "24.777208",
"longitude" : "84.9725"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Anandpur Sahib",
"value" : "Anandpur Sahib",
"geoCode" : {
"latitude" : "31.22",
"longitude" : "76.5"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalandhar",
"value" : "Jalandhar",
"geoCode" : {
"latitude" : "31.41667",
"longitude" : "75.61667"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Garhshankar",
"value" : "Garhshankar",
"geoCode" : {
"latitude" : "31.233135",
"longitude" : "76.50451"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kartarpur",
"value" : "Kartarpur",
"geoCode" : {
"latitude" : "31.44268",
"longitude" : "75.49847"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jubbal",
"value" : "Jubbal",
"geoCode" : {
"latitude" : "30.91",
"longitude" : "77.64"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hazaribagh",
"value" : "Hazaribagh",
"geoCode" : {
"latitude" : "23.99241",
"longitude" : "85.36162"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ramgarh",
"value" : "Ramgarh",
"geoCode" : {
"latitude" : "23.62",
"longitude" : "85.51"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gaya",
"value" : "Gaya",
"geoCode" : {
"latitude" : "24.79686",
"longitude" : "85.00385"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Uttarkashi",
"value" : "Uttarkashi",
"geoCode" : {
"latitude" : "30.7",
"longitude" : "78.3"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arki",
"value" : "Arki",
"geoCode" : {
"latitude" : "31.15",
"longitude" : "76.96"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cuttack",
"value" : "Cuttack",
"geoCode" : {
"latitude" : "20.5",
"longitude" : "86.25"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jagatsinghpur",
"value" : "Jagatsinghpur",
"geoCode" : {
"latitude" : "20.2",
"longitude" : "86.3"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kushinagar",
"value" : "Kushinagar",
"geoCode" : {
"latitude" : "26.73",
"longitude" : "83.88"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chamoli",
"value" : "Chamoli",
"geoCode" : {
"latitude" : "30.2",
"longitude" : "79.62"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rohru",
"value" : "Rohru",
"geoCode" : {
"latitude" : "31.1",
"longitude" : "77.39"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mukerian",
"value" : "Mukerian",
"geoCode" : {
"latitude" : "31.53",
"longitude" : "75.63"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Maharajganj",
"value" : "Maharajganj",
"geoCode" : {
"latitude" : "27.14553",
"longitude" : "83.56197"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Saraikela",
"value" : "Saraikela",
"geoCode" : {
"latitude" : "22.69963",
"longitude" : "85.93126"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nangal",
"value" : "Nangal",
"geoCode" : {
"latitude" : "31.388767",
"longitude" : "76.38183"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Amritsar",
"value" : "Amritsar",
"geoCode" : {
"latitude" : "31.67",
"longitude" : "74.84"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jajpur",
"value" : "Jajpur",
"geoCode" : {
"latitude" : "20.84149",
"longitude" : "86.31237"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Theog",
"value" : "Theog",
"geoCode" : {
"latitude" : "31.11",
"longitude" : "77.55"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kotkhai",
"value" : "Kotkhai",
"geoCode" : {
"latitude" : "31.1",
"longitude" : "77.59"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Seoni",
"value" : "Seoni",
"geoCode" : {
"latitude" : "31.24188",
"longitude" : "77.12362"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barhi",
"value" : "Barhi",
"geoCode" : {
"latitude" : "24.30379",
"longitude" : "85.41434"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hoshiarpur",
"value" : "Hoshiarpur",
"geoCode" : {
"latitude" : "31.53723",
"longitude" : "75.91269"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Siwan",
"value" : "Siwan",
"geoCode" : {
"latitude" : "26.22096",
"longitude" : "84.35609"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Daulatpur",
"value" : "Daulatpur",
"geoCode" : {
"latitude" : "31.46847",
"longitude" : "76.27082"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jahanabad",
"value" : "Jahanabad",
"geoCode" : {
"latitude" : "25.213264",
"longitude" : "84.98533"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jehanabad",
"value" : "Jehanabad",
"geoCode" : {
"latitude" : "25.21327",
"longitude" : "84.98533"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pipalkoti",
"value" : "Pipalkoti",
"geoCode" : {
"latitude" : "30.43",
"longitude" : "79.42"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pithoragarh",
"value" : "Pithoragarh",
"geoCode" : {
"latitude" : "30.0",
"longitude" : "80.25"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shimla",
"value" : "Shimla",
"geoCode" : {
"latitude" : "31.16667",
"longitude" : "77.58333"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ghumarwin",
"value" : "Ghumarwin",
"geoCode" : {
"latitude" : "31.43504",
"longitude" : "76.71288"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chapra",
"value" : "Chapra",
"geoCode" : {
"latitude" : "25.78031",
"longitude" : "84.74709"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Urmar Tanda",
"value" : "Urmar Tanda",
"geoCode" : {
"latitude" : "31.69996",
"longitude" : "75.57386"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Padrauna",
"value" : "Padrauna",
"geoCode" : {
"latitude" : "26.90575",
"longitude" : "83.97729"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kendrapara",
"value" : "Kendrapara",
"geoCode" : {
"latitude" : "20.5",
"longitude" : "86.5"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jhumri Telaiya",
"value" : "Jhumri Telaiya",
"geoCode" : {
"latitude" : "24.434158",
"longitude" : "85.52826"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Batala",
"value" : "Batala",
"geoCode" : {
"latitude" : "31.80921",
"longitude" : "75.20294"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Qadian",
"value" : "Qadian",
"geoCode" : {
"latitude" : "31.81",
"longitude" : "75.37"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharchula",
"value" : "Dharchula",
"geoCode" : {
"latitude" : "29.97",
"longitude" : "80.57"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jamshedpur",
"value" : "Jamshedpur",
"geoCode" : {
"latitude" : "22.80278",
"longitude" : "86.18545"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dasuya",
"value" : "Dasuya",
"geoCode" : {
"latitude" : "31.806068",
"longitude" : "75.66379"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sundarnagar",
"value" : "Sundarnagar",
"geoCode" : {
"latitude" : "31.53753",
"longitude" : "76.89308"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Joshimath",
"value" : "Joshimath",
"geoCode" : {
"latitude" : "30.49",
"longitude" : "79.7"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nawada",
"value" : "Nawada",
"geoCode" : {
"latitude" : "24.75",
"longitude" : "85.5"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Patna",
"value" : "Patna",
"geoCode" : {
"latitude" : "25.41667",
"longitude" : "85.16667"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gurdaspur",
"value" : "Gurdaspur",
"geoCode" : {
"latitude" : "31.92",
"longitude" : "75.27"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhadrak",
"value" : "Bhadrak",
"geoCode" : {
"latitude" : "21.0",
"longitude" : "86.6"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nadaun",
"value" : "Nadaun",
"geoCode" : {
"latitude" : "31.68595",
"longitude" : "76.52089"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mayurbhanj",
"value" : "Mayurbhanj",
"geoCode" : {
"latitude" : "21.75",
"longitude" : "86.5"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajgir",
"value" : "Rajgir",
"geoCode" : {
"latitude" : "24.98",
"longitude" : "85.43"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bokaro",
"value" : "Bokaro",
"geoCode" : {
"latitude" : "23.68562",
"longitude" : "85.99026"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bagaha",
"value" : "Bagaha",
"geoCode" : {
"latitude" : "27.093777",
"longitude" : "84.09337"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhariwal",
"value" : "Dhariwal",
"geoCode" : {
"latitude" : "31.958504",
"longitude" : "75.32324"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hamirpur",
"value" : "Hamirpur",
"geoCode" : {
"latitude" : "31.75",
"longitude" : "76.5"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rampur",
"value" : "Rampur",
"geoCode" : {
"latitude" : "31.44943",
"longitude" : "77.63087"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gopalganj",
"value" : "Gopalganj",
"geoCode" : {
"latitude" : "26.25449",
"longitude" : "84.79421"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Banjar",
"value" : "Banjar",
"geoCode" : {
"latitude" : "31.56",
"longitude" : "77.36"
},
"stateValue" : "Haryana",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mandi",
"value" : "Mandi",
"geoCode" : {
"latitude" : "31.71194",
"longitude" : "76.93273"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Giridih",
"value" : "Giridih",
"geoCode" : {
"latitude" : "24.25",
"longitude" : "85.91667"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hajipur",
"value" : "Hajipur",
"geoCode" : {
"latitude" : "25.68544",
"longitude" : "85.20981"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bokaro Steel City",
"value" : "Bokaro Steel City",
"geoCode" : {
"latitude" : "23.637375",
"longitude" : "86.162964"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bettiah",
"value" : "Bettiah",
"geoCode" : {
"latitude" : "26.80229",
"longitude" : "84.50311"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chas",
"value" : "Chas",
"geoCode" : {
"latitude" : "23.636179",
"longitude" : "86.18281"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bihar Sharif",
"value" : "Bihar Sharif",
"geoCode" : {
"latitude" : "25.20084",
"longitude" : "85.52389"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baleshwar",
"value" : "Baleshwar",
"geoCode" : {
"latitude" : "21.5",
"longitude" : "86.75"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ramnagar",
"value" : "Ramnagar",
"geoCode" : {
"latitude" : "27.16371",
"longitude" : "84.32342"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Purulia",
"value" : "Purulia",
"geoCode" : {
"latitude" : "23.333334",
"longitude" : "86.36667"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baripada",
"value" : "Baripada",
"geoCode" : {
"latitude" : "21.936886",
"longitude" : "86.72446"
},
"stateValue" : "Orissa",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nalanda",
"value" : "Nalanda",
"geoCode" : {
"latitude" : "25.25",
"longitude" : "85.58333"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Vaishali",
"value" : "Vaishali",
"geoCode" : {
"latitude" : "25.75",
"longitude" : "85.41667"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chakia",
"value" : "Chakia",
"geoCode" : {
"latitude" : "26.408403",
"longitude" : "85.0402"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balasore",
"value" : "Balasore",
"geoCode" : {
"latitude" : "21.49266",
"longitude" : "86.93348"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mothihari",
"value" : "Mothihari",
"geoCode" : {
"latitude" : "26.64862",
"longitude" : "84.91656"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gopalpur",
"value" : "Gopalpur",
"geoCode" : {
"latitude" : "32.11",
"longitude" : "76.45"
},
"stateValue" : "Odisha",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jharia",
"value" : "Jharia",
"geoCode" : {
"latitude" : "23.74079",
"longitude" : "86.41456"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pathankot",
"value" : "Pathankot",
"geoCode" : {
"latitude" : "32.27484",
"longitude" : "75.65287"
},
"stateValue" : "Punjab",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kangra",
"value" : "Kangra",
"geoCode" : {
"latitude" : "32.16667",
"longitude" : "76.25"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sheikhpura",
"value" : "Sheikhpura",
"geoCode" : {
"latitude" : "25.132347",
"longitude" : "85.8523"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Palampur",
"value" : "Palampur",
"geoCode" : {
"latitude" : "32.11453",
"longitude" : "76.55681"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hirapur",
"value" : "Hirapur",
"geoCode" : {
"latitude" : "23.80308",
"longitude" : "86.43413"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jumri Tilaiya",
"value" : "Jumri Tilaiya",
"geoCode" : {
"latitude" : "23.80329",
"longitude" : "86.44256"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhanbad",
"value" : "Dhanbad",
"geoCode" : {
"latitude" : "23.80199",
"longitude" : "86.44324"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sikandra",
"value" : "Sikandra",
"geoCode" : {
"latitude" : "24.94",
"longitude" : "86.0"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nurpur",
"value" : "Nurpur",
"geoCode" : {
"latitude" : "32.3",
"longitude" : "75.88"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharamsala",
"value" : "Dharamsala",
"geoCode" : {
"latitude" : "32.22006",
"longitude" : "76.32013"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kulu",
"value" : "Kulu",
"geoCode" : {
"latitude" : "32.0",
"longitude" : "77.25"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nagar",
"value" : "Nagar",
"geoCode" : {
"latitude" : "32.04",
"longitude" : "77.12"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raxaul",
"value" : "Raxaul",
"geoCode" : {
"latitude" : "26.97808",
"longitude" : "84.85044"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Muzaffarpur",
"value" : "Muzaffarpur",
"geoCode" : {
"latitude" : "26.16667",
"longitude" : "85.41667"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haripur",
"value" : "Haripur",
"geoCode" : {
"latitude" : "32.14",
"longitude" : "77.17"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jamui",
"value" : "Jamui",
"geoCode" : {
"latitude" : "24.92082",
"longitude" : "86.17538"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sheohar",
"value" : "Sheohar",
"geoCode" : {
"latitude" : "26.51208",
"longitude" : "85.30051"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karjan",
"value" : "Karjan",
"geoCode" : {
"latitude" : "32.16",
"longitude" : "77.18"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lakhisarai",
"value" : "Lakhisarai",
"geoCode" : {
"latitude" : "25.173933",
"longitude" : "86.094925"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kathua",
"value" : "Kathua",
"geoCode" : {
"latitude" : "32.58333",
"longitude" : "75.5"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dalhousie",
"value" : "Dalhousie",
"geoCode" : {
"latitude" : "32.55219",
"longitude" : "75.94663"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Samastipur",
"value" : "Samastipur",
"geoCode" : {
"latitude" : "25.75",
"longitude" : "85.91667"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mansar",
"value" : "Mansar",
"geoCode" : {
"latitude" : "32.69",
"longitude" : "75.14"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jammu City",
"value" : "Jammu City",
"geoCode" : {
"latitude" : "32.735794",
"longitude" : "74.82147"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jammu",
"value" : "Jammu",
"geoCode" : {
"latitude" : "32.75",
"longitude" : "74.83333"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Begusarai",
"value" : "Begusarai",
"geoCode" : {
"latitude" : "25.41853",
"longitude" : "86.13389"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chamba",
"value" : "Chamba",
"geoCode" : {
"latitude" : "32.57147",
"longitude" : "76.10229"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jamtara",
"value" : "Jamtara",
"geoCode" : {
"latitude" : "23.961235",
"longitude" : "86.8048"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bankura",
"value" : "Bankura",
"geoCode" : {
"latitude" : "23.25",
"longitude" : "87.06667"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sitamarhi",
"value" : "Sitamarhi",
"geoCode" : {
"latitude" : "26.66667",
"longitude" : "85.5"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Asansol",
"value" : "Asansol",
"geoCode" : {
"latitude" : "23.683332",
"longitude" : "86.96667"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Deoghar",
"value" : "Deoghar",
"geoCode" : {
"latitude" : "24.490816",
"longitude" : "86.68857"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barabazar",
"value" : "Barabazar",
"geoCode" : {
"latitude" : "22.412094",
"longitude" : "87.32805"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Medinipur",
"value" : "Medinipur",
"geoCode" : {
"latitude" : "22.433332",
"longitude" : "87.333336"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Midnapore",
"value" : "Midnapore",
"geoCode" : {
"latitude" : "21.61",
"longitude" : "87.49"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Deogarh",
"value" : "Deogarh",
"geoCode" : {
"latitude" : "24.44382",
"longitude" : "86.72607"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Digha",
"value" : "Digha",
"geoCode" : {
"latitude" : "21.61",
"longitude" : "87.5"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Darbhanga",
"value" : "Darbhanga",
"geoCode" : {
"latitude" : "26.0",
"longitude" : "86.0"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kolkata",
"value" : "Kolkata",
"geoCode" : {
"latitude" : "22.541111",
"longitude" : "87.337776"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Patnitop",
"value" : "Patnitop",
"geoCode" : {
"latitude" : "32.92427",
"longitude" : "75.13851"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kharagpur",
"value" : "Kharagpur",
"geoCode" : {
"latitude" : "25.12446",
"longitude" : "86.55578"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Katra",
"value" : "Katra",
"geoCode" : {
"latitude" : "32.99167",
"longitude" : "74.93195"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tajpur",
"value" : "Tajpur",
"geoCode" : {
"latitude" : "21.65",
"longitude" : "87.61"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Munger",
"value" : "Munger",
"geoCode" : {
"latitude" : "25.36099",
"longitude" : "86.46515"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udhampur",
"value" : "Udhampur",
"geoCode" : {
"latitude" : "33.0",
"longitude" : "75.16667"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Khagaria",
"value" : "Khagaria",
"geoCode" : {
"latitude" : "25.49",
"longitude" : "86.47"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Madhubani",
"value" : "Madhubani",
"geoCode" : {
"latitude" : "26.35367",
"longitude" : "86.07169"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Contai",
"value" : "Contai",
"geoCode" : {
"latitude" : "21.78",
"longitude" : "87.75"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajauri",
"value" : "Rajauri",
"geoCode" : {
"latitude" : "33.27",
"longitude" : "74.29"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Doda",
"value" : "Doda",
"geoCode" : {
"latitude" : "33.14916",
"longitude" : "75.54746"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bangaon",
"value" : "Bangaon",
"geoCode" : {
"latitude" : "25.86728",
"longitude" : "86.51152"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kamarpukur",
"value" : "Kamarpukur",
"geoCode" : {
"latitude" : "22.9",
"longitude" : "87.65"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Banka",
"value" : "Banka",
"geoCode" : {
"latitude" : "24.89214",
"longitude" : "86.98425"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dumka",
"value" : "Dumka",
"geoCode" : {
"latitude" : "24.3",
"longitude" : "87.25"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jaynagar",
"value" : "Jaynagar",
"geoCode" : {
"latitude" : "26.59048",
"longitude" : "86.13791"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Saharsa",
"value" : "Saharsa",
"geoCode" : {
"latitude" : "25.87498",
"longitude" : "86.59611"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hesla",
"value" : "Hesla",
"geoCode" : {
"latitude" : "33.40379",
"longitude" : "74.22388"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arambagh Community Development Block",
"value" : "Arambagh Community Development Block",
"geoCode" : {
"latitude" : "22.88",
"longitude" : "87.78"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tamluk",
"value" : "Tamluk",
"geoCode" : {
"latitude" : "22.3",
"longitude" : "87.916664"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Siuri",
"value" : "Siuri",
"geoCode" : {
"latitude" : "23.905445",
"longitude" : "87.52462"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Suri",
"value" : "Suri",
"geoCode" : {
"latitude" : "23.916666",
"longitude" : "87.53333"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Godda",
"value" : "Godda",
"geoCode" : {
"latitude" : "24.84044",
"longitude" : "87.213005"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Supaul",
"value" : "Supaul",
"geoCode" : {
"latitude" : "26.11983",
"longitude" : "86.60176"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhagalpur",
"value" : "Bhagalpur",
"geoCode" : {
"latitude" : "25.29023",
"longitude" : "87.06665"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bolpur",
"value" : "Bolpur",
"geoCode" : {
"latitude" : "23.67",
"longitude" : "87.72"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haldiaa",
"value" : "Haldiaa",
"geoCode" : {
"latitude" : "22.0604",
"longitude" : "88.1097"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haldia",
"value" : "Haldia",
"geoCode" : {
"latitude" : "22.06046",
"longitude" : "88.10975"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bardhaman",
"value" : "Bardhaman",
"geoCode" : {
"latitude" : "23.25",
"longitude" : "87.85"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barddhaman",
"value" : "Barddhaman",
"geoCode" : {
"latitude" : "23.23242",
"longitude" : "87.86148"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Burdwan",
"value" : "Burdwan",
"geoCode" : {
"latitude" : "23.240978",
"longitude" : "87.86096"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Madhepura",
"value" : "Madhepura",
"geoCode" : {
"latitude" : "25.87733",
"longitude" : "86.85215"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Diamond Harbour",
"value" : "Diamond Harbour",
"geoCode" : {
"latitude" : "22.2",
"longitude" : "88.2"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Punch",
"value" : "Punch",
"geoCode" : {
"latitude" : "33.70178",
"longitude" : "74.19916"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Budge Budge",
"value" : "Budge Budge",
"geoCode" : {
"latitude" : "22.47",
"longitude" : "88.17"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Santoshpur",
"value" : "Santoshpur",
"geoCode" : {
"latitude" : "22.5",
"longitude" : "88.17"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pulwama",
"value" : "Pulwama",
"geoCode" : {
"latitude" : "33.71",
"longitude" : "74.83"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rampur Hat",
"value" : "Rampur Hat",
"geoCode" : {
"latitude" : "24.17737",
"longitude" : "87.78275"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Anantnag",
"value" : "Anantnag",
"geoCode" : {
"latitude" : "33.73068",
"longitude" : "75.15418"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Krishnapur",
"value" : "Krishnapur",
"geoCode" : {
"latitude" : "22.67",
"longitude" : "88.26"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Singur",
"value" : "Singur",
"geoCode" : {
"latitude" : "22.82",
"longitude" : "88.23"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Howrah",
"value" : "Howrah",
"geoCode" : {
"latitude" : "22.57688",
"longitude" : "88.31857"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "South 24 Parganas District",
"value" : "South 24 Parganas District",
"geoCode" : {
"latitude" : "22.16197",
"longitude" : "88.4317"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Badgam",
"value" : "Badgam",
"geoCode" : {
"latitude" : "33.85",
"longitude" : "74.76"
},
"stateValue" : "Himachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bally",
"value" : "Bally",
"geoCode" : {
"latitude" : "22.65",
"longitude" : "88.34"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chittaranjan",
"value" : "Chittaranjan",
"geoCode" : {
"latitude" : "22.487123",
"longitude" : "88.37507"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Udalguri",
"value" : "Udalguri",
"geoCode" : {
"latitude" : "22.59965",
"longitude" : "88.36085"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Uttarpara Kotrung",
"value" : "Uttarpara Kotrung",
"geoCode" : {
"latitude" : "22.67",
"longitude" : "88.35"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Serampore",
"value" : "Serampore",
"geoCode" : {
"latitude" : "22.75",
"longitude" : "88.34"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hooghly",
"value" : "Hooghly",
"geoCode" : {
"latitude" : "22.750172",
"longitude" : "88.344185"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baranagar",
"value" : "Baranagar",
"geoCode" : {
"latitude" : "22.64",
"longitude" : "88.37"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barasat",
"value" : "Barasat",
"geoCode" : {
"latitude" : "22.23333",
"longitude" : "88.45"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kulpi",
"value" : "Kulpi",
"geoCode" : {
"latitude" : "22.367233",
"longitude" : "88.42663"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kamarhati",
"value" : "Kamarhati",
"geoCode" : {
"latitude" : "22.67",
"longitude" : "88.37"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Panihati",
"value" : "Panihati",
"geoCode" : {
"latitude" : "22.69",
"longitude" : "88.37"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baruipur",
"value" : "Baruipur",
"geoCode" : {
"latitude" : "22.35",
"longitude" : "88.44"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Katwa",
"value" : "Katwa",
"geoCode" : {
"latitude" : "23.65",
"longitude" : "88.13"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barrackpore",
"value" : "Barrackpore",
"geoCode" : {
"latitude" : "22.75",
"longitude" : "88.36667"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Titagarh",
"value" : "Titagarh",
"geoCode" : {
"latitude" : "22.74",
"longitude" : "88.37"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "North 24 Parganas District",
"value" : "North 24 Parganas District",
"geoCode" : {
"latitude" : "22.13",
"longitude" : "88.5"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sodpur",
"value" : "Sodpur",
"geoCode" : {
"latitude" : "22.704166",
"longitude" : "88.39167"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Pakur",
"value" : "Pakur",
"geoCode" : {
"latitude" : "24.63",
"longitude" : "87.85"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "North Dumdum",
"value" : "North Dumdum",
"geoCode" : {
"latitude" : "22.639313",
"longitude" : "88.43106"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chinsurah",
"value" : "Chinsurah",
"geoCode" : {
"latitude" : "22.88",
"longitude" : "88.38"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chandannagar",
"value" : "Chandannagar",
"geoCode" : {
"latitude" : "22.866667",
"longitude" : "88.38333"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sahibganj",
"value" : "Sahibganj",
"geoCode" : {
"latitude" : "24.85",
"longitude" : "87.77"
},
"stateValue" : "Jharkhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dam Dam",
"value" : "Dam Dam",
"geoCode" : {
"latitude" : "22.660635",
"longitude" : "88.43661"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hooghly District",
"value" : "Hooghly District",
"geoCode" : {
"latitude" : "22.91",
"longitude" : "88.39"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bhatpara",
"value" : "Bhatpara",
"geoCode" : {
"latitude" : "22.86667",
"longitude" : "88.41667"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalna",
"value" : "Kalna",
"geoCode" : {
"latitude" : "23.21",
"longitude" : "88.35"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Halisahar",
"value" : "Halisahar",
"geoCode" : {
"latitude" : "22.95",
"longitude" : "88.42"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalyani",
"value" : "Kalyani",
"geoCode" : {
"latitude" : "22.96",
"longitude" : "88.42"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Purnia",
"value" : "Purnia",
"geoCode" : {
"latitude" : "25.81614",
"longitude" : "87.40708"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kanchrapara",
"value" : "Kanchrapara",
"geoCode" : {
"latitude" : "22.97",
"longitude" : "88.43"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Katihar",
"value" : "Katihar",
"geoCode" : {
"latitude" : "25.5",
"longitude" : "87.6"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bari",
"value" : "Bari",
"geoCode" : {
"latitude" : "25.771162",
"longitude" : "87.47698"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Purnea",
"value" : "Purnea",
"geoCode" : {
"latitude" : "25.781809",
"longitude" : "87.48887"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nabadwip",
"value" : "Nabadwip",
"geoCode" : {
"latitude" : "23.40722",
"longitude" : "88.37778"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Santipur",
"value" : "Santipur",
"geoCode" : {
"latitude" : "23.25",
"longitude" : "88.43"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Rajmahal",
"value" : "Rajmahal",
"geoCode" : {
"latitude" : "25.05",
"longitude" : "87.84"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Forbesganj",
"value" : "Forbesganj",
"geoCode" : {
"latitude" : "26.298605",
"longitude" : "87.268616"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Srinagar",
"value" : "Srinagar",
"geoCode" : {
"latitude" : "34.08565",
"longitude" : "74.80555"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chakdaha",
"value" : "Chakdaha",
"geoCode" : {
"latitude" : "23.08",
"longitude" : "88.52"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kasba",
"value" : "Kasba",
"geoCode" : {
"latitude" : "25.85643",
"longitude" : "87.53836"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Berhampore",
"value" : "Berhampore",
"geoCode" : {
"latitude" : "24.1",
"longitude" : "88.25"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lalpur",
"value" : "Lalpur",
"geoCode" : {
"latitude" : "23.083042",
"longitude" : "88.55442"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Habra",
"value" : "Habra",
"geoCode" : {
"latitude" : "22.83",
"longitude" : "88.63"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Krishnanagar",
"value" : "Krishnanagar",
"geoCode" : {
"latitude" : "23.4",
"longitude" : "88.5"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Murshidabad",
"value" : "Murshidabad",
"geoCode" : {
"latitude" : "24.18",
"longitude" : "88.27"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Baramula",
"value" : "Baramula",
"geoCode" : {
"latitude" : "34.19287",
"longitude" : "74.3692"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ranaghat",
"value" : "Ranaghat",
"geoCode" : {
"latitude" : "23.18",
"longitude" : "88.58"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gosaba",
"value" : "Gosaba",
"geoCode" : {
"latitude" : "22.12",
"longitude" : "88.82"
},
"stateValue" : "Uttarakhand",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sopore",
"value" : "Sopore",
"geoCode" : {
"latitude" : "34.286594",
"longitude" : "74.4628"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Malda",
"value" : "Malda",
"geoCode" : {
"latitude" : "25.0108",
"longitude" : "88.1411"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ingraj Bazar",
"value" : "Ingraj Bazar",
"geoCode" : {
"latitude" : "25.00447",
"longitude" : "88.14573"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Basirhat",
"value" : "Basirhat",
"geoCode" : {
"latitude" : "22.65722",
"longitude" : "88.89417"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kupwara",
"value" : "Kupwara",
"geoCode" : {
"latitude" : "34.52",
"longitude" : "74.26"
},
"stateValue" : "Jammu And Kashmir",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raiganj",
"value" : "Raiganj",
"geoCode" : {
"latitude" : "25.616667",
"longitude" : "88.11667"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kishanganj",
"value" : "Kishanganj",
"geoCode" : {
"latitude" : "26.09822",
"longitude" : "87.94504"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sakti",
"value" : "Sakti",
"geoCode" : {
"latitude" : "34.04",
"longitude" : "77.93"
},
"stateValue" : "Chhattisgarh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Leh",
"value" : "Leh",
"geoCode" : {
"latitude" : "34.16504",
"longitude" : "77.58402"
},
"stateValue" : "Ladakh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Raniganj",
"value" : "Raniganj",
"geoCode" : {
"latitude" : "25.64098",
"longitude" : "88.31314"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kaliaganj",
"value" : "Kaliaganj",
"geoCode" : {
"latitude" : "25.63",
"longitude" : "88.32"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kargil",
"value" : "Kargil",
"geoCode" : {
"latitude" : "34.55765",
"longitude" : "76.12622"
},
"stateValue" : "Ladakh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Uttar Dinajpur District",
"value" : "Uttar Dinajpur District",
"geoCode" : {
"latitude" : "26.25965",
"longitude" : "88.18843"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Balurghat",
"value" : "Balurghat",
"geoCode" : {
"latitude" : "25.21667",
"longitude" : "88.76667"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mirik",
"value" : "Mirik",
"geoCode" : {
"latitude" : "26.84",
"longitude" : "88.22"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kurseong",
"value" : "Kurseong",
"geoCode" : {
"latitude" : "26.8",
"longitude" : "88.26"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Siliguri",
"value" : "Siliguri",
"geoCode" : {
"latitude" : "26.71004",
"longitude" : "88.42851"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Darjeeling",
"value" : "Darjeeling",
"geoCode" : {
"latitude" : "27.041666",
"longitude" : "88.263054"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jorethang",
"value" : "Jorethang",
"geoCode" : {
"latitude" : "27.15",
"longitude" : "88.28"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lamahatta",
"value" : "Lamahatta",
"geoCode" : {
"latitude" : "27.04812",
"longitude" : "88.3427"
},
"stateValue" : "All",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Namchi",
"value" : "Namchi",
"geoCode" : {
"latitude" : "27.1",
"longitude" : "88.32"
},
"stateValue" : "Rajasthan",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Gyalshing",
"value" : "Gyalshing",
"geoCode" : {
"latitude" : "27.28952",
"longitude" : "88.25764"
},
"stateValue" : "Sikkim",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jalpaiguri",
"value" : "Jalpaiguri",
"geoCode" : {
"latitude" : "26.516666",
"longitude" : "88.73333"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kalimpong",
"value" : "Kalimpong",
"geoCode" : {
"latitude" : "27.07059",
"longitude" : "88.47529"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "South District",
"value" : "South District",
"geoCode" : {
"latitude" : "27.33333",
"longitude" : "88.41667"
},
"stateValue" : "Sikkim",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Fujairah",
"value" : "Fujairah",
"geoCode" : {
"latitude" : "25.12166",
"longitude" : "56.32639"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Gangtok",
"value" : "Gangtok",
"geoCode" : {
"latitude" : "27.32574",
"longitude" : "88.61216"
},
"stateValue" : "Sikkim",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mangan",
"value" : "Mangan",
"geoCode" : {
"latitude" : "27.50965",
"longitude" : "88.52206"
},
"stateValue" : "Sikkim",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Al Ain",
"value" : "Al Ain",
"geoCode" : {
"latitude" : "24.24345",
"longitude" : "55.7265"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Jamalpur",
"value" : "Jamalpur",
"geoCode" : {
"latitude" : "25.0",
"longitude" : "89.83333"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ras Al Khaimah",
"value" : "Ras Al Khaimah",
"geoCode" : {
"latitude" : "25.4611",
"longitude" : "56.04058"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Bagdogra",
"value" : "Bagdogra",
"geoCode" : {
"latitude" : "26.13",
"longitude" : "89.46"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cooch Behar",
"value" : "Cooch Behar",
"geoCode" : {
"latitude" : "26.316668",
"longitude" : "89.433334"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Birpara",
"value" : "Birpara",
"geoCode" : {
"latitude" : "26.69",
"longitude" : "89.27"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhaka",
"value" : "Dhaka",
"geoCode" : {
"latitude" : "23.776487",
"longitude" : "90.362816"
},
"stateValue" : "Dhaka Division",
"countryValue" : "Bangladesh"
}, {
"label" : "Alipurduar",
"value" : "Alipurduar",
"geoCode" : {
"latitude" : "26.49136",
"longitude" : "89.52796"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jaigaon",
"value" : "Jaigaon",
"geoCode" : {
"latitude" : "26.85",
"longitude" : "89.37"
},
"stateValue" : "West Bengal",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Al Dhaid",
"value" : "Al Dhaid",
"geoCode" : {
"latitude" : "25.74331",
"longitude" : "55.89634"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Umm Al Quwain",
"value" : "Umm Al Quwain",
"geoCode" : {
"latitude" : "25.49325",
"longitude" : "55.7351"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Tura",
"value" : "Tura",
"geoCode" : {
"latitude" : "25.51",
"longitude" : "90.19"
},
"stateValue" : "Manipur",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ajman",
"value" : "Ajman",
"geoCode" : {
"latitude" : "25.4032",
"longitude" : "55.52341"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Dhubri",
"value" : "Dhubri",
"geoCode" : {
"latitude" : "26.06749",
"longitude" : "90.02238"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sharjah",
"value" : "Sharjah",
"geoCode" : {
"latitude" : "25.33736",
"longitude" : "55.41205"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Dubai",
"value" : "Dubai",
"geoCode" : {
"latitude" : "25.07507",
"longitude" : "55.12984"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Downtown Jabel Ali",
"value" : "Downtown Jabel Ali",
"geoCode" : {
"latitude" : "24.977316",
"longitude" : "55.090973"
},
"stateValue" : "Dubai",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates"
}, {
"label" : "Kokrajhar",
"value" : "Kokrajhar",
"geoCode" : {
"latitude" : "26.4",
"longitude" : "90.27"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Agartala",
"value" : "Agartala",
"geoCode" : {
"latitude" : "23.83605",
"longitude" : "91.27939"
},
"stateValue" : "Tripura",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Goalpara",
"value" : "Goalpara",
"geoCode" : {
"latitude" : "25.99",
"longitude" : "90.75"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bongaigaon",
"value" : "Bongaigaon",
"geoCode" : {
"latitude" : "26.4603",
"longitude" : "90.6464"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Abu Dhabi",
"value" : "Abu Dhabi",
"geoCode" : {
"latitude" : "24.502419",
"longitude" : "54.373077"
},
"stateValue" : "All",
"countryLabel" : "United Arab Emirates",
"countryValue" : "United Arab Emirates",
"countryCode" : "AE"
}, {
"label" : "Nongstoin",
"value" : "Nongstoin",
"geoCode" : {
"latitude" : "25.5",
"longitude" : "91.26"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Barpeta",
"value" : "Barpeta",
"geoCode" : {
"latitude" : "26.47104",
"longitude" : "91.0308"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Cherrapunji",
"value" : "Cherrapunji",
"geoCode" : {
"latitude" : "25.30089",
"longitude" : "91.69619"
},
"stateValue" : "Meghalaya",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nalbari",
"value" : "Nalbari",
"geoCode" : {
"latitude" : "26.5",
"longitude" : "91.4"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dharmanagar",
"value" : "Dharmanagar",
"geoCode" : {
"latitude" : "24.36667",
"longitude" : "92.16667"
},
"stateValue" : "Tripura",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Shillong",
"value" : "Shillong",
"geoCode" : {
"latitude" : "25.56892",
"longitude" : "91.88313"
},
"stateValue" : "Meghalaya",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nongpoh",
"value" : "Nongpoh",
"geoCode" : {
"latitude" : "25.65",
"longitude" : "91.89"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ri-Bhoi",
"value" : "Ri-Bhoi",
"geoCode" : {
"latitude" : "25.88997",
"longitude" : "91.82707"
},
"stateValue" : "Meghalaya",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Guwahati",
"value" : "Guwahati",
"geoCode" : {
"latitude" : "26.1844",
"longitude" : "91.7458"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dispur",
"value" : "Dispur",
"geoCode" : {
"latitude" : "26.13564",
"longitude" : "91.80069"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lunglei",
"value" : "Lunglei",
"geoCode" : {
"latitude" : "22.9",
"longitude" : "92.75"
},
"stateValue" : "Mizoram",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Karimganj",
"value" : "Karimganj",
"geoCode" : {
"latitude" : "24.86",
"longitude" : "92.36"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "West Jaintia Hills",
"value" : "West Jaintia Hills",
"geoCode" : {
"latitude" : "25.450903",
"longitude" : "92.20891"
},
"stateValue" : "Meghalaya",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Serchhip",
"value" : "Serchhip",
"geoCode" : {
"latitude" : "23.27",
"longitude" : "92.77"
},
"stateValue" : "Meghalaya",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Aizwal",
"value" : "Aizwal",
"geoCode" : {
"latitude" : "23.734022",
"longitude" : "92.7179"
},
"stateValue" : "Mizoram",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mangaldai",
"value" : "Mangaldai",
"geoCode" : {
"latitude" : "26.41",
"longitude" : "91.97"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Hailakandi",
"value" : "Hailakandi",
"geoCode" : {
"latitude" : "24.68",
"longitude" : "92.56"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Darrang",
"value" : "Darrang",
"geoCode" : {
"latitude" : "26.46606",
"longitude" : "92.05452"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kolasib",
"value" : "Kolasib",
"geoCode" : {
"latitude" : "24.33",
"longitude" : "92.76"
},
"stateValue" : "Manipur",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Aizawl",
"value" : "Aizawl",
"geoCode" : {
"latitude" : "23.8",
"longitude" : "92.9"
},
"stateValue" : "Mizoram",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Champhai",
"value" : "Champhai",
"geoCode" : {
"latitude" : "22.73",
"longitude" : "93.13"
},
"stateValue" : "Manipur",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Silchar",
"value" : "Silchar",
"geoCode" : {
"latitude" : "24.82733",
"longitude" : "92.79787"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Haflong",
"value" : "Haflong",
"geoCode" : {
"latitude" : "25.16",
"longitude" : "93.01"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tawang",
"value" : "Tawang",
"geoCode" : {
"latitude" : "27.1",
"longitude" : "92.4"
},
"stateValue" : "Arunachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nagaon",
"value" : "Nagaon",
"geoCode" : {
"latitude" : "26.35037",
"longitude" : "92.69225"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bomdila",
"value" : "Bomdila",
"geoCode" : {
"latitude" : "27.19",
"longitude" : "92.38"
},
"stateValue" : "Arunachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tezpur",
"value" : "Tezpur",
"geoCode" : {
"latitude" : "26.63333",
"longitude" : "92.8"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Churachandpur",
"value" : "Churachandpur",
"geoCode" : {
"latitude" : "24.33",
"longitude" : "93.69"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bishnupur",
"value" : "Bishnupur",
"geoCode" : {
"latitude" : "24.60769",
"longitude" : "93.77998"
},
"stateValue" : "Manipur",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sonitpur",
"value" : "Sonitpur",
"geoCode" : {
"latitude" : "26.733442",
"longitude" : "93.151276"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dimapur",
"value" : "Dimapur",
"geoCode" : {
"latitude" : "25.73",
"longitude" : "93.64"
},
"stateValue" : "Nagaland",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Diphu",
"value" : "Diphu",
"geoCode" : {
"latitude" : "25.95",
"longitude" : "93.58"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Imphal",
"value" : "Imphal",
"geoCode" : {
"latitude" : "24.80805",
"longitude" : "93.9442"
},
"stateValue" : "Manipur",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Thoubal",
"value" : "Thoubal",
"geoCode" : {
"latitude" : "24.62",
"longitude" : "94.01"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Bokakhat",
"value" : "Bokakhat",
"geoCode" : {
"latitude" : "26.56",
"longitude" : "93.6"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Port Blair",
"value" : "Port Blair",
"geoCode" : {
"latitude" : "11.66613",
"longitude" : "92.74635"
},
"stateValue" : "Andaman And Nicobar Islands",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Itanagar",
"value" : "Itanagar",
"geoCode" : {
"latitude" : "27.08694",
"longitude" : "93.60987"
},
"stateValue" : "Arunachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kohima",
"value" : "Kohima",
"geoCode" : {
"latitude" : "25.67467",
"longitude" : "94.11099"
},
"stateValue" : "Nagaland",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Naharlagun",
"value" : "Naharlagun",
"geoCode" : {
"latitude" : "27.10467",
"longitude" : "93.69518"
},
"stateValue" : "Arunachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Golaghat",
"value" : "Golaghat",
"geoCode" : {
"latitude" : "26.5",
"longitude" : "93.96"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Ukhrul",
"value" : "Ukhrul",
"geoCode" : {
"latitude" : "25.05",
"longitude" : "94.4"
},
"stateValue" : "Maharashtra",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Wokha",
"value" : "Wokha",
"geoCode" : {
"latitude" : "26.16667",
"longitude" : "94.25"
},
"stateValue" : "Nagaland",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Phek",
"value" : "Phek",
"geoCode" : {
"latitude" : "25.66667",
"longitude" : "94.5"
},
"stateValue" : "Nagaland",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Zunheboto",
"value" : "Zunheboto",
"geoCode" : {
"latitude" : "26.0",
"longitude" : "94.5"
},
"stateValue" : "Nagaland",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Jorhat",
"value" : "Jorhat",
"geoCode" : {
"latitude" : "26.8",
"longitude" : "94.26"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Lakhimpur",
"value" : "Lakhimpur",
"geoCode" : {
"latitude" : "27.35",
"longitude" : "94.25"
},
"stateValue" : "Uttar Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sivasagar",
"value" : "Sivasagar",
"geoCode" : {
"latitude" : "26.96",
"longitude" : "94.61"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Sibsagar",
"value" : "Sibsagar",
"geoCode" : {
"latitude" : "26.98261",
"longitude" : "94.64245"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dhemaji",
"value" : "Dhemaji",
"geoCode" : {
"latitude" : "27.47",
"longitude" : "94.55"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Mon",
"value" : "Mon",
"geoCode" : {
"latitude" : "26.75",
"longitude" : "94.83333"
},
"stateValue" : "Nagaland",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Nazira",
"value" : "Nazira",
"geoCode" : {
"latitude" : "27.0",
"longitude" : "95.05"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Dibrugarh",
"value" : "Dibrugarh",
"geoCode" : {
"latitude" : "27.5",
"longitude" : "95.0"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Digboi",
"value" : "Digboi",
"geoCode" : {
"latitude" : "27.39321",
"longitude" : "95.61839"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tinsukia",
"value" : "Tinsukia",
"geoCode" : {
"latitude" : "27.6",
"longitude" : "95.6"
},
"stateValue" : "Assam",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Tezu",
"value" : "Tezu",
"geoCode" : {
"latitude" : "27.87",
"longitude" : "96.36"
},
"stateValue" : "Arunachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Kuwait City",
"value" : "Kuwait City",
"geoCode" : {
"latitude" : "29.3759",
"longitude" : "47.9774"
},
"stateValue" : "Capital Governorate",
"countryValue" : "Kuwait",
"countryCode" : "KU"
}, {
"label" : "Riyadh",
"value" : "Riyadh",
"geoCode" : {
"latitude" : "24.7136",
"longitude" : "46.6753"
},
"stateValue" : "Riyadh Province",
"countryValue" : "Saudi Arabia",
"countryCode" : "SA"
}, {
"label" : "Khet Huai Khwang",
"value" : "Khet Huai Khwang",
"geoCode" : {
"latitude" : "13.766677",
"longitude" : "100.574196"
},
"stateValue" : "Krung Thep Maha Nakhon",
"countryValue" : "Thailand"
}, {
"label" : "Lapangan Terbang Antarabangsa Bayan Lepas",
"value" : "Lapangan Terbang Antarabangsa Bayan Lepas",
"geoCode" : {
"latitude" : "5.2927995",
"longitude" : "100.26614"
},
"stateValue" : "Penang",
"countryValue" : "Malaysia"
}, {
"label" : "Magilds Industrial Park",
"value" : "Magilds Industrial Park",
"geoCode" : {
"latitude" : "3.2295718",
"longitude" : "101.57192"
},
"stateValue" : "Selangor",
"countryValue" : "Malaysia"
}, {
"label" : "Seksyen 13",
"value" : "Seksyen 13",
"geoCode" : {
"latitude" : "3.1137183",
"longitude" : "101.65291"
},
"stateValue" : "Wilayah Persekutuan Kuala Lumpur",
"countryValue" : "Malaysia"
}, {
"label" : "Bengkalis",
"value" : "Bengkalis",
"geoCode" : {
"latitude" : "1.489214",
"longitude" : "102.0801"
},
"stateValue" : "Riau",
"countryValue" : "Indonesia"
}, {
"label" : "Singapore",
"value" : "Singapore",
"geoCode" : {
"latitude" : "1.32698",
"longitude" : "103.84751"
},
"stateValue" : "Singapore",
"countryLabel" : "Singapore",
"countryValue" : "Singapore",
"countryCode" : "SG"
}, {
"label" : "Sukabumi",
"value" : "Sukabumi",
"geoCode" : {
"latitude" : "-6.9137635",
"longitude" : "106.93123"
},
"stateValue" : "Gujarat",
"countryValue" : "Indonesia",
"countryCode" : "IN"
}, {
"label" : "Pasighat",
"value" : "Pasighat",
"geoCode" : {
"latitude" : "38.47",
"longitude" : "121.36"
},
"stateValue" : "Arunachal Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Manila",
"value" : "Manila",
"geoCode" : {
"latitude" : "14.602187",
"longitude" : "120.984215"
},
"stateValue" : "Metro Manila",
"countryValue" : "Philippines"
}, {
"label" : "Rome",
"value" : "Rome",
"geoCode" : {
"latitude" : "41.875954",
"longitude" : "12.475694"
},
"stateValue" : "Lazio",
"countryValue" : "Italy"
}, {
"label" : "Salzburg",
"value" : "Salzburg",
"geoCode" : {
"latitude" : "47.81036",
"longitude" : "13.050358"
},
"stateValue" : "Salzburg",
"countryValue" : "Austria"
}, {
"label" : "Élancourt",
"value" : "Élancourt",
"geoCode" : {
"latitude" : "48.77657",
"longitude" : "1.963188"
},
"stateValue" : "Île-De-France",
"countryValue" : "France"
}, {
"label" : "Speke",
"value" : "Speke",
"geoCode" : {
"latitude" : "53.335117",
"longitude" : "-2.852346"
},
"stateValue" : "England",
"countryValue" : "United Kingdom"
}, {
"label" : "Davenport",
"value" : "Davenport",
"geoCode" : {
"latitude" : "-33.36318",
"longitude" : "115.6788"
},
"stateValue" : "Western Australia",
"countryValue" : "Australia"
}, {
"label" : "Banda",
"value" : "Banda",
"geoCode" : {
"latitude" : "8.14957",
"longitude" : "-2.3664"
},
"stateValue" : "Madhya Pradesh",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Arrah",
"value" : "Arrah",
"geoCode" : {
"latitude" : "6.67342",
"longitude" : "-3.96938"
},
"stateValue" : "Bihar",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Beerwah",
"value" : "Beerwah",
"geoCode" : {
"latitude" : "-26.835718",
"longitude" : "152.96312"
},
"stateValue" : "Queensland",
"countryValue" : "Australia"
}, {
"label" : "Québec City",
"value" : "Québec City",
"geoCode" : {
"latitude" : "46.81308",
"longitude" : "-71.20746"
},
"stateValue" : "Quebec",
"countryValue" : "Canada"
}, {
"label" : "Nisku",
"value" : "Nisku",
"geoCode" : {
"latitude" : "53.306244",
"longitude" : "-113.58279"
},
"stateValue" : "Alberta",
"countryValue" : "Canada"
}, {
"label" : "Stittsville",
"value" : "Stittsville",
"geoCode" : {
"latitude" : "45.296917",
"longitude" : "-75.92683"
},
"stateValue" : "Ontario",
"countryValue" : "Canada"
}, {
"label" : "Vancouver",
"value" : "Vancouver",
"geoCode" : {
"latitude" : "49.288826",
"longitude" : "-123.11112"
},
"stateValue" : "British Columbia",
"countryValue" : "Canada"
}, {
"label" : "Auckland",
"value" : "Auckland",
"geoCode" : {
"latitude" : "-36.84146",
"longitude" : "174.76334"
},
"stateValue" : "Auckland",
"countryValue" : "New Zealand"
}, {
"label" : "Auckland Central",
"value" : "Auckland Central",
"geoCode" : {
"latitude" : "-36.8484",
"longitude" : "174.76219"
},
"stateValue" : "Punjab",
"countryValue" : "New Zealand",
"countryCode" : "IN"
}, {
"label" : "New York",
"value" : "New York",
"geoCode" : {
"latitude" : "40.712776",
"longitude" : "-74.005974"
},
"stateValue" : "New York",
"countryValue" : "United States"
}, {
"label" : "Romulus",
"value" : "Romulus",
"geoCode" : {
"latitude" : "42.2479",
"longitude" : "-83.35179"
},
"stateValue" : "Michigan",
"countryValue" : "United States"
}, {
"label" : "Belgium",
"value" : "Belgium",
"geoCode" : {
"latitude" : "43.49972",
"longitude" : "-87.850365"
},
"stateValue" : "Wisconsin",
"countryValue" : "United States"
}, {
"label" : "Pittsburgh",
"value" : "Pittsburgh",
"geoCode" : {
"latitude" : "40.43931",
"longitude" : "-79.989555"
},
"stateValue" : "Pennsylvania",
"countryValue" : "United States"
}, {
"label" : "Una",
"value" : "Una",
"geoCode" : {
"latitude" : "-15.16451",
"longitude" : "-39.20568"
},
"stateValue" : "Gujarat",
"countryLabel" : "India",
"countryValue" : "India",
"countryCode" : "IN"
}, {
"label" : "Chicago",
"value" : "Chicago",
"geoCode" : {
"latitude" : "41.88069",
"longitude" : "-87.67418"
},
"stateValue" : "Illinois",
"countryValue" : "United States"
}, {
"label" : "Indianapolis",
"value" : "Indianapolis",
"geoCode" : {
"latitude" : "39.801353",
"longitude" : "-86.156494"
},
"stateValue" : "Indiana",
"countryValue" : "United States"
}, {
"label" : "Louisville",
"value" : "Louisville",
"geoCode" : {
"latitude" : "38.25782",
"longitude" : "-85.75387"
},
"stateValue" : "Kentucky",
"countryValue" : "United States"
}, {
"label" : "San Francisco",
"value" : "San Francisco",
"geoCode" : {
"latitude" : "37.7749",
"longitude" : "-122.4194"
},
"stateValue" : "Ca",
"countryValue" : "Usa",
"countryCode" : "US"
}, {
"label" : "Millbrae",
"value" : "Millbrae",
"geoCode" : {
"latitude" : "37.614304",
"longitude" : "-122.388275"
},
"stateValue" : "California",
"countryValue" : "United States"
}, {
"label" : "Brasília",
"value" : "Brasília",
"geoCode" : {
"latitude" : "-15.797516",
"longitude" : "-47.891888"
},
"stateValue" : "Federal District",
"countryValue" : "Brazil"
}, {
"label" : "Martínez",
"value" : "Martínez",
"geoCode" : {
"latitude" : "-34.508602",
"longitude" : "-58.52317"
},
"stateValue" : "Provincia De Buenos Aires",
"countryValue" : "Argentina"
} ]
6.1.24. Example 16: Auto suggest items by name
Get the auto suggested values for the given word, which match the merchant names/tags or categories.
The contents are specific to the language given in the request. Supported languages are en (English) and ar (Arabic)
In Swagger UI, Expand 'Search API' and select '/api/v3/merchant/typeAhead'.
| Name | Description |
|---|---|
|
User access token (required) |
| Path | Type | Description |
|---|---|---|
|
|
Search term entered by the user |
|
|
User location object |
|
|
User city |
|
|
User city |
|
|
Language of search text (default: en) |
|
|
Language for response (default: en) |
|
|
Additional filters as key-value pairs |
|
|
Whether to show grouped results by type |
|
|
Request timestamp in ISO 8601 format |
Key in inputs as below:
POST /api/v3/merchant/typeAhead HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
Content-Length: 231
Host: localhost:8080
{
"searchWord" : "blu",
"location" : {
"city" : "Mumbai",
"cityES" : "Mumbai"
},
"searchTextLang" : "en",
"lang" : "en",
"filters" : null,
"showGroupByTypes" : true,
"servedAt" : "2026-04-21T05:36:25.396Z"
}
And you should be getting output as below, which provides details of all items that match the given search word:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 3575
{
"canAvail" : {
"Merchant Label" : [ {
"name" : "Radisson Blu Hotel And Resort Corniche",
"score" : 0.0,
"id" : "89004357-a0c1-335a-8acd-9252f4c00853",
"category" : "travel",
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "business-traveller", "family-room", "room-service", "bathrobe", "couple", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "sofitel", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP76_webp_Radisson_Blu_Hotel_And_Resort_Corniche_card.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DP76",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP76_webp_Radisson_Blu_Hotel_And_Resort_Corniche_card.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/DP76_webp_DP76_webp_Radisson_Blu_Hotel_And_Resort_Corniche_card_Logo.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/DP76_webp_Radisson_Blu_Hotel_And_Resort_Corniche_banner.webp",
"canAvail" : true
}
} ],
"Offer Label" : [ {
"name" : "Radisson Blu Hotel And Resort Corniche",
"score" : 0.0,
"id" : "89004357-a0c1-335a-8acd-9252f4c00853",
"category" : "travel",
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "business-traveller", "family-room", "room-service", "bathrobe", "couple", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "sofitel", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP76_webp_Radisson_Blu_Hotel_And_Resort_Corniche_card.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DP76",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP76_webp_Radisson_Blu_Hotel_And_Resort_Corniche_card.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/DP76_webp_DP76_webp_Radisson_Blu_Hotel_And_Resort_Corniche_card_Logo.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/DP76_webp_Radisson_Blu_Hotel_And_Resort_Corniche_banner.webp",
"canAvail" : true
}
} ]
},
"cannotAvail" : { }
}
6.1.25. Example 17: Search Items
Get the list of merchants for given search word based on certain filters which matches the merchant name or offer name. The 'value' from this API can be used to search merchants or offers from any category.
The contents are specific to the language given in the request. Supported languages are en (English) and ar (Arabic)
In Swagger UI, Expand 'Search API' and select '/api/v3/merchant/search'.
| Name | Description |
|---|---|
|
User access token (required) |
|
Client asset identifier (default: WEB_APP) |
| Path | Type | Description |
|---|---|---|
|
|
Search term entered by the user (required) |
|
|
User country |
|
|
User city |
|
|
Geographical coordinates of user location |
|
|
Additional filters as key-value pairs |
|
|
Field to sort the search results by |
|
|
Language of search text (default: en) |
|
|
Language for response (default: en) |
|
|
Request timestamp in ISO-8601 format |
|
|
Whether to include category filter in results |
|
|
Indicates if results are requested for map view |
Key in inputs as below:
POST /api/v3/merchant/search HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Content-Length: 273
Host: localhost:8080
{
"searchWord" : "travel",
"country" : null,
"city" : "Chennai",
"geocode" : null,
"filters" : null,
"sortBy" : null,
"searchTextLang" : "en",
"lang" : "en",
"servedAt" : "2026-04-21T05:36:26.449Z",
"includeCategoryFilter" : false,
"mapView" : false
}
And you should be getting output as below, which provides details of all items that match the given search word:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 529549
{
"exactMatches" : [ {
"item" : {
"id" : "39f23051-aba2-3235-b798-96208326002b",
"name" : "Travelwings",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/TW_Merchant08.webp",
"externalId" : "DP365",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/TW_Merchant08.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/TW_Logo01.webp",
"url" : "https://travelwings.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/TW_Banner07.webp",
"totalViews" : 6,
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213359",
"name" : "Get upto AED 600 off on your holiday booking to Switzerland from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Switzerland from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer21.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/trip-to-a-snowy-heaven.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer21.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213364",
"name" : "Get upto AED 600 off on your holiday booking to Kyrgyzstan from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Kyrgyzstan from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer26.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/historic-kyrgyzstan.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer26.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213357",
"name" : "Get upto AED 600 off on your holiday booking to Kazakhstan from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Kazakhstan from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_oFFER19.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/explore-the-gorgeous-almaty-and-nur-sultan.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_oFFER19.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213342",
"name" : "Get upto AED 600 off on your holiday booking to Lisbon, Madrid and Barcelona from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Lisbon, Madrid and Barcelona from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer04.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/fairytale-lisbon-madrid-and-barcelona-tour.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer04.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213345",
"name" : "Get upto AED 600 off on your holiday booking to Spain, France, And Italy from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Spain, France, And Italy from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer07.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/cruises/royal-caribbean-mediterranean-summer-dreams.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer07.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213344",
"name" : "Get upto AED 600 off on your holiday booking to Italy and Milan from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Italy and Milan from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer06.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/take-a-fabulous-holiday-in-italy-and-milan.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer06.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213353",
"name" : "Get upto AED 600 off on your holiday booking to Entebbe from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Entebbe from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer15.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/uganda-a-gorilla-trekking-haven.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer15.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213348",
"name" : "Get upto AED 600 off on your holiday booking to Busan, Seoul, South Korea from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Busan, Seoul, South Korea from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer10.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/a-journey-across-south-korea.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer10.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213361",
"name" : "Get upto AED 600 off on your holiday booking to Scotland from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Scotland from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer23.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/scotland-hiking-adventure-from-the-highlands-to-islands-tour.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer23.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213358",
"name" : "Get upto AED 600 off on your holiday booking to Seychelles from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Seychelles from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer20.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/savoy-seychelles-resort-and-spa.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer20.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213355",
"name" : "Get upto AED 600 off on your holiday booking to Iceland from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Iceland from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer17.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/welcome-to-the-land-of-whales-and-glaciers.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer17.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213354",
"name" : "Get upto AED 600 off on your holiday booking to Alaska from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Alaska from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer16.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/an-alaskan-wilderness-adventure.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer16.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213362",
"name" : "Get upto AED 600 off on your holiday booking to Bangkok from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Bangkok from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer24.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/a-thai-vacation-of-your-dreams.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer24.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213360",
"name" : "Get upto AED 600 off on your holiday booking to Canada from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Canada from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer22.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/exotic-canadian-rockies-by-rail-and-trail-tour.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer22.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213339",
"name" : "Get upto AED 600 off on your holiday booking to San Francisco from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to San Francisco from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW-Offer01.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/vibrant-san-francisco.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW-Offer01.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213341",
"name" : "Get upto AED 600 off on your holiday booking to United Kingdom, Scotland and Ireland from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to United Kingdom, Scotland and Ireland from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer03.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/amazing-united-kingdom-scotland-and-ireland-combo-tour.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer03.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213347",
"name" : "Get upto AED 600 off on your holiday booking to Barcelona from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Barcelona from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer09.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/cruises/disney-mediterranean-cruise-with-silver-anniversary-at-sea.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer09.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213351",
"name" : "Get upto AED 600 off on your holiday booking to Mauritius from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Mauritius from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer13.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/jw-marriott-mauritius-resort.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer13.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213350",
"name" : "Get upto AED 600 off on your holiday booking to Entebbe from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Entebbe from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer12.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/a-journey-through-east-africa.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer12.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213340",
"name" : "Get upto AED 600 off on your holiday booking to New Zealand from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to New Zealand from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer02.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/new-zealand-best-of-both-island-special.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer02.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213343",
"name" : "Get upto AED 600 off on your holiday booking to Greek from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Greek from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer05.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/a-vacation-in-greece.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer05.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213349",
"name" : "Get upto AED 600 off on your holiday booking to Alula, Umluj, Jeddah, Saudi Arabia from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Alula, Umluj, Jeddah, Saudi Arabia from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer11.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/explore-jeddah-umluj-and-alula.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer11.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213356",
"name" : "Get upto AED 600 off on your holiday booking to Greece from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Greece from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer18.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/wonderful-greece-expedition.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer18.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213363",
"name" : "Get upto AED 600 off on your holiday booking to South Africa from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to South Africa from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer25.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/welcome-to-the-rainbow-nation-of-africa.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer25.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213346",
"name" : "Get upto AED 600 off on your holiday booking to Italy, Greece from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Italy, Greece from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer08.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/cruises/celebrity-cruise-aboard-celebrity-infinity-italy-to-greece.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer08.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "213352",
"name" : "Get upto AED 600 off on your holiday booking to Paris from Travelwings",
"description" : "Get upto AED 600 off on your holiday booking to Paris from Travelwings till 31-05-2024\nOnline offer",
"validFrom" : "2023-05-25T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer14.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.travelwings.com/ae/en/holidays/an-epic-holiday-of-france-by-rail-tour.html?utm_source=partner&utm_medium=adib&utm_campaign=june23",
"termsAndConditions" : "1.The offer is valid till 31-05-2024\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n12.Get AED 400 off on holiday booking for a minimum of two pax\n13.Get AED 600 off on holiday booking for four pax or more\n14.The holiday offer is applicable on holiday packages broadcasted by Travelwings.com.\n15.Bookings will be confirmed post-completion of payments.\n16. Any airlines hold the right to change/cancel any flight at their discretion.\n17.Prices are dynamic and subject to change based on the offer available at the time of making a booking. Travelwings.com reserves the right to make the necessary price change at any given point in time.\n18.Passport must be valid for at least 6 months from the return date of departure. It is the traveller's responsibility to obtain a valid passport and other entry permits wherever required. Please reach out to the team of Travelwings.com in case of any assistance.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/TW_Offer14.webp",
"offerType" : "offline coupon",
"offerSource" : "travelwings",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "travel-agency", "travel-agencies-and-operators", "tour-operator", "air-ticket-booking", "cruises-packages", "online-and-in-store", "hotel-booking" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-agency", "travel-agencies-and-operators" ],
"searchScore" : 11.5413384,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "item", "tags", "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "f52eefb1-69f0-35bf-b1b3-e6467f036a6b",
"name" : "Booking.com",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/VISA-Booking-Offer.webp",
"externalId" : "DP359",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/VISA-Booking-Offer.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/VISA-Booking-logo.webp",
"url" : "https://www.booking.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/VISA-Booking-banner.webp",
"totalViews" : 5,
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "204693",
"name" : "Get up to 10% cashback on Booking.com when you pay with ADIB Visa Card",
"description" : "Get up to 10% cashback on Booking.com when you pay with your ADIB Visa Card till 31-12-2023\nOnline offer",
"validFrom" : "2023-04-13T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/VISA-Booking-Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/VISA-Booking-Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "adib",
"howToRedeem" : "1.Click \"Claim Now\" button and visit the merchant website\n2.Signup or log into a registered Booking.com account.\n3.Search for the accommodation and travel dates.Only properties labelled with a \"cashback badge\" are eligible.\n4.Choose the preferred accommodation and room type to see the rate and estimated cashback value.\n5.Use an eligible ADIB Visa Card (excluding Visa non-reloadable prepaid cards) to complete the booking.\n6.Tick the check box on Payment Page to enable cashback to the eligible Visa Card.\n7.Use an eligible Visa Card (excluding Visa non-reloadable prepaid cards) to pay at the accommodation.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.booking.com/10visacemea",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The offer is valid on ADIB Visa debit or covered Card (excluding Visa non-reloadable prepaid cards)\n3.The offer is applicable on properties labelled with a \"cashback badge\" \n4.Taxes and other fees and charges may not be taken into account for the calculation of the final cashback. The final cashback is subject to the exchange rate\n5.The cashback will be awarded by Booking.com\n6.You need to have a Booking.com account to receive your reward. The email on the account must be the same used for your booking. You can create your account after you have made your booking.\n7.The cashback will be credited within 64 or more business days after checking out from the property\n8.ADIB might take additional month to settle the cashback to your respective cards\n9.Accommodation that do not accept covered cards are not eligible for the offer\n10.The offer is subject to the terms and conditions of Booking.com. In case of any dispute the decision of Booking.com and Visa shall be final\n11.All conditions of the promotions must be met at the time the booking is made. Retroactive claims are not allowed\n12.Cashback shall be granted to the users who made the booking and completed their stay\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "travel-agency", "online", "travel-agencies-and-operators", "hotel-booking" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-agency", "travel-agencies-and-operators" ],
"searchScore" : 10.474361,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags", "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "8a72244c-e903-33c3-a5cd-e19034a64949",
"name" : "Via.com",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "HDFC15903",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"url" : "https://in.via.com/",
"totalViews" : 39,
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "178714",
"name" : "Use coupon code: FLYVIAHDFC, Get Flat 7% Instant Discount upto Rs 7000 on international fligts, minimum booking value should be Rs 10000",
"description" : "Flat Rs.500 off on One way and Flat Rs.1000 off on Round trip on Domestic Flights\nFlat Rs.300 on one way and Rs.600 on round trip on International Flights\nFlat 2% off on Hotel booking\nFlat 3% on Bus booking",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFC",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"payoutType" : "cpa_flat",
"offerVariant" : "Consumer Durable Loan (CDL)",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "1. Offer valid on HDFC Credit cards only \n\n2. Offer on all days\n\n3. This offer is funded by Via.com",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"offerSource" : "CARDS & EASYEMI",
"howToRedeem" : "use promo code VIAHDFC while checkout for Domestic flights\n\nuse promo code VIAHDFC while checkout for International flights\n\nuse promo code VIAHDFCHTL while checkout for Hotels\n\nuse promo code VIAHDFCBUS while checkout for Buses",
"currency" : "",
"payoutValue" : "500"
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "TEST CARDS" ]
}, {
"id" : "287456",
"name" : "Rs. 500 off on Minimum Billing of Rs. 4500 on Domestic Flights.\nRs. 1000 off on Minimum Billing of Rs. 10,000 on International Flights.\nRs. 500 off on Minimum Billing of Rs. 4000 on Hotels Booking.\nRs. 100 off on Minimum Billing of Rs. 1200 on Bus Booking.",
"description" : "Rs. 500 off on Minimum Billing of Rs. 4500 on Domestic Flights.\nRs. 1000 off on Minimum Billing of Rs. 10,000 on International Flights.\nRs. 500 off on Minimum Billing of Rs. 4000 on Hotels Booking.\nRs. 100 off on Minimum Billing of Rs. 1200 on Bus Booking.",
"validFrom" : "2023-10-20T00:00:00.389Z",
"validTo" : "2026-11-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "India" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "VIATHRIWE",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerVariant" : "EASY EMI",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "The Offer is valid till 30th November 2024\nUnder this Offer, Cardholders gets Up to 1000/- Rs. off\nOffer valid only on online orders placed via https://in.via.com/\nOffer is valid on flights/hotels/bus transactions only.\nOffer is valid on website/m-site/app transactions. \nOffer is valid once per user per product per month during offer duration.\nOther generic platform t&c's will be applicable.\nFlat discount starts from the minimum Billing as stated in the offer construct table. Flat discount remains the same for any value above minimum order for all the products.\nThe Exclusive offers/discounts under these Programs cannot be clubbed with any other offer.\nThe Offer is available only upon making full payment by a valid and unexpired Mastercard card issued in India.\nOffer is not valid for Cash on Delivery.\nTo redeem this offer, cardholders should login to their account or create an account, if they are not registered.\nThe Offer is non-transferable and cannot be exchanged for cash or cheque or any form of credit.\nTotal spends will be calculated on the basis of product cost only excluding all taxes, GST, delivery charges, etc. Any taxes or liabilities or charges payable to the Government or any other authority or body, if any, shall be borne directly by the cardholder and/ or billed to the account of the cardholder\nAny dispute regarding delivery, service, suitability, merchantability, availability or quality of the offer/or product/services availed under this offer must be addressed in writing, by the cardholder directly to info@thriwe.com. Mastercard or the issuing bank will not be liable for the same.\nCardholders are not bound in any way to participate in the Offer. Any participation shall be voluntary and all participants understand, acknowledge and agree that the Offer is purely on a best effort basis and Mastercard does not assume any liability whatsoever regarding the Offer, the delivery of services or any incidental matter.\nNo two offers can be clubbed together and no additional discount/offer will be applicable.\nAny cardholder who utilises, participates in, or attempts to utilise or participate in the Mastercard Card Offers programme, irrevocably agrees to the following: Mastercard will not be liable under contract, tort or any other theory of law for any claim regarding loss or damage howsoever incurred in relation to the use (or attempted use) of the Offer; and accordingly, the cardholder will not make any claim against Mastercard regarding the same.\nEach benefit/privilege may be subject to additional terms and conditions imposed by Via.com. Cardholders are solely responsible for checking and complying with the same.\nThese terms and conditions shall be governed by the laws of India and any dispute arising out of or in connection with these terms and conditions shall be subject to the exclusive jurisdiction of the courts in Mumbai.\nMastercard reserves the right to add, alter, modify, change or vary any of these terms and conditions or to replace, wholly or in part, this Offer by another offer, whether similar or not, or to withdraw it altogether at any point in time, without any prior notice.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via.webp",
"offerType" : "online coupon",
"offerSource" : "CARDS & EASYEMI",
"howToRedeem" : "Get Specials offers at Via.com\n\nRs. 500 off on Minimum Billing of Rs. 4500 on Domestic Flights.\nRs. 1000 off on Minimum Billing of Rs. 10,000 on International Flights.\nRs. 500 off on Minimum Billing of Rs. 4000 on Hotels Booking.\nRs. 100 off on Minimum Billing of Rs. 1200 on Bus Booking.\nUse promocode VIATHRIWE at checkout and payment by Mastercard card.\n\nLink: https://in.via.com/\n\nOffer valid till 30th November 2024",
"currency" : "",
"payoutValue" : "500.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "178727",
"name" : "Use coupon code: FLYVIAHDFC, Get Flat 7% Instant Discount upto Rs 7000 on international fligts, minimum booking value should be Rs 10000",
"description" : "Use coupon code: FLYVIAHDFC $ Get Flat 7% upto Rs 7000 Instant Discount oxn international flights $ minimum booking value should be Rs 10000",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFCHTL",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "SMARTBUY",
"howToRedeem" : "1. Log in to website\n\n2. Add products to your cart\n\n3. Pay using your HDFC Bank Cards to avail this offer",
"currency" : "",
"payoutValue" : "2",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "Applicable once per month"
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "MILLENIA" ]
}, {
"id" : "178728",
"name" : "Using your HDFC Bank Card avail this offer",
"description" : "Flat 3% on Bus booking",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFCBUS",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "SMARTBUY",
"howToRedeem" : "use promo code VIAHDFCBUS while checkout?for Buses in https://in.via.com/",
"currency" : "",
"payoutValue" : "3",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "1. Offer valid on HDFC Credit cards only \n2. Offer on all days\n3. This offer is funded by Via.com"
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "IRCTC" ]
}, {
"id" : "178726",
"name" : "Using your HDFC Bank Card avail this offer",
"description" : "Flat Rs.500 off on One way and Flat Rs.1000 off on Round trip on Domestic Flights\nFlat Rs.300 on one way and Rs.600 on round trip on International Flights\nFlat 2% off on Hotel booking\nFlat 3% on Bus booking",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFC",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"payoutType" : "cpa_flat",
"offerSource" : "SMARTBUY",
"howToRedeem" : "use promo code VIAHDFC while checkout for International flights in https://in.via.com/",
"currency" : "",
"payoutValue" : "300",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "1. Offer valid on HDFC Credit cards only \n2. Offer on all days\n3. This offer is funded by Via.com"
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "REGALIA" ]
} ],
"tags" : [ "travel-agency", "travel-agencies-and-operators", "tour", "air-ticket-booking", "train-ticket-booking", "bus-ticket-booking", "hotel-booking" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-agency", "travel-agencies-and-operators" ],
"searchScore" : 10.474361,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags", "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "adc4150d-bcfe-343b-a20a-cd75b9c4cdda",
"name" : "Togofa",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/togofa_merchant.webp",
"externalId" : "DP45",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/togofa_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/togofa_logo01.webp",
"url" : "https://www.togofa.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/togofa_banner03.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "80937",
"name" : "Get 10% off on 6 nights and 7 days stay in Europe on Togofa",
"description" : "Get 10% off on 6 nights and 7 days stay in Europe on Togofa till 30-09-2022\nOnline offer",
"validFrom" : "2022-06-15T00:00:00.389Z",
"validTo" : "2026-09-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBTGF01",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/A_piece_of_Europe_Package_2.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.togofa.com/PackageWithcategory3.aspx?ShowDetails=True&ID=69",
"termsAndConditions" : "1.The offer is valid till 30-09-2022\n2. Offer is valid on all ADIB Covered & Debit cards\n3. Submit your booking request through ToGoFa.com website quoting your Coupon Code. \n4. ADIB Cardholders can contact our call center on 04-266 2925 or send an email to enquiry@togofa.com to avail this offer\n5. Rates are per person, inclusive of Tax & are subject to availability at the time of booking.\n6. The discount detailed above will be fully and solely borne by the service provider.\n7. Service provider's terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n8. ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.\n9.The offer is subject to merchant approval\n10.This offer is applicable to selected packages only and cannot be combined with any other offers.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/A_piece_of_Europe_Package_2.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "togofa",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "80936",
"name" : "Get 10% off on 5 nights and 6 days stay in Amsterdam & Paris on Togofa",
"description" : "Get 10% off on 5 nights and 6 days stay in Amsterdam & Paris on Togofa till 30-09-2022\nOnline offer",
"validFrom" : "2022-06-15T00:00:00.389Z",
"validTo" : "2026-09-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBTGF01",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/Amsterdam_and_Paris_Package_2.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.togofa.com/PackageWithcategory3.aspx?ShowDetails=True&ID=47",
"termsAndConditions" : "1.The offer is valid till 30-09-2022\n2. Offer is valid on all ADIB Covered & Debit cards\n3. Submit your booking request through ToGoFa.com website quoting your Coupon Code. \n4. ADIB Cardholders can contact our call center on 04-266 2925 or send an email to enquiry@togofa.com to avail this offer\n5. Rates are per person, inclusive of Tax & are subject to availability at the time of booking.\n6. The discount detailed above will be fully and solely borne by the service provider.\n7. Service provider's terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n8. ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.\n9.The offer is subject to merchant approval\n10.This offer is applicable to selected packages only and cannot be combined with any other offers.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/Amsterdam_and_Paris_Package_2.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "togofa",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "80935",
"name" : "Get 10% off on 6 nights and 7 days stay in Turkey on Togofa",
"description" : "Get 10% off on 6 nights and 7 days stay in Turkey on Togofa till 30-09-2022\nOnline offer",
"validFrom" : "2022-06-15T00:00:00.389Z",
"validTo" : "2026-09-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBTGF01",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/Turkish_colours_Offer_Image_2.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.togofa.com/PackageWithcategory3.aspx?ShowDetails=True&ID=70",
"termsAndConditions" : "1.The offer is valid till 30-09-2022\n2. Offer is valid on all ADIB Covered & Debit cards\n3. Submit your booking request through ToGoFa.com website quoting your Coupon Code. \n4. ADIB Cardholders can contact our call center on 04-266 2925 or send an email to enquiry@togofa.com to avail this offer\n5. Rates are per person, inclusive of Tax & are subject to availability at the time of booking.\n6. The discount detailed above will be fully and solely borne by the service provider.\n7. Service provider's terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n8. ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.\n9.The offer is subject to merchant approval\n10.This offer is applicable to selected packages only and cannot be combined with any other offers.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/Turkish_colours_Offer_Image_2.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "togofa",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "backpacker", "business-traveller", "family-room", "room-service", "bathrobe", "couple", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "travel-agency", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "sofitel", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all", "Dubai" ],
"geoCodes" : [ {
"latitude" : "25.25896774",
"longitude" : "55.31897023"
} ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-agency", "business-traveller" ],
"searchScore" : 10.474361,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags", "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "b7e5f8bd-d2ec-30d6-a477-bd5b793e017c",
"name" : "Paytm Flights",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/HDFC6214_Paytm_Flights.webp",
"externalId" : "HDFC6214",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/HDFC6214_Paytm_Flights.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/HDFC6214_Paytm_Flights.webp",
"url" : "https://paytm.com/flights",
"totalViews" : 1,
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "900713",
"name" : "Get up to INR 7500 instant discount with Easy EMI transactions on Debit & Credit Cards",
"description" : "CC EMI : Get up to INR 5,000 Instant discount through HDFC Bank EasyEMI on Credit cards.\nDomestic Flights :\nFlat INR 1000 on INR 7500\nFlat INR 2000 on INR 15000\n\nInternational Flights :\nFlat INR 2500 on INR 25000\nFlat INR 5000 on INR 75000\n\nDC EMI : Get up to INR 7,500 Instant discount through HDFC Bank EasyEMI on Debit cards.\nDomestic Flights :\nFlat INR 1000 on INR 7500\nFlat INR 2000 on INR 15000\n\nInternational Flights :\nFlat INR 2500 on INR 25000\nFlat INR 7500 on INR 75000\n\nApplicable once per user per category",
"validFrom" : "2024-05-01T00:00:00.389Z",
"validTo" : "2026-06-10T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "India" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/paytmflightsapril24.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/paytmflightsapril24.webp",
"offerType" : "card linked",
"payoutType" : "cpa_flat",
"offerSource" : "hdfc",
"howToRedeem" : "1. Visit https://tickets.paytm.com/flights/ or download the Paytm Mobile App available for iOS on App Store & for Android on Google Play Store.\n2. Book any Domestic/ International One-way or Roundtrip Flight of your choice.\n3. Apply coupon code before making the payment with an eligible HDFC Bank Card.\n4. The applicable discount amount as per the above table will be instantly deducted from the total amount payable.\n5. On the payment step, select the 'EMI' option and HDFC Bank as your Banking Partner\n6. Choose the tenure that suits you the most and complete the payment with an eligible HDFC Bank Card\n\nApplicable only on EasyEMI transactions\nApplicable only once during the offer period",
"currency" : "INR",
"payoutValue" : "7500.0",
"cashbackValue" : 0.0,
"offerStatus" : "inactive",
"url" : "https://tickets.paytm.com/flights/",
"termsAndConditions" : "The offer is an instant discount and will be provided upfront at the time of purchase.\n- HDFC Bank holds out no warranty or makes no representation about the quality, delivery or otherwise of the services offered by the partner. Any dispute or claim regarding the services/offers must be resolved by the Card Holder/s with the partner directly without any reference to HDFC Bank.\n- HDFC Bank shall not be liable in any manner whatsoever for any loss/ damage/ claim that may arise out of use or otherwise of any goods/ services / assured gifts / gift vouchers availed by the Card Holder/s under the said Offer offered by the partner\n- HDFC Bank shall not be held liable for any delay or loss that may be caused in delivery of the services.\n- This Offer is made available to the Customers selected at the discretion of HDFC Bank.\n- The offer cannot be combined with any other offer\n- If promo code is mentioned as part of the communication (please refer Offer details tab) then customer has to use the code to avail the offer; in case the code is not used Discount/ Cashback cannot be credited back to customer at a later date.\n- Any person availing this offer shall be deemed to have accepted these Terms and Conditions.\n- HDFC Bank reserves the right, at any time, without prior notice and without assigning any reason whatsoever, to add/alter/modify/change or vary all these terms and conditions or to replace, wholly or in part, this offers by another offer, whether like this offer or not, or to extend or withdraw it altogether.\n- Eligible benefits for this promotion (such as Reward points / cashback) will only be posted to accounts that are active at the time of postings.\n- Benefits will not be posted on credit card accounts which are permanently delinquent or closed at the time of posting.\n- Benefits will also not be posted on retail credit card accounts that are flagged for working capital usage.\n- HDFC Bank Cardholders are not bound in any way to participate in this offer. Any participation is voluntary, and the offer is being made purely on a best effort basis.\n- Nothing herein amounts to a commitment by HDFC Bank to conduct further, similar, or other offers.\n- This offer is not applicable on virtual cards, Consumer Durable, VPA, Fleet, R&R Commercial, Purchase cards, Intermiles, Paytm, Equitas, Swiggy, Flipkart Wholesale, Pine Labs, Emirates, Harley, IBIBO and IRCTC Cards.\n- This offer is non-cashable, not extendable, and non-negotiable.\n- Purchases eligible for Instant Discount/ Cashback on HDFC Bank Credit Card will not qualify for Reward Points. The same will be reversed within 120 days.\n- If a card member has more than 1 (one) HDFC Bank Credit/Debit Card, spends on the cards cannot be clubbed by the card member to qualify for the said offer.\n- The above offer is by way of a special offer co-funded by the Bank & Merchant for select HDFC Bank Credit/Debit Cardholders only and nothing contained herein shall prejudice or affect the terms and conditions of the card member agreement. The terms of the above schemes shall be in addition to and not in derogation of the terms contained in the card member agreement.\n- All disputes, if any, arising out of or in connection with or because of above offers or otherwise relating hereto shall be subject to the exclusive jurisdiction of the competent courts / tribunals in Mumbai only, irrespective of whether courts / tribunals in other areas have concurrent or similar jurisdiction.\n- Any query regarding the program will be entertained till 60 days from the posting date. After said date the Bank will not entertain any correspondence or communication regarding this Program from the cardholder.\n- Any Tax, service charge or other charges levied with regards to the Promotional Offer, may be borne by the Card Holder / winner."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "travel-agency", "online", "travel-agencies-and-operators", "tour", "air-ticket-booking", "train-ticket-booking", "bus-ticket-booking", "hotel-booking" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-agency", "travel-agencies-and-operators" ],
"searchScore" : 10.474361,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags", "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "5d5b8e1e-b5e6-3204-9614-a2593495c3f2",
"name" : "Hotels.com",
"description" : "Hotels.com offers hundreds of thousands of bookable properties in more than 200 countries, ranging from international chains and all-inclusive resorts to local favourites and bed & breakfasts, together with all the information needed to book the perfect stay. Travellers can book online or by contacting one of the multilingual call centres with 24/7 service hours.",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Hotelscom_MerchantImage.webp",
"externalId" : "AC62",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Hotelscom_MerchantImage.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Hotelscom_Logo.webp",
"url" : "https://www.hotels.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Hotelscom_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "202937",
"name" : "Get 8% off hotelscom when you pay with Visa",
"description" : "Get 8% off hotelscom when you pay with Visa till 31-12-2023\nOnline offer",
"validFrom" : "2019-01-01T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "VISA8",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Hotelscom_OfferImage.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.hotels.com/visa",
"termsAndConditions" : "1. The offer is valid till 31-12-2023\n2. Get 8% off the price of the first room in your booking at a participating hotel. \n3. You must pay for your stay when you make the booking.The discount only applies to the first room in the booking. You'll need to pay the full price for any other rooms. \n4. The discount doesn't apply to any taxes, fees or additional costs. \n5. To use this coupon, you must be over 18 years old and resident in the country where your card is issued. \n6. You may only use this coupon for bookings made between 1 April 2022 to 31 December 2023 (both dates inclusive) at www.hotels.com/visa for a stay to be completed by 31 March 2024. \n7. Bookings are subject to availability and the hotel's terms and conditions. \n8. This coupon can't be used for: Package bookings i.e. hotel + flight Bookings made through Group Travel Services Bookings paid for at the hotel Bookings paid for in a foreign currency Bookings at non-participating hotels Bookings made prior to receipt of this coupon \n9. Go to https://www.hotels.com/page/hotel-exclusions-apac/?pos=HCOM_ASIA&locale=en_ASIA for a list of non-participating hotels. \n10. Participating hotels are subject to change at any time. \n11. You can only use this coupon for a maximum of five bookings and each time it must be used in full. After those five bookings you won't be able to use this coupon again, even if you cancel one or more of those bookings. You'll be able to check that it's still valid before completing a booking. There's a limit of one coupon per booking. \n12. This coupon can be combined with discounted prices on Hotels.com. It cannot however be used in conjunction with any other promotion on Hotels.com, whether offered by a third party or otherwise. \n13. You can't collect or redeem Hotels.com Rewards nights when you use this coupon. \n14. You can't apply this coupon to taxes, fees, or charges including, without limitation, extra guests, phone calls, cancellation fees, parking, or other charges. You must pay these charges when you make your booking, or directly at the hotel. \n15. You can't redeem this coupon for cash, and it can't be transferred or sold. It's void where prohibited by law. \n16. Improper use of the coupon by you is prohibited and could be construed as fraud. \n17. We reserve the right to change or withdraw this offer at any time and to cancel any bookings made where the coupon has been used to make any speculative, false or fraudulent bookings or any bookings in anticipation of demand. \n18. Usual booking terms and conditions apply (see hotels.com/customer_care/terms_conditions.html) and all bookings are subject to availability. \n19. Hotels.com is the promoter of this offer. \n20. These terms and conditions are governed by and construed in accordance with the laws of the State of Washington.\n21. To the maximum extent allowed by applicable law, Visa shall not be liable in any manner whatsoever or howsoever for any loss or damage or claims that may arise out of (a) usage or attempted usage of any of the offers, or of any services provided by hotels.com, or (b) any refusal or failure on the part of Hotels.com to provide or honour any of the offers, or benefits or privileges given under the offers, for any reason whatsoever. Visa and hotels.com reserve the right to amend or cancel the offer and any of its terms and conditions without prior notice.\n22. The offer is applicable on: Visa Platinum, Visa Gold, Visa Classic, Visa Infinite, Visa Signature, Visa Traditional Rewards, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa Infinite Business",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Hotelscom_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "VISA_SPECIFIC"
} ],
"tags" : [ "travel-agency", "travel-agencies-and-operators", "hotel-booking" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-agency", "travel-agencies-and-operators" ],
"searchScore" : 10.474361,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags", "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "c8ab25a1-4ffa-313f-84dc-31fb067bfc89",
"name" : "QEEQ.com",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_22_QEEQ_Merchant.webp",
"externalId" : "DP386",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_22_QEEQ_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_22_QEEQ_logo.webp",
"url" : "https://www.qeeq.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_22_QEEQ_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "216744",
"name" : "Get up to 25% off on QEEQ.com Diamond Membership for Visa members",
"description" : "Get up to 25% off on QEEQ.com Diamond Membership for Visa members till 31-12-2023\nOnline offer",
"validFrom" : "2023-03-08T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VSA_22_QEEQ_offer1.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VSA_22_QEEQ_offer1.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.qeeq.com/activity?id=8c24ec2583f1125b231fc12345615fe7",
"termsAndConditions" : "1. The offer is valid till 31-12-2023\n2. 25% OFF Coupon is valid for 180 days since the date you receive this coupon. \n3. Coupon is valid on purchasing QEEQ Diamond Membership. \n4. Coupon is valid on English site. \n5. Each coupon can be issued for one time to one account, and cannot be shared to other accounts.\n6. Offer subject to car rental companies and availability.\n7. Extras, e.g. one-way fee, babyseat, GPS etc are excluded from the discount.\n8. Any fee that pays on destination is excluded from this discount.\n9. This coupon has no cash value and cannot be combined with any other coupons.\n10. This offer is subject to change without notice. \n11. Rental company-specific conditions may apply and are notified prior to booking. \n12. All rentals are subject to QEEQ.COM standard terms and conditions.\n13. The offer is valid on: Visa Platinum, Visa Gold, Visa Classic, Visa Electron, Visa Infinite, Visa Signature, Visa Signature Preferred, Visa Traditional, Visa Traditional Rewards, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa Infinite Business, Visa Infinite Privilege, Visa UHNW, Visa Gold Business, Visa Rewards, Visa Rewards Business"
},
"appplicableForClients" : "VISA_SPECIFIC"
}, {
"id" : "216743",
"name" : "Get up to 6% off on car rental coupons for Visa members at QEEQ.com",
"description" : "Get up to 6% off on car rental coupons for Visa members at QEEQ.com till 31-12-2023\nOnline offer",
"validFrom" : "2023-03-08T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VSA_22_QEEQ_offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VSA_22_QEEQ_offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.qeeq.com/activity?id=8c24ec2583f1125b231fc12345615fe7",
"termsAndConditions" : "1. The offer is valid till 31-12-2023\n2. 6% OFF Coupon is valid for 180 days since the date you receive this coupon. \n3. Coupon is valid on all car types. \n4. Coupon is valid on multiple car rental companies. \n5. Coupon is valid on all destinations. \n6. Coupon is valid on English site. \n7. Each coupon can be issued for one time to one account, and cannot be shared to other accounts.\n8. Offer subject to car rental companies and availability.\n9. Extras, e.g. one-way fee, babyseat, GPS etc are excluded from the discount.\n10. Any fee that pays on destination is excluded from this discount.\n11. This coupon has no cash value and cannot be combined with any other coupons.\n12. This offer is subject to change without notice.\n13. Rental company-specific conditions may apply and are notified prior to booking.\n14. All rentals are subject to QEEQ.COM standard terms and conditions.\n15. The offer is valid on: Visa Platinum, Visa Gold, Visa Classic, Visa Electron, Visa Infinite, Visa Signature, Visa Signature Preferred, Visa Traditional, Visa Traditional Rewards, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa Infinite Business, Visa Infinite Privilege, Visa UHNW, Visa Gold Business, Visa Rewards, Visa Rewards Business."
},
"appplicableForClients" : "VISA_SPECIFIC"
} ],
"tags" : [ "travel-agency", "online", "transportation", "car-rental" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-agency" ],
"searchScore" : 10.474361,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags", "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "4dd721d6-9c9b-34b8-bef0-ad41d99cae2e",
"name" : "Far East Hospitality",
"description" : "Forget everything you think you know about Sentosa, and prepare to step into a wonderfully-transformed heritage site brimming with adventure, history and romance. The Sentosa cluster of hotels managed by Far East Hospitality include one-of-a-kind pool deck with four thematic pools, a diverse range of original dining and retail options and bespoke accommodations and experiences.",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Far_East_Hospitality_Management_Pte_Ltd_MerchantImage.webp",
"externalId" : "DP339",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Far_East_Hospitality_Management_Pte_Ltd_MerchantImage.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Far_East_Hospitality_Management_Pte_Ltd_Logo.webp",
"url" : "https://www.fareasthospitality.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Far_East_Hospitality_Management_Pte_Ltd_Banner.webp",
"totalViews" : 1,
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "202921",
"name" : "Stay 4 Pay 3 with The Barracks Hotel Sentosa, Oasia Resort Sentosa, The Outpost Hotel Sentosa, and Village Hotel Sentosa when you pay with Visa!",
"description" : "Stay 4 Pay 3 with The Barracks Hotel Sentosa, Oasia Resort Sentosa, The Outpost Hotel Sentosa, and Village Hotel Sentosa when you pay with Visa! till 28-05-2023\nOnline offer",
"validFrom" : "2022-11-28T00:00:00.389Z",
"validTo" : "2026-05-28T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "SDCXVISA",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Far_East_Hospitality_Management_Pte_Ltd_OfferImage.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.fareasthospitality.com/en/Deals/Visa-International-Stay4Pay3",
"termsAndConditions" : "1. The offer is valid till 28-05-2023\n2. Cancellation policy and blackout dates may apply. \n3. Far East Hospitality will not be able to exchange the discount for cash, other privileges or value-adds, nor will Far East Hospitality be able to transfer the discount to another guest. \n4. Payment must be made by a valid Visa card. Otherwise, full rates based on Best Available Rates on the day will be charged. \n5. Valid for one-time use and one room per member only. \n6. Only applicable to Best Flexible Rates and new booking only. \n7. 1-for-1 room night applies to first night purchase and consecutive night complimentary. Minimum/maximum 2-night stay. \n8. Blackout dates apply including eve of and public holiday. \n9. All participating properties reserve the right to amend the promotion without prior notice. \n10. Rooms and/or apartments are subject to availability. \n11. This promotion can only be redeemed on our website. It cannot be redeemed through other channels e.g., telephone, email, corporate bookers. \n12. This promotion cannot be applied for existing room reservations and cannot be combined with any other promotions. \n13. The value-adds, benefits or inclusions in this promotion are subject to availability. \n14. In the event of any inconsistency between the English and non-English language versions, the English language version shall prevail.\n15. This offer is applicable on: Visa Platinum, Visa Gold, Visa Classic, Visa Electron, Visa Infinite, Visa Signature, Visa Signature Preferred, Visa Traditional, Visa Traditional Rewards, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa Infinite Business, Visa Infinite Privilege, Visa UHNW, Visa Gold Business, Visa Rewards",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Far_East_Hospitality_Management_Pte_Ltd_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "travel-agency", "travel-agencies-and-operators", "", "hotel-booking" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-agency", "travel-agencies-and-operators" ],
"searchScore" : 10.474361,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags", "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "eedd023a-4a05-3f88-84bc-e14742bbfcee",
"name" : "Sterling Holidays",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"externalId" : "HDFC24541",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"url" : "https://www.sterlingholidays.com",
"totalViews" : 144,
"tasteMatchScore" : 85
},
"offers" : [ {
"id" : "287462",
"name" : "25% off on Room Rates & Exclusive Value Voucher of Rs. 1000/-",
"description" : "25% off on Room Rates & Exclusive Value Voucher of Rs. 1000/-",
"validFrom" : "2023-10-20T00:00:00.389Z",
"validTo" : "2026-10-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "India" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Sterling_Holidays.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "hdfc",
"howToRedeem" : "Redeemable at The Time of Booking on Sterling Website - sterlingholidays.com",
"currency" : "",
"payoutValue" : "25.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.sterlingholidays.com",
"termsAndConditions" : "The Offer is valid till 25% off on Room Rates & Exclusive Value Voucher of Rs. 1000/-\nMinimum 2 Night Booking to Avail this Offer\nCardholders need to indicate their intention to redeem the Offer before the bill is generated and may be asked to present their Mastercard card for confirmation\nFor participating outlets Click here\nThe Offer is available only upon making full payment by a valid and unexpired Mastercard card issued in India.\nOffer cannot be combined with any other offer/ promotion/ scheme.\nThe Offer is non-transferable and cannot be exchanged for cash or cheque or any form of credit.\nTotal spending will be calculated based on the product cost only excluding all taxes, GST, delivery charges, etc. Any taxes or liabilities or charges payable to the Government or any other authority or body, if any, shall be borne directly by the cardholder and/ or billed to the account of the cardholder.\nAny dispute regarding delivery, service, suitability, merchantability, availability or quality of the offer/or product/services availed under this offer must be addressed in writing, by the cardholder directly to info@thriwe.com. Mastercard or the issuing bank will not be liable for the same.\nCardholders are not bound in any way to participate in the Offer. Any participation shall be voluntary, and all participants understand, acknowledge and agree that the Offer is purely on a best effort basis and Mastercard does not assume any liability whatsoever regarding the Offer, the delivery of services or any incidental matter.\nAny cardholder who utilises, participates in or attempts to utilise or participate in the Mastercard Card Offers program, irrevocably agrees to the following: Mastercard will not be liable under contract, tort or any other theory of law for any claim regarding loss or damage howsoever incurred in relation to the use (or attempted use) of the Offer; and accordingly, the cardholder will not make any claim against Mastercard regarding the same.\nEach benefit/privilege may be subject to additional terms and conditions imposed by Sterling Holidays The right of admission is reserved with the merchant. Cardholders are solely responsible for checking and complying with the same.\nThese terms and conditions shall be governed by the laws of India and any dispute arising out of or in connection with these terms and conditions shall be subject to the exclusive jurisdiction of the courts in Mumbai.\nMastercard reserves the right to add, alter, modify, change or vary any of these terms and conditions or to replace, wholly or in part, this Offer by another offer, whether similar or not, or to withdraw it altogether at any point in time, without any prior notice."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "travel-agency", "travel-agencies-and-operators", "hotel-booking" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-agency", "travel-agencies-and-operators" ],
"searchScore" : 10.474361,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags", "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "c6a9fa99-fd06-34e8-80b8-920417ab220c",
"name" : "Rituals",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/rituals_merchant.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC1256",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/rituals_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/rituals_logo.webp",
"url" : "https://en-ae.rituals.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/rituals_banner.webp",
"tasteMatchScore" : 81
},
"offers" : [ {
"id" : "2165",
"name" : "Get 10% off on your purchases at Rituals",
"description" : "Get 10% off on your purchases at Rituals untill 21-12-2022\nOnline offer",
"validFrom" : "2022-07-20T00:00:00.389Z",
"validTo" : "2026-12-21T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "AC18",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/2165_webp_Rituals.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 10.0,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=954&aff_id=68962",
"termsAndConditions" : "1. The offer is valid upto 21-12-2022\n2. The offer is valid for 'Beauty', 'Fashion' only\n3. The offer is applicable for 'Mobile', 'Desktop / Web'\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/2165_webp_Rituals.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "12.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "206478",
"name" : "Get up to 10% discount on your purchase at Rituals",
"description" : "Get up to 10% discount on your purchase at Rituals till 31-12-2023\nOnline offer",
"validFrom" : "2023-05-03T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "A91",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/rituals_offer01.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://en-ae.rituals.com/",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/rituals_offer01.webp",
"offerType" : "offline coupon",
"offerSource" : "arabyads",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "9.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "large-product-range", "home-and-kitchen", "perfumery", "single-brand", "gifts-and-souvenirs", "health-and-beauty", "cosmetics-and-skincare", "travel-accessories", "personal-care", "online-and-in-store", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-accessories" ],
"searchScore" : 6.61951566,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "27616647-b62b-39e7-8fcc-7229d2b66fdf",
"name" : "Dubaistore",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/dubaistore_merchant.webp",
"externalId" : "AD4532",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/dubaistore_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/dubaistore_logo.webp",
"url" : "https://www.dubaistore.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/dubaistore_banner.webp",
"totalViews" : 2,
"tasteMatchScore" : 81
},
"offers" : [ {
"id" : "169959",
"name" : "Get 10% off up to 50 AED on your purchase at DubaiStore",
"description" : "Get 10% off up to 50 AED on your purchase at DubaiStore till 31-12-2023\nOnline offer",
"validFrom" : "2023-01-10T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/dubaistore_offer.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/iclcdo41u4d19318053674025c6e6e/?i=8",
"termsAndConditions" : "1.The offer is valid upto 31-12-2023\n2.The categories/products which are excluded from this offer are: N/A\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new users only\n5.Coupons are applicable for ADIB card users only\n6.Coupon is applicable for online purchase above 150 AED only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable\n9.Customer is redirected to third party website -Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/dubaistore_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "basic-service", "perfumery", "kitchen-appliances", "video-games", "home-improvement-supplies", "pet-supplies", "furniture", "health-and-beauty", "pet-and-pet-supplies", "multi-brand", "online-and-in-store", "sports-and-outdoors", "home-appliances", "home-and-kitchen", "home-furnishings", "apparel-and-accessories", "kids-utilities", "international", "books-and-music", "books", "computer-and-electronics", "musical-instrument", "travel-accessories", "tools-and-home-improvement", "personal-care", "delivery-service", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-accessories" ],
"searchScore" : 6.61951566,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "bcb7f6fd-efa7-3d34-bd02-8d525a66db34",
"name" : "Ubuy",
"description" : "Shop electronics, fashion, mobile phones, computers, gaming laptops, beauty products, home improvement & office products, perfumes & more at discount",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC150_4_Ubuy_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC150",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC150_4_Ubuy_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/AC150_Ubuy_New_Logo.webp.webp",
"url" : "https://www.ubuy.com",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/AC150_Ubuy_New_Banner.webp.webp",
"tasteMatchScore" : 81
},
"offers" : [ {
"id" : "1341",
"name" : "Get up to 10% off on your purchase at Ubuy",
"description" : "Get up to 10% off on your purchase at Ubuy till 31-12-2023\nOnline offer",
"validFrom" : "2022-06-18T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "UBAN230",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC150_1_Ubuy_New_Image.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 5.0,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=939&aff_id=68962",
"termsAndConditions" : "1. The offer is valid upto 31-12-2023\n2. The offer is valid for 'Beauty', 'Fashion', 'Consumer Platforms', 'Baby & Kids', 'TV & Electronics', 'Mobiles, Tablets & Computers', 'Home, Kitchen & Garden' only\n3. The offer is applicable for 'Mobile', 'Desktop / Web'\n4. The offer is valid on new users only\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC150_1_Ubuy_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "",
"payoutValue" : "5.6"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "perfumery", "food-beverages-and-groceries", "health-and-beauty", "pet-and-pet-supplies", "cameras-and-accessories", "multi-brand", "home-appliances", "home-and-kitchen", "home-furnishings", "online", "international", "kids-utilities", "kitchen-accessories", "luggage-store", "books-and-music", "computer-and-electronics", "travel-accessories", "groceries", "regular-retail-store", "basic-service", "home-improvement-supplies", "pet-supplies", "furniture", "home-audio-and-accessories", "computer-and-accessories", "large-product-range", "mobile-phones", "books", "musical-instrument", "delivery-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-accessories" ],
"searchScore" : 6.61951566,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "23f8d6eb-d5fa-3e64-9bda-aabf78c39960",
"name" : "Fordeal",
"description" : "Incredible online shopping center. Free shipping! Big discounted! Cash on Delivery! 24 hours intimate customer service.",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/DC28_35_Fordeal_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DC28",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/DC28_35_Fordeal_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/DC28_Fordeal_New_Logo.webp.webp",
"url" : "https://www.fordeal.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/DC28_Fordeal_New_Banner.webp.webp",
"tasteMatchScore" : 81
},
"offers" : [ {
"id" : "1336",
"name" : "Get 15% off upto 25 AED on your purchase at Fordeal",
"description" : "Get 15% off upto 25 AED on your purchase at Fordeal till 31-12-2023\nOnline offer",
"validFrom" : "2022-06-18T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "AC290",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/43502_FordealOffer_Image.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 5.1,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=584&aff_id=68962",
"termsAndConditions" : "1. The offer is valid upto 31-12-2023\n2. The offer is valid for 'Beauty', 'Fashion', 'TV & Electronics', 'Home, Kitchen & Garden', 'Coupon Offers' only\n3. The offer is applicable for 'Mobile', 'Desktop / Web'\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/43502_FordealOffer_Image.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "",
"payoutValue" : "6.4"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "perfumery", "stationery", "automobile-and-accessories", "health-and-beauty", "multi-brand", "footwear-store", "toys-and-games", "home-appliances", "home-and-kitchen", "home-furnishings", "opticals", "international", "kids-utilities", "luggage-store", "computer-and-electronics", "other-products", "travel-accessories", "regular-retail-store", "basic-service", "kitchen-appliances", "art-and-craft-supplies", "home-audio-and-accessories", "others", "online-and-in-store", "travel-utilities", "computer-and-accessories", "toys", "apparel-and-accessories", "games", "mobile-phones", "cosmetics-and-skincare", "personal-care", "school-and-office-supplies", "delivery-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-utilities", "travel-accessories" ],
"searchScore" : 6.61951566,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "c297c09f-e0ae-3111-b10d-727038bc3507",
"name" : "Jashanmal",
"category" : "miscellaneous stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/jashanmal_merchant.webp",
"externalId" : "BO2221",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/jashanmal_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/jashanmal_logo.webp",
"url" : "https://www.jashanmal.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/jashanmal_banner.webp",
"tasteMatchScore" : 70
},
"offers" : [ {
"id" : "210496",
"name" : "Get 15% discount on your purchase at Jashanmal",
"description" : "Get 15% discount on your purchase at till 12-07-2023\nOnline offer",
"validFrom" : "2023-02-06T00:00:00.389Z",
"validTo" : "2026-07-12T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/jashanmal_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 2.0,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/4gwxonvp2od19318053662651c44e1/?i=8",
"termsAndConditions" : "1.The offer is valid till 12-07-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/jashanmal_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "3.5"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "perfumery", "housewares", "kitchen-appliances", "furniture", "health-and-beauty", "online-and-in-store", "toys-and-games", "travel-utilities", "toys", "home-appliances", "home-and-kitchen", "home-furnishings", "kitchen-accessories", "cosmetics-and-skincare", "travel-accessories", "personal-care", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-accessories", "travel-utilities" ],
"searchScore" : 5.61951566,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "dfcde9ae-ea9d-384b-8145-f28b53c2a8b8",
"name" : "Mikyajy",
"description" : "Welcome to the colorful world of Mikyajy! Since its inception 20 years ago as a pioneer in Khaleeji color cosmetics and fragrance, Mikyajy has grown into a closely-knit family of 1.5 million loyal fans across Saudi Arabia, the UAE, Oman, Bahrain, Kuwait and Qatar!",
"category" : "apparel and accessories",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC610_2_Mikyajy_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC610",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC610_2_Mikyajy_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/AC610_Mikyajy_New_Logo.webp.webp",
"url" : "https://mikyajy.com/uae_en/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/AC610_Mikyajy_New_Banner.webp.webp",
"tasteMatchScore" : 85
},
"offers" : [ {
"id" : "1411",
"name" : "Get up to 10% off on your purchase at Mikyajy",
"description" : "Get up to 10% off on your purchase at Mikyajy till 31-12-2023\nOnline offer",
"validFrom" : "2022-06-18T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "AC6",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC610_1_Mikyajy_New_Image.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 6.0,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=963&aff_id=68962",
"termsAndConditions" : "1. The offer is valid upto 31-12-2023\n2. The offer is valid for 'Beauty' only\n3. The offer is applicable for 'Mobile', 'Desktop / Web'\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC610_1_Mikyajy_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "8.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "hair-and-beauty", "perfumery", "female", "health-and-beauty", "nail-spa", "multi-brand", "online-and-in-store", "travel-utilities", "international", "hair-accessories", "cosmetics-and-skincare", "beauty-products", "travel-accessories", "personal-care", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-utilities", "travel-accessories" ],
"searchScore" : 3.6195156600000002,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "ad42ec5f-aa9d-3501-aa39-aecde462da71",
"name" : "Milano",
"description" : "Our obsession with style is reflected through our products, fulfilling our customer’s desire to look and feel their best.",
"category" : "apparel and accessories",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AD1020_2_Milano_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AD1020",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AD1020_2_Milano_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/AD1020_Milano_New_Logo.webp.webp",
"url" : "https://uae.milanomena.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/AD1020_Milano_New_Banner.webp.webp",
"tasteMatchScore" : 85
},
"offers" : [ {
"id" : "2119",
"name" : "Get up to 10% off on your purchase at Milano",
"description" : "Get up to 10% off on your purchase at Milano till 31-12-2022\nOnline offer",
"validFrom" : "2021-05-01T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "A407",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AD1020_1_Milano_New_Image.webp.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://uae.milanomena.com/",
"termsAndConditions" : "1.\tThe offer is valid upto 31-12-2022\n2.\tThe offer is valid for Apparel, Accessories only\n3.\tThe categories/products which are excluded from this offer are: N/A\n4.\tThe offer is valid on app & website purchases only\n5.\tThe offer is applicable for new & repeat users\n6.\tCoupons are applicable for ADIB card users only\n7.\tCoupon is applicable for online purchase only\n8.\tAccidental loss of coupon shall not be covered \n9.\tCoupons are not transferable \n10.\tCoupons cannot be replaced if lost.\n11.\tCustomer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.\tCoupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AD1020_1_Milano_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "",
"payoutValue" : "7.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "online", "shoes-and-accessories-store", "international", "apparel-and-accessories", "luggage-store", "accessories-store", "travel-accessories", "footwear-store", "travel-utilities", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-accessories", "travel-utilities" ],
"searchScore" : 3.6195156600000002,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "d385c71b-3443-3eb2-a4b1-af92c8a70058",
"name" : "Booksvenue",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/bv_merchant.webp",
"externalId" : "OM30",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/bv_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/bv_logo02.webp",
"url" : "https://www.booksvenue.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/bv_banner.webp",
"tasteMatchScore" : 81
},
"offers" : [ {
"id" : "204801",
"name" : "Get up to 10% discount on your purchase at Booksvenue",
"description" : "Get up to 10% discount on your purchase at Booksvenue till 31-12-2023\nOnline offer",
"validFrom" : "2023-04-18T00:00:00.389Z",
"validTo" : "2026-12-13T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "AV21",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/bv_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.booksvenue.com/",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/bv_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "optimise media",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "9.1"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "travel-agency", "online", "travel-agencies-and-operators", "hotel-booking" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"matchKeyword" : [ "travel-agency", "travel-agencies-and-operators" ],
"searchScore" : 1.61951566,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "tags" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "59799936-65a1-3136-9d28-f17797b06b9b",
"name" : "Melia Athens",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Melia_Athens_Merchant.webp",
"externalId" : "DT208",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Melia_Athens_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Melia_Athens_Logo.webp",
"url" : "https://www.melia.com/en/hotels/greece/athens/melia-athens",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Melia_Athens_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213400",
"name" : "Get 26% off on 3 night stay at Supreme Room at Melia Athens from dnata Travel, Abu Dhabi",
"description" : "Get 26% off on 3 night stay at Supreme Room at Melia Athens from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Melia_Athens_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Melia_Athens_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Melia_Athens",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get a return airport transfers\n10.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "suite", "front-desk", "non-smoking-room", "sun-terrace", "tv", "wheelchair-access", "5-star", "house-keeping", "melia", "hot-tub", "spa", "24-by-7-support", "steam-room", "sauna", "free-toiletries", "business-center", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "concierge", "photocopier", "parking-available", "kids-and-family", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "city-view", "tour-desk", "airport-transportation", "fitness-center", "modern-design", "desk", "pool-bar", "air-conditioned", "mini-bar", "soundproof-room", "kids-pool", "eat-outs", "museum", "shuttle-service", "business-meeting", "bar", "swimming-pool", "large-group", "refrigerator", "free-internet", "hair-dryer", "beach" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.24662,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "79971e16-14f3-3d92-ae6e-660d2aefc1f5",
"name" : "Starhotels Metropole",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Starhotels_Metropole_Merchant.webp",
"externalId" : "DT221",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Starhotels_Metropole_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Starhotels_Metropole_Logo.webp",
"url" : "https://www.starhotels.com/en/our-hotels/metropole-rome/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Starhotels_Metropole_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213391",
"name" : "Get 20% off on 3 night stay at Superior Room at Starhotels Metropole from dnata Travel, Abu Dhabi",
"description" : "Get 20% off on 3 night stay at Superior Room at Starhotels Metropole from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Starhotels_Metropole_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Starhotels_Metropole_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Starhotels_Metropole",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get a return airport transfers\n10.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "kids-activities", "front-desk", "double-room", "non-smoking-room", "tv", "house-keeping", "24-by-7-support", "business-center", "adjoining-room", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "disabled-friendly", "concierge", "public-transport", "photocopier", "parking-available", "kids-and-family", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "airport-transportation", "tour-desk", "fitness-center", "pets-allowed", "air-conditioned", "mini-bar", "soundproof-room", "eat-outs", "basic-design", "museum", "business-meeting", "bar", "allergy-free-room", "large-group", "babysitting", "free-internet", "4-star" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.24662,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "392ddf8f-1e9c-38a3-9229-ee01a6d3565f",
"name" : "Maritim Resort & Spa",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Maritim_Resort_&_Spa_Merchant.webp",
"externalId" : "DT206",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Maritim_Resort_&_Spa_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Maritim_Resort_&_Spa_Logo.webp",
"url" : "https://www.maritim.com/en/hotels/mauritius/hotel-mauritius/hotel-overview",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Maritim_Resort_&_Spa_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213423",
"name" : "Get 26% off on 3 night stay at Deluxe Room at Maritim Resort & Spa from dnata Travel, Abu Dhabi",
"description" : "Get 26% off on 3 night stay at Deluxe Room at Maritim Resort & Spa from dnata Travel, Abu Dhabi till 15-07-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-07-15T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Maritim_Resort_&_Spa_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Maritim_Resort_&_Spa_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Maritim_Resort_&_Spa",
"termsAndConditions" : "1.The offer is valid till 15-07-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes all inclusive meal plan\n9.Get 50% savings on stay\n10.Get a return private airport transfers\n11.Offer stay is valid till 31-08-2023 \n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "kids-activities", "front-desk", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "hot-tub", "24-by-7-support", "sauna", "free-toiletries", "couple", "valet-parking", "disabled-friendly", "concierge", "kids-and-family", "sea-view", "restaurant", "luggage-storage", "airport-transportation", "tour-desk", "gaming-area", "fitness-center", "modern-design", "desk", "pool-bar", "fishing", "mini-bar", "kids-pool", "museum", "business-meeting", "bar", "swimming-pool", "large-group", "beach", "sun-terrace", "house-keeping", "spa", "business-center", "adjoining-room", "luxury-hotel", "private-beach", "bathrobe", "room-service", "family-room", "free-parking", "photocopier", "garden", "parks-and-gardens", "currency-exchange", "laundry-service", "dry-cleaning", "air-conditioned", "eat-outs", "shuttle-service", "babysitting", "free-internet", "hair-dryer", "infinity-pool" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.056757,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "8945f4eb-88d7-3b2a-beff-a0c3a63f8d77",
"name" : "Prague Marriott Hotel",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Prague_Marriott_Hotel_Merchant.webp",
"externalId" : "DT214",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Prague_Marriott_Hotel_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Prague_Marriott_Hotel_Logo.webp",
"url" : "https://www.marriott.com/en-us/hotels/prgdt-prague-marriott-hotel/overview/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Prague_Marriott_Hotel_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213394",
"name" : "Get 27% off on 3 night stay at Deluxe Room at Prague Marriott Hotel from dnata Travel, Abu Dhabi",
"description" : "Get 27% off on 3 night stay at Deluxe Room at Prague Marriott Hotel from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Prague_Marriott_Hotel_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Prague_Marriott_Hotel_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Prague_Marriott_Hotel",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get a return airport transfers\n10.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "kids-activities", "front-desk", "non-smoking-room", "tv", "5-star", "house-keeping", "marriott", "24-by-7-support", "business-center", "free-toiletries", "adjoining-room", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "valet-parking", "disabled-friendly", "concierge", "public-transport", "zoo", "photocopier", "kids-and-family", "parking-available", "garden", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "airport-transportation", "tour-desk", "fitness-center", "modern-design", "pets-allowed", "desk", "air-conditioned", "mini-bar", "eat-outs", "museum", "shuttle-service", "business-meeting", "bar", "babysitting", "large-group", "allergy-free-room", "atm", "refrigerator", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.056757,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "64a03bf8-6677-3188-9614-b062724728f0",
"name" : "Dusit Thani Laguna",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Dusit_Thani_Laguna_Merchant.webp",
"externalId" : "DT186",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Dusit_Thani_Laguna_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Dusit_Thani_Laguna_Logo.webp",
"url" : "https://www.dusit.com/dusitthani-lagunaphuket/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Dusit_Thani_Laguna_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213427",
"name" : "Get 27% off on 3 night stay at Deluxe Room at Dusit Thani Laguna from dnata Travel, Abu Dhabi",
"description" : "Get 27% off on 3 night stay at Deluxe Room at Dusit Thani Laguna from dnata Travel, Abu Dhabi till 15-07-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-07-15T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Dusit_Thani_Laguna_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Dusit_Thani_Laguna_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Dusit_Thani_Laguna",
"termsAndConditions" : "1.The offer is valid till 15-07-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get 30% savings on stay\n10.Get a return private airport transfers\n11.Offer stay is valid till 31-08-2023 \n12.Get Benefits for Honeymooners\n13.Kids can eat and stay for free\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "front-desk", "banquet-hall", "king-room", "non-smoking-room", "tv", "5-star", "house-keeping", "spa", "24-by-7-support", "sauna", "free-toiletries", "spacious-rooms", "room-service", "bathrobe", "free-parking", "concierge", "public-transport", "kids-and-family", "parks-and-gardens", "restaurant", "laundry-service", "airport", "luggage-storage", "airport-transportation", "city-view", "dry-cleaning", "fitness-center", "modern-design", "desk", "pool-bar", "air-conditioned", "mini-bar", "soundproof-room", "eat-outs", "business-meeting", "museum", "shuttle-service", "bar", "swimming-pool", "babysitting", "free-internet", "hair-dryer", "beach", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.056757,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "a729e16b-c566-33ae-bc81-875fea283c11",
"name" : "Occidental Puerto Banus",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Occidental_Puerto_Banus_Merchant.webp",
"externalId" : "DT210",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Occidental_Puerto_Banus_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Occidental_Puerto_Banus_Logo.webp",
"url" : "https://www.barcelo.com/en-ww/occidental-puerto-banus/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Occidental_Puerto_Banus_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213383",
"name" : "Get 22% off on 3 night stay at Superior Room at Occidental Puerto Banus from dnata Travel, Abu Dhabi",
"description" : "Get 22% off on 3 night stay at Superior Room at Occidental Puerto Banus from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Occidental_Puerto_Banus_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Occidental_Puerto_Banus_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Occidental_Puerto_Banus",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get a return airport transfers\n10.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "kids-activities", "front-desk", "non-smoking-room", "sun-terrace", "tv", "house-keeping", "24-by-7-support", "free-toiletries", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "disabled-friendly", "concierge", "photocopier", "parking-available", "kids-and-family", "garden", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "airport-transportation", "tour-desk", "gaming-area", "modern-design", "air-conditioned", "fishing", "mini-bar", "soundproof-room", "kids-pool", "eat-outs", "shuttle-service", "business-meeting", "bar", "swimming-pool", "babysitting", "large-group", "free-internet", "hair-dryer", "beach", "4-star" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.056757,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "2aa17841-f492-3a4a-bec8-0196659c19e5",
"name" : "Bristol Hotel Geneva",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Bristol_Hotel_Geneva_Merchant.webp",
"externalId" : "DT194",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Bristol_Hotel_Geneva_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Bristol_Hotel_Geneva_Logo.webp",
"url" : "https://www.bristol.ch/en/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Bristol_Hotel_Geneva_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213389",
"name" : "Get 21% off on 3 night stay at Classic Room at Bristol Hotel Geneva from dnata Travel, Abu Dhabi",
"description" : "Get 21% off on 3 night stay at Classic Room at Bristol Hotel Geneva from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Bristol_Hotel_Geneva_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Bristol_Hotel_Geneva_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Bristol_Hotel_Geneva",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get a return airport transfers\n10.Offer stay is valid from 15-07-2023 to 31-08-2023\n11.Get 10% savings on stay for Early booking\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "front-desk", "non-smoking-room", "tv", "house-keeping", "hot-tub", "spa", "garden-view", "24-by-7-support", "sauna", "steam-room", "business-center", "free-toiletries", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "disabled-friendly", "concierge", "public-transport", "parking-available", "photocopier", "kids-and-family", "garden", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "tour-desk", "fitness-center", "modern-design", "pets-allowed", "desk", "air-conditioned", "mini-bar", "soundproof-room", "eat-outs", "museum", "business-meeting", "bar", "babysitting", "large-group", "free-internet", "hair-dryer", "4-star" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.056757,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "fd0782b9-ff18-3f3e-8a09-0ebe4da2d42c",
"name" : "Yasmin Bodrum Resort",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Yasmin_Bodrum_Resort_Merchant.webp",
"externalId" : "DT225",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Yasmin_Bodrum_Resort_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Yasmin_Bodrum_Resort_Logo.webp",
"url" : "https://yasminbodrum.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Yasmin_Bodrum_Resort_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213381",
"name" : "Get 23% off on 3 night stay at Club Room at Yasmin Bodrum Resort from dnata Travel, Abu Dhabi",
"description" : "Get 23% off on 3 night stay at Club Room at Yasmin Bodrum Resort from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Yasmin_Bodrum_Resort_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Yasmin_Bodrum_Resort_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Yasmin_Bodrum_Resort",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes all inclusive meal plan\n9.Get a return airport transfers\n10.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "front-desk", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "house-keeping", "night-club", "spa", "24-by-7-support", "steam-room", "business-center", "free-toiletries", "sauna", "luxury-hotel", "private-beach", "bathrobe", "room-service", "family-room", "couple", "valet-parking", "disabled-friendly", "free-parking", "photocopier", "kids-and-family", "garden", "sea-view", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "airport-transportation", "gaming-area", "fitness-center", "modern-design", "desk", "pool-bar", "air-conditioned", "mini-bar", "kids-pool", "eat-outs", "shuttle-service", "business-meeting", "bar", "swimming-pool", "large-group", "free-internet", "hair-dryer", "beach" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.056757,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "1fd1db1b-4c3a-397b-b211-55477777ca27",
"name" : "Shangri La Hambantota",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Shangri_La_Hambantota_Merchant.webp",
"externalId" : "DT217",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Shangri_La_Hambantota_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Shangri_La_Hambantota_Logo.webp",
"url" : "https://www.shangri-la.com/en/hambantota/shangrila/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Shangri_La_Hambantota_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213422",
"name" : "Get 22% off on 3 night stay at Deluxe Room at Shangri La Hambantota from dnata Travel, Abu Dhabi",
"description" : "Get 22% off on 3 night stay at Deluxe Room at Shangri La Hambantota from dnata Travel, Abu Dhabi till 15-07-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-07-15T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Shangri_La_Hambantota_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Shangri_La_Hambantota_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Shangri_La_Hambantota",
"termsAndConditions" : "1.The offer is valid till 15-07-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Half Board meal plan\n9.Get 45% savings on stay\n10.Get a return private airport transfers\n11.Offer stay is valid till 31-08-2023\n12.Get complimentary upgrade to Half Board \n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "kids-activities", "king-room", "front-desk", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "house-keeping", "shangri-la", "spa", "24-by-7-support", "sauna", "free-toiletries", "business-center", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "valet-parking", "disabled-friendly", "free-parking", "concierge", "photocopier", "kids-and-family", "garden", "sea-view", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "airport-transportation", "tour-desk", "gaming-area", "fitness-center", "modern-design", "desk", "pool-bar", "air-conditioned", "mini-bar", "soundproof-room", "eat-outs", "business-meeting", "bar", "swimming-pool", "babysitting", "large-group", "atm", "free-internet", "hair-dryer", "beach" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.056757,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "92b06125-c7cf-3279-9dd6-43887c38fba6",
"name" : "Arts Hotel Taksim",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Arts_Hotel_Taksim_Merchant.webp",
"externalId" : "DT193",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Arts_Hotel_Taksim_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Arts_Hotel_Taksim_Logo.webp",
"url" : "https://artshotel.com.tr/taksim/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Arts_Hotel_Taksim_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213379",
"name" : "Get 28% off on 3 night stay at Standard Room at Arts Hotel Taksim from dnata Travel, Abu Dhabi",
"description" : "Get 28% off on 3 night stay at Standard Room at Arts Hotel Taksim from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Arts_Hotel_Taksim_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Arts_Hotel_Taksim_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Arts_Hotel_Taksim",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get a return airport transfers\n10.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "kids-activities", "front-desk", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "house-keeping", "spa", "24-by-7-support", "steam-room", "business-center", "free-toiletries", "sauna", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "disabled-friendly", "concierge", "photocopier", "kids-and-family", "sea-view", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "airport-transportation", "tour-desk", "gaming-area", "fitness-center", "modern-design", "desk", "air-conditioned", "mini-bar", "soundproof-room", "kids-pool", "eat-outs", "museum", "shuttle-service", "business-meeting", "bar", "swimming-pool", "babysitting", "large-group", "allergy-free-room", "refrigerator", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.056757,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "b8217f5d-1143-3f12-9edb-4b41afcfd3da",
"name" : "Corinthia Palace Malta",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Corinthia_Palace_Malta_Merchant.webp",
"externalId" : "DT195",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Corinthia_Palace_Malta_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Corinthia_Palace_Malta_Logo.webp",
"url" : "https://www.corinthia.com/palace-hotel-and-spa/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Corinthia_Palace_Malta_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213396",
"name" : "Get 22% off on 3 night stay at Standard Room at Corinithia Palace Malta from dnata Travel, Abu Dhabi",
"description" : "Get 22% off on 3 night stay at Standard Room at Corinithia Palace Malta from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Corinthia_Palace_Malta_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Corinthia_Palace_Malta_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Corinthia_Palace_Malta",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get a return airport transfers\n10.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "double-room", "kids-activities", "front-desk", "non-smoking-room", "sun-terrace", "tv", "5-star", "house-keeping", "spa", "garden-view", "24-by-7-support", "sauna", "steam-room", "free-toiletries", "business-center", "luxury-hotel", "bathrobe", "room-service", "couple", "free-parking", "concierge", "photocopier", "kids-and-family", "garden", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "airport-transportation", "tour-desk", "gaming-area", "fitness-center", "modern-design", "desk", "air-conditioned", "mini-bar", "kids-pool", "eat-outs", "shuttle-service", "business-meeting", "bar", "swimming-pool", "babysitting", "large-group", "free-internet", "hair-dryer", "beach" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.056757,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "7a3b65eb-faee-3226-b213-7e22a3b526dc",
"name" : "Regent Porto Montenegro",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Regent_Porto_Montenegro_Merchant.webp",
"externalId" : "DT216",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Regent_Porto_Montenegro_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Regent_Porto_Montenegro_Logo.webp",
"url" : "https://www.ihg.com/regent/hotels/gb/en/porto-montenegro/tivpm/hoteldetail",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Regent_Porto_Montenegro_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213401",
"name" : "Get 25% off on 3 night stay at Classic Room at Regent Porto Montenegro from dnata Travel, Abu Dhabi",
"description" : "Get 25% off on 3 night stay at Classic Room at Regent Porto Montenegro from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Regent_Porto_Montenegro_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Regent_Porto_Montenegro_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Regent_Porto_Montenegro_.",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get savings on stay\n10.Get a return airport transfers\n11.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "kids-activities", "front-desk", "non-smoking-room", "tv", "regent", "5-star", "hot-tub", "24-by-7-support", "steam-room", "sauna", "free-toiletries", "couple", "valet-parking", "disabled-friendly", "concierge", "kids-and-family", "sea-view", "restaurant", "luggage-storage", "tour-desk", "gaming-area", "fitness-center", "modern-design", "pets-allowed", "desk", "pool-bar", "fishing", "mini-bar", "kids-pool", "studio", "business-meeting", "bar", "swimming-pool", "large-group", "refrigerator", "beach", "suite", "king-room", "sun-terrace", "house-keeping", "spa", "adjoining-room", "luxury-hotel", "bathrobe", "room-service", "family-room", "parking-available", "photocopier", "garden", "laundry-service", "dry-cleaning", "air-conditioned", "soundproof-room", "eat-outs", "shuttle-service", "babysitting", "free-internet", "hair-dryer", "infinity-pool" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.056757,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "9baa5898-268f-36bc-8438-1debe881ac5d",
"name" : "Legoland Hotel Dubai",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/LEGOLAND_Hotel_Dubai_Merchant.webp",
"externalId" : "DT127",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/LEGOLAND_Hotel_Dubai_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/LEGOLAND_Hotel_Dubai_Logo.webp",
"url" : "https://www.legoland.com/dubai/legoland-hotel/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/LEGOLAND_Hotel_Dubai_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213407",
"name" : "Get 33% off on 1 night stay at Themed room at LEGOLAND Hotel Dubai from dnata Travel, Abu Dhabi",
"description" : "Get 33% off on 1 night stay at Themed room at LEGOLAND Hotel Dubai from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/LEGOLAND_Hotel_Dubai_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/LEGOLAND_Hotel_Dubai_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=LEGOLAND_Hotel_Dubai",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes breakfast meal plan\n9.Get park access\n10.Offer stay is valid till 31-07-2023\n11.Get free access to LEGOLAND Dubai or LEGOLAND Water Park\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "kids-activities", "banquet-hall", "front-desk", "non-smoking-room", "tv", "5-star", "house-keeping", "24-by-7-support", "free-toiletries", "family-room", "room-service", "couple", "disabled-friendly", "nature-and-wildlife", "free-parking", "concierge", "kids-and-family", "garden", "currency-exchange", "restaurant", "laundry-service", "other-design", "desk", "eat-outs", "business-meeting", "security", "bar", "swimming-pool", "atm", "free-internet", "air-conditioner", "refrigerator", "beach", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.056757,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "88c21876-6eac-384a-b64c-8c47444660dc",
"name" : "Thistle Marble Arch",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Thistle_Marble_Arch__Merchant.webp",
"externalId" : "DT223",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Thistle_Marble_Arch__Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Thistle_Marble_Arch__Logo.webp",
"url" : "https://www.thistle.com/marble-arch",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Thistle_Marble_Arch__Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213374",
"name" : "Get 21% off on 3 night stay at Standard Room at Thistle Marble Arch from dnata Travel, Abu Dhabi",
"description" : "Get 21% off on 3 night stay at Standard Room at Thistle Marble Arch from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Thistle_Marble_Arch__Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Thistle_Marble_Arch__Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Thistle_Marble_Arch",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Offer stay is valid till 31-08-2023\n10.Get savings on stay\n11.Get a return private airport transfers\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "double-room", "front-desk", "king-room", "non-smoking-room", "breakfast-included", "tv", "house-keeping", "24-by-7-support", "business-center", "free-toiletries", "luxury-hotel", "family-room", "room-service", "couple", "disabled-friendly", "concierge", "public-transport", "multilingual-staff", "photocopier", "kids-and-family", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "gaming-area", "fitness-center", "desk", "air-conditioned", "eat-outs", "basic-design", "museum", "business-meeting", "bar", "large-group", "free-internet", "hair-dryer", "4-star" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.056757,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "0cc162a7-4530-3e5e-84e7-76bb2e46290a",
"name" : "Electra Metropolis Athens",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Electra_Metropolis_Athens_Merchant.webp",
"externalId" : "DT196",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Electra_Metropolis_Athens_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Electra_Metropolis_Athens_Logo.webp",
"url" : "https://www.electrahotels.gr/hotels/electra-metropolis-athens/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Electra_Metropolis_Athens_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213399",
"name" : "Get 24% off on 3 night stay at Classic Room at Electra Metropolis Athens from dnata Travel, Abu Dhabi",
"description" : "Get 24% off on 3 night stay at Classic Room at Electra Metropolis Athens from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Electra_Metropolis_Athens_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Electra_Metropolis_Athens_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Electra_Metropolis_Athens",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get a return airport transfers\n10.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "non-smoking-room", "sun-terrace", "tv", "wheelchair-access", "house-keeping", "24-by-7-support", "steam-room", "free-toiletries", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "disabled-friendly", "concierge", "photocopier", "kids-and-family", "restaurant", "city-view", "luggage-storage", "tour-desk", "airport-transportation", "fitness-center", "desk", "air-conditioned", "basic-design", "shuttle-service", "business-meeting", "bar", "swimming-pool", "large-group", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.056757,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "394bf54f-49a7-313b-9a62-0a9667fccf27",
"name" : "Queen Elizabeth 2",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Queen_Elizabeth_2_Merchant.webp",
"externalId" : "DT215",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Queen_Elizabeth_2_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Queen_Elizabeth_2_Logo.webp",
"url" : "https://www.qe2.com/en/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Queen_Elizabeth_2_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213420",
"name" : "Get 21% off on 1 night stay at Standard Room at Queen Elizabeth 2 from dnata Travel, Abu Dhabi",
"description" : "Get 21% off on 1 night stay at Standard Room at Queen Elizabeth 2 from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Queen_Elizabeth_2_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Queen_Elizabeth_2_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Queen_Elizabeth_2",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan and One child up to 11 years stays and eats free\n9.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "king-room", "non-smoking-room", "tv", "designated-smoking-area", "house-keeping", "night-club", "24-by-7-support", "free-toiletries", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "valet-parking", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "sea-view", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "gaming-area", "fitness-center", "modern-design", "desk", "air-conditioned", "eat-outs", "museum", "shuttle-service", "business-meeting", "bar", "swimming-pool", "large-group", "atm", "free-internet", "hair-dryer", "beach", "4-star" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 21.056757,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "51e5a3d1-5d8e-32c7-a67c-044892dfccb0",
"name" : "Aloft Palm Jumeirah",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Aloft_Palm_Jumeirah_Merchant.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "BB35",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Aloft_Palm_Jumeirah_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Aloft_Palm_Jumeirah_Logo.webp",
"url" : "https://www.marriott.com/en-us/hotels/dxbap-aloft-palm-jumeirah/overview/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Aloft_Palm_Jumeirah_Banner.webp",
"totalViews" : 9,
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213404",
"name" : "Get 21% off on 1 night stay at Aloft King Room at Aloft Palm Jumeirah from dnata Travel, Abu Dhabi",
"description" : "Get 21% off on 1 night stay at Aloft King Room at Aloft Palm Jumeirah from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Aloft_Palm_Jumeirah_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Aloft_Palm_Jumeirah_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Aloft_Palm_Jumeirah",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Half Board meal plan\n9.Get savings on stay\n10.Offer stay is valid till 30-06-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "front-desk", "banquet-hall", "king-room", "breakfast-included", "tv", "designated-smoking-area", "house-keeping", "marriott", "private-beach", "room-service", "couple", "free-parking", "concierge", "public-transport", "multilingual-staff", "photocopier", "kids-and-family", "beachfront", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "luggage-storage", "pool-bar", "eat-outs", "bar", "swimming-pool", "fitness-centre", "atm", "free-internet", "air-conditioner", "4-star" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.879674,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "0fc89781-3413-317b-a9bd-54976725f319",
"name" : "Sofitel Abu Dhabi Corniche",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Abu_Dhabi_Corniche_Merchant.webp",
"externalId" : "DT10",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Abu_Dhabi_Corniche_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Abu_Dhabi_Corniche_Logo.webp",
"url" : "https://www.sofitelabudhabicorniche.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Abu_Dhabi_Corniche_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213413",
"name" : "Get 20% off on 1 night stay at Superior Room at Sofitel Abu Dhabi Corniche from dnata Travel, Abu Dhabi",
"description" : "Get 20% off on 1 night stay at Superior Room at Sofitel Abu Dhabi Corniche from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Sofitel_Abu_Dhabi_Corniche_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Sofitel_Abu_Dhabi_Corniche_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Sofitel_Abu_Dhabi_Corniche",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get savings on stay\n10.Offer stay is valid till 31-07-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "front-desk", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "house-keeping", "hot-tub", "spa", "24-by-7-support", "steam-room", "sauna", "free-toiletries", "places-of-worship", "luxury-hotel", "family-room", "bathrobe", "room-service", "couple", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "currency-exchange", "sea-view", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "luggage-storage", "airport-transportation", "tour-desk", "airport", "desk", "mini-bar", "shuttle-service", "bar", "business-meeting", "security", "swimming-pool", "fitness-centre", "sofitel", "large-group", "atm", "free-internet", "air-conditioner", "heater", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.879674,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "d1ef18a4-3200-36f0-a2fb-21ec3589977b",
"name" : "Mama Shelter Roma",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Mama_Shelter_Roma_Merchant.webp",
"externalId" : "DT205",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Mama_Shelter_Roma_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Mama_Shelter_Roma_Logo.webp",
"url" : "https://mamashelter.com/roma/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Mama_Shelter_Roma_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213390",
"name" : "Get 24% off on 3 night stay at Medium Mama Room at Mama Shelter Roma from dnata Travel, Abu Dhabi",
"description" : "Get 24% off on 3 night stay at Medium Mama Room at Mama Shelter Roma from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Mama_Shelter_Roma_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Mama_Shelter_Roma_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Mama_Shelter_Roma",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get 25% savings on stay\n10.Get a return airport transfers\n11.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "front-desk", "non-smoking-room", "tv", "house-keeping", "hot-tub", "spa", "garden-view", "24-by-7-support", "steam-room", "sauna", "free-toiletries", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "disabled-friendly", "concierge", "public-transport", "parking-available", "photocopier", "kids-and-family", "garden", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "fitness-center", "modern-design", "pets-allowed", "desk", "air-conditioned", "mini-bar", "soundproof-room", "eat-outs", "museum", "business-meeting", "bar", "allergy-free-room", "large-group", "free-internet", "hair-dryer", "4-star" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.879674,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "4b7bdce4-29e2-3cb7-aae6-982f1bf18125",
"name" : "St Raphael Resort",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/St_Raphael_Resort_Merchant.webp",
"externalId" : "DT220",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/St_Raphael_Resort_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/St_Raphael_Resort_Logo.webp",
"url" : "https://www.straphael.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/St_Raphael_Resort_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213397",
"name" : "Get 26% off on 3 night stay at Inland View Room at St Raphael Resort from dnata Travel, Abu Dhabi",
"description" : "Get 26% off on 3 night stay at Inland View Room at St Raphael Resort from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/St_Raphael_Resort_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/St_Raphael_Resort_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=\nSt_Raphael_Resort",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get a return airport transfers\n10.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "kids-activities", "front-desk", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "house-keeping", "mountain-view", "hot-tub", "spa", "24-by-7-support", "steam-room", "sauna", "free-toiletries", "business-center", "adjoining-room", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "disabled-friendly", "free-parking", "concierge", "photocopier", "kids-and-family", "garden", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "airport-transportation", "tour-desk", "gaming-area", "fitness-center", "modern-design", "desk", "pool-bar", "air-conditioned", "mini-bar", "soundproof-room", "kids-pool", "shuttle-service", "business-meeting", "bar", "swimming-pool", "babysitting", "large-group", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.879674,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "f4aafa1f-95de-31e8-9651-26c53d245c35",
"name" : "Five Zurich Lifestyle Hotel",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Five_Zurich_Lifestyle_Hotel_Merchant.webp",
"externalId" : "DT198",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Five_Zurich_Lifestyle_Hotel_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Five_Zurich_Lifestyle_Hotel_Logo.webp",
"url" : "https://zurich.fivehotelsandresorts.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Five_Zurich_Lifestyle_Hotel_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213388",
"name" : "Get 29% off on 3 night stay at Amazing Room at Five Zurich Lifestyle Hotel from dnata Travel, Abu Dhabi",
"description" : "Get 29% off on 3 night stay at Amazing Room at Five Zurich Lifestyle Hotel from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Five_Zurich_Lifestyle_Hotel_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Five_Zurich_Lifestyle_Hotel_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Five_Zurich_Lifestyle_Hotel",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get savings on stay\n10.Get a return airport transfers\n11.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "front-desk", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "house-keeping", "mountain-view", "night-club", "hot-tub", "spa", "24-by-7-support", "steam-room", "sauna", "free-toiletries", "adjoining-room", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "valet-parking", "concierge", "public-transport", "parking-available", "kids-and-family", "garden", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "airport-transportation", "tour-desk", "fitness-center", "modern-design", "pets-allowed", "desk", "pool-bar", "air-conditioned", "mini-bar", "soundproof-room", "eat-outs", "museum", "shuttle-service", "business-meeting", "bar", "swimming-pool", "allergy-free-room", "large-group", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.879674,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "fe12dfb2-3ab8-3cef-bdd0-7dc838958645",
"name" : "Shangri-la Bosphorus Istanbul",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Shangri-La_Bosphorus_Istanbul_Merchant.webp",
"externalId" : "DT218",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Shangri-La_Bosphorus_Istanbul_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Shangri-La_Bosphorus_Istanbul_Logo.webp",
"url" : "https://www.shangri-la.com/en/istanbul/shangrila/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Shangri-La_Bosphorus_Istanbul_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213378",
"name" : "Get 22% off on 3 night stay at Deluxe Room at Shangri-La Bosphorus, Istanbul from dnata Travel, Abu Dhabi",
"description" : "Get 22% off on 3 night stay at Deluxe Room at Shangri-La Bosphorus, Istanbul from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Shangri-La_Bosphorus_Istanbul_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Shangri-La_Bosphorus_Istanbul_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Shangri-La_Bosphorus,_Istanbul",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get savings on stay\n10.Get a return airport transfers\n11.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "front-desk", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "house-keeping", "hot-tub", "shangri-la", "spa", "24-by-7-support", "steam-room", "sauna", "free-toiletries", "business-center", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "valet-parking", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "city-view", "airport-transportation", "fitness-center", "modern-design", "pets-allowed", "desk", "air-conditioned", "mini-bar", "soundproof-room", "kids-pool", "eat-outs", "museum", "shuttle-service", "business-meeting", "bar", "swimming-pool", "allergy-free-room", "large-group", "atm", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.879674,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "d2eea428-6e9b-3ebc-8fbd-f723b587ac35",
"name" : "Sofitel Dubai Jumeirah Beach",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Dubai_Jumeirah_Beach_Merchant.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "BB1217",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Dubai_Jumeirah_Beach_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Dubai_Jumeirah_Beach_Logo.webp",
"url" : "https://www.sofitel-dubai-jumeirahbeach.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Sofitel_Dubai_Jumeirah_Beach_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213408",
"name" : "Get 23% off on 1 night stay at Superior Room at Sofitel Dubai Jumeirah Beach from dnata Travel, Abu Dhabi",
"description" : "Get 23% off on 1 night stay at Superior Room at Sofitel Dubai Jumeirah Beach from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Sofitel_Dubai_Jumeirah_Beach_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Sofitel_Dubai_Jumeirah_Beach_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Sofitel_Dubai_Jumeirah_Beach",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Half Board meal plan and One child up to 11 years stays and eats free\n9.Get 40% savings on stay\n10.Offer stay is valid till 05-07-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "marine-life", "front-desk", "banquet-hall", "suite", "king-room", "shopping-outlets", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "spa", "24-by-7-support", "places-of-worship", "sauna", "free-toiletries", "family-room", "bathrobe", "room-service", "couple", "disabled-friendly", "free-parking", "concierge", "public-transport", "multilingual-staff", "photocopier", "beachfront", "currency-exchange", "water-and-amusement-park", "sea-view", "laundry-service", "restaurant", "business-centre", "dry-cleaning", "luggage-storage", "airport", "tour-desk", "desk", "pool-bar", "mini-bar", "bar", "business-meeting", "security", "sofitel", "swimming-pool", "fitness-centre", "atm", "free-internet", "air-conditioner", "hair-dryer", "beach" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.879674,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "930e0c98-3b30-336a-8d58-c4aac8654699",
"name" : "The Prince Akatoki London",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/The_Prince_Akatoki_London_Merchant.webp",
"externalId" : "DT222",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/The_Prince_Akatoki_London_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/The_Prince_Akatoki_London_Logo.webp",
"url" : "https://www.theprinceakatokilondon.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/The_Prince_Akatoki_London_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213376",
"name" : "Get 22% off on 3 night stay at Deluxe Room at The Prince Akatoki London from dnata Travel, Abu Dhabi",
"description" : "Get 22% off on 3 night stay at Deluxe Room at The Prince Akatoki London from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/The_Prince_Akatoki_London_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/The_Prince_Akatoki_London_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=The_Prince_Akatoki_London",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get savings on stay\n10.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "kids-activities", "front-desk", "non-smoking-room", "tv", "wheelchair-access", "designated-smoking-area", "5-star", "house-keeping", "24-by-7-support", "business-center", "free-toiletries", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "disabled-friendly", "concierge", "photocopier", "kids-and-family", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "gaming-area", "fitness-center", "modern-design", "pets-allowed", "desk", "air-conditioned", "soundproof-room", "eat-outs", "museum", "business-meeting", "bar", "allergy-free-room", "large-group", "babysitting", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.879674,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "51bbef3e-6068-3ec3-a0cb-fba5af5bc271",
"name" : "Parisi Udvar Hotel Budapest",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Parisi_Udvar_Hotel_Budapest_Merchant.webp",
"externalId" : "DT211",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Parisi_Udvar_Hotel_Budapest_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Parisi_Udvar_Hotel_Budapest_Logo.webp",
"url" : "https://www.hyatt.com/en-US/hotel/hungary/parisi-udvar-hotel/budub",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Parisi_Udvar_Hotel_Budapest_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213395",
"name" : "Get 24% off on 3 night stay at Standard Room at Parisi Udvar Hotel Budapest from dnata Travel, Abu Dhabi",
"description" : "Get 24% off on 3 night stay at Standard Room at Parisi Udvar Hotel Budapest from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Parisi_Udvar_Hotel_Budapest_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Parisi_Udvar_Hotel_Budapest_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Parisi_Udvar_Hotel_Budapest",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get a return airport transfers\n10.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "kids-activities", "front-desk", "non-smoking-room", "tv", "5-star", "house-keeping", "hot-tub", "spa", "24-by-7-support", "steam-room", "business-center", "free-toiletries", "sauna", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "valet-parking", "disabled-friendly", "concierge", "parking-available", "kids-and-family", "photocopier", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "city-view", "tour-desk", "airport-transportation", "fitness-center", "modern-design", "pets-allowed", "desk", "air-conditioned", "mini-bar", "eat-outs", "museum", "shuttle-service", "business-meeting", "bar", "babysitting", "large-group", "allergy-free-room", "atm", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.879674,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "7b6dfd94-6251-378f-a155-5b675aef12fc",
"name" : "Park Hyatt Paris - Vendome",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Park_Hyatt_Paris_Vendome_Merchant.webp",
"externalId" : "DT212",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Park_Hyatt_Paris_Vendome_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Park_Hyatt_Paris_Vendome_Logo.webp",
"url" : "https://www.hyatt.com/en-US/hotel/france/park-hyatt-paris-vendome/parph",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Park_Hyatt_Paris_Vendome_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213386",
"name" : "Get 22% off on 3 night stay at Park Deluxe Room at Park Hyatt Paris - Vendome from dnata Travel, Abu Dhabi",
"description" : "Get 22% off on 3 night stay at Park Deluxe Room at Park Hyatt Paris - Vendome from dnata Travel, Abu Dhabi till 06-09-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-09-06T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Park_Hyatt_Paris_Vendome_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Park_Hyatt_Paris_Vendome_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Park_Hyatt_Paris_-_Vendome",
"termsAndConditions" : "1.The offer is valid till 06-09-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get a return airport transfers\n10.Offer stay is valid from 16-07-2023 to 06-09-2023\n11.Get 10% savings on stay for Early booking\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "front-desk", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "house-keeping", "hot-tub", "spa", "24-by-7-support", "steam-room", "sauna", "free-toiletries", "business-center", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "valet-parking", "disabled-friendly", "concierge", "public-transport", "parking-available", "kids-and-family", "photocopier", "currency-exchange", "restaurant", "laundry-service", "hyatt", "dry-cleaning", "luggage-storage", "city-view", "gaming-area", "fitness-center", "modern-design", "pets-allowed", "desk", "air-conditioned", "soundproof-room", "eat-outs", "museum", "business-meeting", "bar", "allergy-free-room", "large-group", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.71412,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "e28890e7-53df-39c9-a85e-027b90f9d5f8",
"name" : "The St. Regis Abu Dhabi",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/The_St._Regis_Abu_Dhabi_Merchant.webp",
"externalId" : "DT173",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/The_St._Regis_Abu_Dhabi_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/The_St._Regis_Abu_Dhabi_Logo.webp",
"url" : "https://www.marriott.com/en-us/hotels/auhrx-the-st-regis-abu-dhabi/overview/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/The_St._Regis_Abu_Dhabi_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213415",
"name" : "Get 21% off on 1 night stay at Superior Room at The St. Regis Abu Dhabi from dnata Travel, Abu Dhabi",
"description" : "Get 21% off on 1 night stay at Superior Room at The St. Regis Abu Dhabi from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/The_St._Regis_Abu_Dhabi_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/The_St._Regis_Abu_Dhabi_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=The_St_Regis_Abu_Dhabi",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan and One child up to 11 years stays and eats free\n9.Get 30% savings on stay\n10.Offer stay is valid till 31-07-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "breakfast-included", "tv", "designated-smoking-area", "5-star", "house-keeping", "spa", "sauna", "free-toiletries", "bathrobe", "room-service", "couple", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "garden", "beachfront", "currency-exchange", "sea-view", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "luggage-storage", "desk", "mini-bar", "eat-outs", "microwave", "security", "bar", "swimming-pool", "fitness-centre", "babysitting", "st-regis", "refrigerator", "heater", "free-internet", "atm", "hair-dryer", "beach" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.71412,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "69217632-02a5-35d9-ba6e-5ef2a1f3e124",
"name" : "Fairmont Monte Carlo Hotel",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Fairmont_Monte_Carlo_Hotel_Merchant.webp",
"externalId" : "DT197",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Fairmont_Monte_Carlo_Hotel_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Fairmont_Monte_Carlo_Hotel_Logo.webp",
"url" : "https://www.fairmont.com/monte-carlo/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Fairmont_Monte_Carlo_Hotel_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213387",
"name" : "Get 26% off on 3 night stay at Fairmont Garden View at Fairmont Monte Carlo Hotel from dnata Travel, Abu Dhabi",
"description" : "Get 26% off on 3 night stay at Fairmont Garden View at Fairmont Monte Carlo Hotel from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Fairmont_Monte_Carlo_Hotel_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Fairmont_Monte_Carlo_Hotel_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Fairmont_Monte_Carlo_Hotel",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "kids-activities", "king-room", "front-desk", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "house-keeping", "spa", "24-by-7-support", "business-center", "free-toiletries", "adjoining-room", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "valet-parking", "disabled-friendly", "concierge", "photocopier", "kids-and-family", "parking-available", "garden", "sea-view", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "airport-transportation", "fitness-center", "modern-design", "pets-allowed", "desk", "pool-bar", "air-conditioned", "mini-bar", "queen-room", "soundproof-room", "kids-pool", "eat-outs", "museum", "shuttle-service", "business-meeting", "bar", "swimming-pool", "babysitting", "large-group", "atm", "free-internet", "hair-dryer", "fairmont" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.71412,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "0c788428-11d6-347d-8c94-2c793e8e47ee",
"name" : "Nobu Hotel London Portman Square",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Nobu_Hotel_London_Portman_Square_Merchant.webp",
"externalId" : "DT209",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Nobu_Hotel_London_Portman_Square_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Nobu_Hotel_London_Portman_Square_Logo.webp",
"url" : "https://london-portman.nobuhotels.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Nobu_Hotel_London_Portman_Square_Banner.webp",
"totalViews" : 1,
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213375",
"name" : "Get 20% off on 3 night stay at Superior Room at Nobu Hotel London Portman Square from dnata Travel, Abu Dhabi",
"description" : "Get 20% off on 3 night stay at Superior Room at Nobu Hotel London Portman Square from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Nobu_Hotel_London_Portman_Square_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Nobu_Hotel_London_Portman_Square_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Nobu_Hotel_London_Portman_Square",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "double-room", "front-desk", "non-smoking-room", "tv", "wheelchair-access", "designated-smoking-area", "5-star", "house-keeping", "spa", "24-by-7-support", "free-toiletries", "adjoining-room", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "disabled-friendly", "concierge", "photocopier", "kids-and-family", "restaurant", "laundry-service", "dry-cleaning", "city-view", "luggage-storage", "fitness-center", "pets-allowed", "desk", "air-conditioned", "mini-bar", "eat-outs", "basic-design", "museum", "business-meeting", "bar", "allergy-free-room", "large-group", "babysitting", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.71412,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "14204ed8-81d2-36d4-b345-db4347abdf7a",
"name" : "Sheraton Mall Of The Emirates",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Sheraton_Mall_of_the_Emirates_Merchant.webp",
"externalId" : "DT179",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Sheraton_Mall_of_the_Emirates_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Sheraton_Mall_of_the_Emirates_Logo.webp",
"url" : "https://www.marriott.com/en-us/hotels/dxbml-sheraton-mall-of-the-emirates-hotel-dubai/overview/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Sheraton_Mall_of_the_Emirates_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213410",
"name" : "Get 22% off on 1 night stay at Classic Room at Sheraton Mall of the Emirates from dnata Travel, Abu Dhabi",
"description" : "Get 22% off on 1 night stay at Classic Room at Sheraton Mall of the Emirates from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Sheraton_Mall_of_the_Emirates_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Sheraton_Mall_of_the_Emirates_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Sheraton_Mall_of_the_Emirates",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get savings on stay\n10.Offer stay is valid till 31-07-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "front-desk", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "24-by-7-support", "sauna", "free-toiletries", "sheraton", "couple", "valet-parking", "disabled-friendly", "concierge", "public-transport", "restaurant", "spacious-bathrooms", "luggage-storage", "airport-transportation", "tour-desk", "city-view", "fitness-center", "modern-design", "desk", "pool-bar", "club-room", "fishing", "mini-bar", "business-meeting", "bar", "swimming-pool", "refrigerator", "atm", "beach", "hotel", "suite", "double-room", "banquet-hall", "king-room", "breakfast-included", "sun-terrace", "house-keeping", "spa", "business-center", "family-room", "room-service", "bathrobe", "free-parking", "multilingual-staff", "photocopier", "parks-and-gardens", "currency-exchange", "laundry-service", "dry-cleaning", "kitchenette", "air-conditioned", "eat-outs", "shuttle-service", "babysitting", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.71412,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "21352c92-5133-3cb0-baff-6baf0b16f4d4",
"name" : "Andaz Capital Gate Abu Dhabi",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Andaz_Capital_Gate_Abu_Dhabi_Merchant.webp",
"externalId" : "DT192",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Andaz_Capital_Gate_Abu_Dhabi_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Andaz_Capital_Gate_Abu_Dhabi_Logo.webp",
"url" : "https://www.hyatt.com/andaz/abdcc-andaz-capital-gate-abu-dhabi",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Andaz_Capital_Gate_Abu_Dhabi_Banner.webp",
"totalViews" : 1,
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213417",
"name" : "Get 28% off on 1 night stay at Standard Room at Andaz Capital Gate Abu Dhabi from dnata Travel, Abu Dhabi",
"description" : "Get 28% off on 1 night stay at Standard Room at Andaz Capital Gate Abu Dhabi from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Andaz_Capital_Gate_Abu_Dhabi_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Andaz_Capital_Gate_Abu_Dhabi_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Andaz_Capital_Gate_Abu_Dhabi",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get savings on stay\n10.Offer stay is valid till 30-06-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "kids-activities", "front-desk", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "house-keeping", "spa", "24-by-7-support", "business-center", "free-toiletries", "luxury-hotel", "bathrobe", "room-service", "couple", "valet-parking", "disabled-friendly", "free-parking", "concierge", "photocopier", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "city-view", "luggage-storage", "tour-desk", "fitness-center", "modern-design", "desk", "pool-bar", "air-conditioned", "mini-bar", "soundproof-room", "kids-pool", "eat-outs", "business-meeting", "bar", "swimming-pool", "babysitting", "large-group", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.71412,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "290b74ec-d318-3579-aec7-dcf37388373d",
"name" : "Waldorf Astoria Ras Al Khaimah",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Waldorf_Astoria_Ras_al_Khaimah_Merchant.webp",
"externalId" : "DT16",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Waldorf_Astoria_Ras_al_Khaimah_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Waldorf_Astoria_Ras_al_Khaimah_Logo.webp",
"url" : "https://www.hilton.com/en/hotels/rktwawa-waldorf-astoria-ras-al-khaimah/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Waldorf_Astoria_Ras_al_Khaimah_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213406",
"name" : "Get 26% off on 1 night stay at Premier Room at Waldorf Astoria Ras al Khaimah from dnata Travel, Abu Dhabi",
"description" : "Get 26% off on 1 night stay at Premier Room at Waldorf Astoria Ras al Khaimah from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Waldorf_Astoria_Ras_al_Khaimah_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Waldorf_Astoria_Ras_al_Khaimah_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Waldorf_Astoria_Ras_al_Khaimah",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes breakfast meal plan and Two child up to 11 years stays and eats free\n9.Get savings on stay\n10.Offer stay is valid till 31-07-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "front-desk", "kids-activities", "waldorf-astoria", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "house-keeping", "spa", "24-by-7-support", "steam-room", "sauna", "free-toiletries", "resort", "private-beach", "family-room", "bathrobe", "room-service", "couple", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "garden", "currency-exchange", "sea-view", "laundry-service", "business-centre", "dry-cleaning", "luggage-storage", "airport-transportation", "tour-desk", "gaming-area", "airport", "desk", "kitchenette", "pool-bar", "fishing", "mini-bar", "kids-pool", "shuttle-service", "business-meeting", "security", "swimming-pool", "fitness-centre", "babysitting", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "beach" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.71412,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "2f23e42e-e1d8-3546-bdb0-024b6b7dab53",
"name" : "Me Barcelona",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/ME_Barcelona_Merchant.webp",
"externalId" : "DT207",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/ME_Barcelona_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/ME_Barcelona_Logo.webp",
"url" : "https://www.melia.com/en/hotels/spain/barcelona/me-barcelona",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/ME_Barcelona_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213382",
"name" : "Get 23% off on 3 night stay at Standard Me Room Patio View at ME Barcelona from dnata Travel, Abu Dhabi",
"description" : "Get 23% off on 3 night stay at Standard Me Room Patio View at ME Barcelona from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/ME_Barcelona_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/ME_Barcelona_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=ME_Barcelona",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get a return airport transfers\n10.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "kids-activities", "front-desk", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "house-keeping", "melia", "night-club", "rooftop-pool", "spa", "24-by-7-support", "free-toiletries", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "disabled-friendly", "concierge", "photocopier", "kids-and-family", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "city-view", "tour-desk", "airport-transportation", "fitness-center", "modern-design", "pets-allowed", "desk", "pool-bar", "air-conditioned", "mini-bar", "soundproof-room", "eat-outs", "museum", "shuttle-service", "business-meeting", "bar", "swimming-pool", "babysitting", "large-group", "allergy-free-room", "refrigerator", "hair-dryer", "beach" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.71412,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "c60e6938-b085-3d45-b591-c4c66f8020eb",
"name" : "W Dubai - Mina Seyahi Adults Only",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/W_Dubai_-_Mina_Seyahi_Adults_Only_Merchant.webp",
"externalId" : "DT224",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/W_Dubai_-_Mina_Seyahi_Adults_Only_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/W_Dubai_-_Mina_Seyahi_Adults_Only_Logo.webp",
"url" : "https://www.marriott.com/en-us/hotels/dxbmw-w-dubai-mina-seyahi/overview/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/W_Dubai_-_Mina_Seyahi_Adults_Only_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213411",
"name" : "Get 22% off on 1 night stay at Fantastic Room at W Dubai - Mina Seyahi, Adults Only from dnata Travel, Abu Dhabi",
"description" : "Get 22% off on 1 night stay at Fantastic Room at W Dubai - Mina Seyahi, Adults Only from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/W_Dubai_-_Mina_Seyahi_Adults_Only_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/W_Dubai_-_Mina_Seyahi_Adults_Only_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=W_Dubai_-_Mina_Seyahi,_Adults_Only",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Half Board meal plan\n9.Get savings on stay\n10.Offer stay is valid till 30-09-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "house-keeping", "night-club", "spa", "24-by-7-support", "free-toiletries", "adjoining-room", "luxury-hotel", "bathrobe", "room-service", "couple", "valet-parking", "disabled-friendly", "free-parking", "concierge", "garden", "sea-view", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "fitness-center", "modern-design", "pets-allowed", "desk", "pool-bar", "air-conditioned", "mini-bar", "eat-outs", "business-meeting", "bar", "swimming-pool", "allergy-free-room", "large-group", "atm", "free-internet", "hair-dryer", "beach", "infinity-pool" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.559006,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "3fb98a84-5a36-31bc-a9f6-322309008070",
"name" : "Westin Abu Dhabi Golf Resort & Spa",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Westin_Abu_Dhabi_Golf_Resort_&_Spa_Merchant.webp",
"externalId" : "DT133",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Westin_Abu_Dhabi_Golf_Resort_&_Spa_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Westin_Abu_Dhabi_Golf_Resort_&_Spa_Logo.webp",
"url" : "https://www.marriott.com/en-us/hotels/auhgw-the-westin-abu-dhabi-golf-resort-and-spa/overview/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Westin_Abu_Dhabi_Golf_Resort_&_Spa_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213414",
"name" : "Get 23% off on 1 night stay at Deluxe Room at Westin Abu Dhabi Golf Resort & Spa from dnata Travel, Abu Dhabi",
"description" : "Get 23% off on 1 night stay at Deluxe Room at Westin Abu Dhabi Golf Resort & Spa from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Westin_Abu_Dhabi_Golf_Resort_&_Spa_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Westin_Abu_Dhabi_Golf_Resort_&_Spa_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Westin_Abu_Dhabi_Golf_Resort_&_Spa",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get savings on stay\n10.Offer stay is valid till 30-06-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "kids-activities", "banquet-hall", "front-desk", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "landmark", "5-star", "house-keeping", "spa", "westin", "24-by-7-support", "resort", "free-toiletries", "family-room", "room-service", "bathrobe", "couple", "landmark-view", "disabled-friendly", "free-parking", "concierge", "public-transport", "photocopier", "kids-and-family", "garden", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "luggage-storage", "airport-transportation", "tour-desk", "airport", "desk", "pool-bar", "mini-bar", "kids-pool", "eat-outs", "business-meeting", "security", "bar", "shuttle-service", "classical-design", "fitness-centre", "atm", "free-internet", "air-conditioner", "hair-dryer", "infinity-pool" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.559006,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "9f7a99df-65e9-3cd0-bdab-c5511939521a",
"name" : "Hotel Monaco Grand Canal",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Hotel_Monaco_Grand_Canal_Merchant.webp",
"externalId" : "DT202",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Hotel_Monaco_Grand_Canal_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Hotel_Monaco_Grand_Canal_Logo.webp",
"url" : "https://www.hotelmonaco.it/en/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Hotel_Monaco_Grand_Canal_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213392",
"name" : "Get 25% off on 3 night stay at Golden Leaf Superior Room at Hotel Monaco Grand Canal from dnata Travel, Abu Dhabi",
"description" : "Get 25% off on 3 night stay at Golden Leaf Superior Room at Hotel Monaco Grand Canal from dnata Travel, Abu Dhabi till 10-07-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-07-10T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Hotel_Monaco_Grand_Canal_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Hotel_Monaco_Grand_Canal_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Hotel_Monaco_Grand_Canal",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get 10% savings on stay\n10.Offer stay is valid from 30-06-2023 to 13-07-2023\n11.Get Complimentary room upgrade from Classic to Superior Golden Leaf \n12.Offer stay is valid from 16-07-2023 to 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "kids-activities", "front-desk", "non-smoking-room", "tv", "wheelchair-access", "house-keeping", "24-by-7-support", "business-center", "free-toiletries", "luxury-hotel", "bathrobe", "room-service", "couple", "disabled-friendly", "concierge", "photocopier", "kids-and-family", "parks-and-gardens", "sea-view", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "tour-desk", "desk", "air-conditioned", "mini-bar", "eat-outs", "basic-design", "shuttle-service", "business-meeting", "bar", "allergy-free-room", "large-group", "babysitting", "free-internet", "hair-dryer", "4-star" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.559006,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "c505faa6-018c-35d4-afe4-15f5a01753dd",
"name" : "Kempinski Seychelles Resort Baie Lazare",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Kempinski_Seychelles_Resort_Baie_Lazare_Merchant.webp",
"externalId" : "DT203",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Kempinski_Seychelles_Resort_Baie_Lazare_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Kempinski_Seychelles_Resort_Baie_Lazare_Logo.webp",
"url" : "https://www.kempinski.com/en/seychelles-resort",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Kempinski_Seychelles_Resort_Baie_Lazare_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213424",
"name" : "Get 23% off on 3 night stay at Sea View Room at Kempinski Seychelles Resort Baie Lazare from dnata Travel, Abu Dhabi",
"description" : "Get 23% off on 3 night stay at Sea View Room at Kempinski Seychelles Resort Baie Lazare from dnata Travel, Abu Dhabi till 15-07-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-07-15T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Kempinski_Seychelles_Resort_Baie_Lazare_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Kempinski_Seychelles_Resort_Baie_Lazare_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Kempinski_Seychelles_Resort_Baie_Lazare",
"termsAndConditions" : "1.The offer is valid till 15-07-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get 30% savings on stay\n10.Get a return private airport transfers\n11.Offer stay is valid till 31-08-2023 \n12.Get Benefits for Honeymooners\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "double-room", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "house-keeping", "spa", "24-by-7-support", "business-center", "luxury-hotel", "family-room", "room-service", "couple", "valet-parking", "free-parking", "concierge", "photocopier", "kids-and-family", "garden", "sea-view", "currency-exchange", "restaurant", "dry-cleaning", "luggage-storage", "gaming-area", "fitness-center", "desk", "air-conditioned", "fishing", "eat-outs", "basic-design", "business-meeting", "bar", "swimming-pool", "babysitting", "large-group", "free-internet", "beach" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.559006,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "e18b8231-84a9-3e48-86f6-8d18f8fb2f94",
"name" : "Emirates Palace Mandarin Oriental",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Emirates_Palace_Mandarin_Oriental_Merchant.webp",
"externalId" : "DT175",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Emirates_Palace_Mandarin_Oriental_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Emirates_Palace_Mandarin_Oriental_Logo.webp",
"url" : "https://www.mandarinoriental.com/en/abu-dhabi/emirates-palace",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Emirates_Palace_Mandarin_Oriental_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213418",
"name" : "Get 21% off on 1 night stay at Deluxe City View Room at Emirates Palace Mandarin Oriental from dnata Travel, Abu Dhabi",
"description" : "Get 21% off on 1 night stay at Deluxe City View Room at Emirates Palace Mandarin Oriental from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Emirates_Palace_Mandarin_Oriental_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Emirates_Palace_Mandarin_Oriental_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Emirates_Palace_Mandarin_Oriental",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Half Board meal plan\n9.Get savings on stay\n10.Offer stay is valid till 30-06-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "kids-activities", "front-desk", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "hot-tub", "24-by-7-support", "free-toiletries", "couple", "valet-parking", "disabled-friendly", "concierge", "kids-and-family", "sea-view", "restaurant", "luggage-storage", "airport-transportation", "tour-desk", "gaming-area", "fitness-center", "desk", "pool-bar", "mini-bar", "kids-pool", "business-meeting", "bar", "classical-design", "atm", "mandarin-oriental", "beach", "suite", "banquet-hall", "sun-terrace", "house-keeping", "spa", "business-center", "private-beach", "spacious-rooms", "room-service", "family-room", "bathrobe", "free-parking", "multilingual-staff", "photocopier", "garden", "parks-and-gardens", "beachfront", "currency-exchange", "laundry-service", "dry-cleaning", "air-conditioned", "eat-outs", "shuttle-service", "babysitting", "free-internet", "hair-dryer", "infinity-pool" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.559006,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "d9dd6b2b-b1c1-3bdc-a713-3b97190e5c69",
"name" : "Anantara Al Jabal Al Akhdar Resort",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Anantara_Al_Jabal_Al_Akhdar_Resort_Merchant.webp",
"externalId" : "DT191",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Anantara_Al_Jabal_Al_Akhdar_Resort_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Anantara_Al_Jabal_Al_Akhdar_Resort_Logo.webp",
"url" : "https://www.anantara.com/en/jabal-akhdar",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Anantara_Al_Jabal_Al_Akhdar_Resort_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213425",
"name" : "Get 26% off on 2 night stay at Premier Room at Anantara Al Jabal Al Akhdar Resort from dnata Travel, Abu Dhabi",
"description" : "Get 26% off on 2 night stay at Premier Room at Anantara Al Jabal Al Akhdar Resort from dnata Travel, Abu Dhabi till 15-07-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-07-15T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Anantara_Al_Jabal_Al_Akhdar_Resort_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Anantara_Al_Jabal_Al_Akhdar_Resort_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Anantara_Al_Jabal_Al_Akhdar_Resort",
"termsAndConditions" : "1.The offer is valid till 15-07-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get 35% savings on stay\n10.Get a return private airport transfers\n11.Offer stay is valid till 31-08-2023 \n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "kids-activities", "front-desk", "non-smoking-room", "tv", "wheelchair-access", "designated-smoking-area", "5-star", "hot-tub", "24-by-7-support", "sauna", "free-toiletries", "couple", "valet-parking", "disabled-friendly", "concierge", "kids-and-family", "restaurant", "luggage-storage", "airport-transportation", "tour-desk", "gaming-area", "fitness-center", "modern-design", "desk", "pool-bar", "mini-bar", "kids-pool", "business-meeting", "bar", "swimming-pool", "allergy-free-room", "large-group", "atm", "suite", "sun-terrace", "house-keeping", "mountain-view", "spa", "adjoining-room", "luxury-hotel", "villa", "bathrobe", "anantara", "room-service", "family-room", "free-parking", "photocopier", "garden", "currency-exchange", "laundry-service", "dry-cleaning", "air-conditioned", "soundproof-room", "eat-outs", "shuttle-service", "babysitting", "free-internet", "hair-dryer", "infinity-pool" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.559006,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "f4f9e4ec-4f62-31c9-bd0c-0067e4240eb9",
"name" : "Taj Exotica Resort & Spa",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Taj_Exotica_Resort_&_Spa_The_Palm_Dubai_Merchant.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "BB1270",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Taj_Exotica_Resort_&_Spa_The_Palm_Dubai_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Taj_Exotica_Resort_&_Spa_The_Palm_Dubai_Logo.webp",
"url" : "https://www.tajhotels.com/en-in/taj/taj-exotica-dubai/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Taj_Exotica_Resort_&_Spa_The_Palm_Dubai_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213403",
"name" : "Get 20% off on 1 night stay at Luxury Room at Taj Exotica Resort & Spa, The Palm Dubai from dnata Travel, Abu Dhabi",
"description" : "Get 20% off on 1 night stay at Luxury Room at Taj Exotica Resort & Spa, The Palm Dubai from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Taj_Exotica_Resort_&_Spa_The_Palm_Dubai_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Taj_Exotica_Resort_&_Spa_The_Palm_Dubai_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Taj_Exotica_Resort_&_Spa,_The_Palm_Dubai",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Half Board meal plan and Two child up to 11 years stays and eats free\n9.Offer stay is valid till 31-07-2023\n10.Get free upgrade to half board\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "front-desk", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "night-club", "hot-tub", "24-by-7-support", "sauna", "free-toiletries", "disabled-friendly", "public-transport", "kids-and-family", "sea-view", "restaurant", "business-centre", "airport", "luggage-storage", "airport-transportation", "gaming-area", "desk", "fishing", "mini-bar", "museum", "bar", "business-meeting", "security", "fitness-centre", "allergy-free-room", "taj-hotels", "beach", "suite", "banquet-hall", "king-room", "sun-terrace", "dance-floor", "house-keeping", "country-design", "spa", "private-beach", "villa", "family-room", "room-service", "nature-and-wildlife", "multilingual-staff", "photocopier", "garden", "parks-and-gardens", "beachfront", "currency-exchange", "laundry-service", "dry-cleaning", "kitchenette", "shuttle-service", "private-attached-pool", "free-internet", "air-conditioner", "hair-dryer", "infinity-pool" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.413374,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "f657e7e9-c19f-39e6-9ab8-617508c8d57d",
"name" : "Nikki Beach Resort & Spa Dubai",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Nikki_Beach_Resort_&_Spa_Dubai_Merchant.webp",
"externalId" : "DT178",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Nikki_Beach_Resort_&_Spa_Dubai_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Nikki_Beach_Resort_&_Spa_Dubai_Logo.webp",
"url" : "https://dubai.nikkibeach.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Nikki_Beach_Resort_&_Spa_Dubai_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213421",
"name" : "Get 20% off on 1 night stay at Covet Skyline View Room at Nikki Beach Resort & Spa Dubai from dnata Travel, Abu Dhabi",
"description" : "Get 20% off on 1 night stay at Covet Skyline View Room at Nikki Beach Resort & Spa Dubai from dnata Travel, Abu Dhabi till 27-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-27T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Nikki_Beach_Resort_&_Spa_Dubai_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Nikki_Beach_Resort_&_Spa_Dubai_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Nikki_Beach_Resort_&_Spa_Dubai",
"termsAndConditions" : "1.The offer is valid till 27-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Half Board meal plan\n9.Get savings on stay\n10.Offer stay is valid till 27-06-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "marine-life", "kids-activities", "front-desk", "non-smoking-room", "tv", "5-star", "landmark", "night-club", "24-by-7-support", "sauna", "free-toiletries", "couple", "valet-parking", "disabled-friendly", "concierge", "public-transport", "kids-and-family", "sea-view", "luggage-storage", "airport-transportation", "tour-desk", "gaming-area", "modern-design", "desk", "mini-bar", "business-meeting", "bar", "swimming-pool", "beach", "suite", "banquet-hall", "king-room", "sun-terrace", "dance-floor", "house-keeping", "spa", "business-center", "private-beach", "villa", "spacious-rooms", "room-service", "family-room", "bathrobe", "free-parking", "multilingual-staff", "photocopier", "garden", "parks-and-gardens", "beachfront", "currency-exchange", "laundry-service", "dry-cleaning", "air-conditioned", "soundproof-room", "eat-outs", "shuttle-service", "babysitting", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.413374,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "1fc43d2f-a6ed-30e4-a50e-b8fe48b4b729",
"name" : "Sirene Luxury Hotel Bodrum",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Sirene_Luxury_Hotel_Bodrum_Merchant.webp",
"externalId" : "DT219",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Sirene_Luxury_Hotel_Bodrum_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Sirene_Luxury_Hotel_Bodrum_Logo.webp",
"url" : "https://www.sirene.com.tr/en/our-hotels/sirene-luxury-hotel-bodrum/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Sirene_Luxury_Hotel_Bodrum_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213380",
"name" : "Get 26% off on 3 night stay at Deluxe Room Partial Sea View at Sirene Luxury Hotel Bodrum from dnata Travel, Abu Dhabi",
"description" : "Get 26% off on 3 night stay at Deluxe Room Partial Sea View at Sirene Luxury Hotel Bodrum from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Sirene_Luxury_Hotel_Bodrum_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Sirene_Luxury_Hotel_Bodrum_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Sirene_Luxury_Hotel_Bodrum",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get savings on stay\n10.Get a return airport transfers\n11.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "kids-activities", "front-desk", "non-smoking-room", "tv", "wheelchair-access", "designated-smoking-area", "5-star", "hot-tub", "24-by-7-support", "steam-room", "sauna", "free-toiletries", "couple", "valet-parking", "disabled-friendly", "concierge", "kids-and-family", "sea-view", "restaurant", "luggage-storage", "airport-transportation", "tour-desk", "fitness-center", "modern-design", "desk", "pool-bar", "mini-bar", "kids-pool", "microwave", "business-meeting", "bar", "swimming-pool", "allergy-free-room", "large-group", "refrigerator", "beach", "suite", "house-keeping", "spa", "business-center", "adjoining-room", "luxury-hotel", "private-beach", "villa", "bathrobe", "room-service", "family-room", "free-parking", "multilingual-staff", "photocopier", "garden", "currency-exchange", "laundry-service", "dry-cleaning", "kitchenette", "air-conditioned", "soundproof-room", "eat-outs", "shuttle-service", "private-attached-pool", "free-internet", "hair-dryer", "infinity-pool" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.413374,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "1f3c3d15-db2a-3e4c-a0d9-b438bf76a2e4",
"name" : "Higueron Hotel Malaga Curio Collection By Hilton",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Higueron_hotel_Malaga_Curio_Collection_by_HILTON_Merchant.webp",
"externalId" : "DT200",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Higueron_hotel_Malaga_Curio_Collection_by_HILTON_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Higueron_hotel_Malaga_Curio_Collection_by_HILTON_Logo.webp",
"url" : "https://www.hilton.com/en/hotels/agprhqq-higueron-hotel-malaga/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Higueron_hotel_Malaga_Curio_Collection_by_HILTON_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213384",
"name" : "Get 26% off on 3 night stay at Standard Room at Higueron hotel Malaga, Curio Collection by Hilton from dnata Travel, Abu Dhabi",
"description" : "Get 26% off on 3 night stay at Standard Room at Higueron hotel Malaga, Curio Collection by Hilton from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Higueron_hotel_Malaga_Curio_Collection_by_HILTON_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Higueron_hotel_Malaga_Curio_Collection_by_HILTON_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Higueron_hotel_Malaga,_Curio_Collection_by_HILTON",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get a return airport transfers\n10.Offer stay is valid till 31-08-2023\n11.Get 15% savings on stay for Early booking\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "front-desk", "non-smoking-room", "tv", "wheelchair-access", "designated-smoking-area", "5-star", "house-keeping", "rooftop-pool", "hot-tub", "spa", "24-by-7-support", "steam-room", "sauna", "free-toiletries", "business-center", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "disabled-friendly", "free-parking", "concierge", "kids-and-family", "garden", "sea-view", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "airport-transportation", "tour-desk", "gaming-area", "fitness-center", "modern-design", "desk", "air-conditioned", "mini-bar", "kids-pool", "eat-outs", "museum", "shuttle-service", "business-meeting", "bar", "swimming-pool", "large-group", "free-internet", "hair-dryer", "beach", "infinity-pool" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.413374,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "13219ea4-2453-3ee7-a5fe-16114239c703",
"name" : "Al Maha A Luxury Collection Desert Resort & Spa",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Al_Maha_a_Luxury_Collection_Desert_Resort_&_Spa_Merchant.webp",
"externalId" : "DT190",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Al_Maha_a_Luxury_Collection_Desert_Resort_&_Spa_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Al_Maha_a_Luxury_Collection_Desert_Resort_&_Spa_Logo.webp",
"url" : "https://www.marriott.com/en-us/hotels/dxbam-al-maha-a-luxury-collection-desert-resort-and-spa-dubai/overview/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Al_Maha_a_Luxury_Collection_Desert_Resort_&_Spa_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213412",
"name" : "Get 20% off on 1 night stay at Bedouin Suite at Al Maha, a Luxury Collection Desert Resort & Spa from dnata Travel, Abu Dhabi",
"description" : "Get 20% off on 1 night stay at Bedouin Suite at Al Maha, a Luxury Collection Desert Resort & Spa from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Al_Maha_a_Luxury_Collection_Desert_Resort_&_Spa_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Al_Maha_a_Luxury_Collection_Desert_Resort_&_Spa_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Al_Maha_a_Luxury_Collection_Desert_Resort_&_Spa",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Full Board meal plan\n9.Offer stay is valid till 30-09-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "front-desk", "non-smoking-room", "sun-terrace", "tv", "designated-smoking-area", "5-star", "house-keeping", "pool-view", "hot-tub", "spa", "24-by-7-support", "steam-room", "sauna", "free-toiletries", "business-center", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "valet-parking", "disabled-friendly", "free-parking", "concierge", "photocopier", "kids-and-family", "garden", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "fitness-center", "modern-design", "desk", "air-conditioned", "mini-bar", "kids-pool", "eat-outs", "business-meeting", "bar", "swimming-pool", "large-group", "private-attached-pool", "refrigerator", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.27638,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "eeb87536-6317-3102-96e1-c9017a931a89",
"name" : "Hotel Du Collectionneur Arc De Triomphe",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Hotel_du_Collectionneur_Arc_de_Triomphe_Merchant.webp",
"externalId" : "DT201",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Hotel_du_Collectionneur_Arc_de_Triomphe_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Hotel_du_Collectionneur_Arc_de_Triomphe_Logo.webp",
"url" : "https://en.hotelducollectionneur.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Hotel_du_Collectionneur_Arc_de_Triomphe_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213385",
"name" : "Get 27% off on 3 night stay at Deluxe Room Garden View at Hotel du Collectionneur Arc de Triomphe from dnata Travel, Abu Dhabi",
"description" : "Get 27% off on 3 night stay at Deluxe Room Garden View at Hotel du Collectionneur Arc de Triomphe from dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Hotel_du_Collectionneur_Arc_de_Triomphe_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Hotel_du_Collectionneur_Arc_de_Triomphe_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Hotel_du_Collectionneur_Arc_de_Triomphe",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get a return airport transfers\n10.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "kids-activities", "front-desk", "non-smoking-room", "sun-terrace", "tv", "5-star", "house-keeping", "hot-tub", "spa", "24-by-7-support", "steam-room", "sauna", "free-toiletries", "luxury-hotel", "bathrobe", "room-service", "landmark-view", "family-room", "couple", "disabled-friendly", "concierge", "public-transport", "photocopier", "kids-and-family", "garden", "parks-and-gardens", "currency-exchange", "restaurant", "luggage-storage", "airport-transportation", "tour-desk", "fitness-center", "modern-design", "pets-allowed", "desk", "air-conditioned", "mini-bar", "soundproof-room", "eat-outs", "shuttle-service", "business-meeting", "bar", "allergy-free-room", "large-group", "babysitting", "free-internet", "hair-dryer" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.27638,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "75f3028c-1060-32bc-aaa5-a8e9dfe65896",
"name" : "Le Meridien Mina Seyahi Beach Resort & Waterpark",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Le_Meridien_Mina_Seyahi_Beach_Resort_&_Waterpark_Merchant.webp",
"externalId" : "DT204",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Le_Meridien_Mina_Seyahi_Beach_Resort_&_Waterpark_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Le_Meridien_Mina_Seyahi_Beach_Resort_&_Waterpark_Logo.webp",
"url" : "https://www.marriott.com/en-us/hotels/dxbms-le-meridien-mina-seyahi-beach-resort-and-waterpark/overview/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Le_Meridien_Mina_Seyahi_Beach_Resort_&_Waterpark_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213409",
"name" : "Get 26% off on 1 night stay at Deluxe Skyline View Room at Le Meridien Mina Seyahi Beach Resort & Waterpark from dnata Travel, Abu Dhabi",
"description" : "Get 26% off on 1 night stay at Deluxe Skyline View Room at Le Meridien Mina Seyahi Beach Resort & Waterpark from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Le_Meridien_Mina_Seyahi_Beach_Resort_&_Waterpark_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Le_Meridien_Mina_Seyahi_Beach_Resort_&_Waterpark_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Le_Meridien_Mina_Seyahi_Beach_Resort_&_Waterpark",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Half Board meal plan and Two child up to 11 years stays and eats free\n9.Get savings on stay\n10.Offer stay is valid till 30-09-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "kids-activities", "front-desk", "non-smoking-room", "tv", "wheelchair-access", "designated-smoking-area", "5-star", "hot-tub", "24-by-7-support", "sauna", "free-toiletries", "couple", "valet-parking", "disabled-friendly", "concierge", "kids-and-family", "restaurant", "luggage-storage", "city-view", "tour-desk", "gaming-area", "fitness-center", "modern-design", "desk", "pool-bar", "fishing", "mini-bar", "kids-pool", "business-meeting", "bar", "swimming-pool", "allergy-free-room", "large-group", "atm", "beach", "house-keeping", "business-center", "adjoining-room", "luxury-hotel", "bathrobe", "room-service", "family-room", "free-parking", "photocopier", "garden", "parks-and-gardens", "currency-exchange", "laundry-service", "dry-cleaning", "air-conditioned", "soundproof-room", "eat-outs", "babysitting", "free-internet", "le-meridien", "hair-dryer", "infinity-pool" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.147276,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "b6d103a9-eb57-3255-ac1a-de43a4e66a6b",
"name" : "Parklane A Luxury Collection Resort & Spa",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Parklane_a_Luxury_Collection_Resort_&_Spa_Merchant.webp",
"externalId" : "DT213",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Parklane_a_Luxury_Collection_Resort_&_Spa_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Parklane_a_Luxury_Collection_Resort_&_Spa_Logo.webp",
"url" : "https://www.marriott.com/en-us/hotels/pfomd-parklane-a-luxury-collection-resort-and-spa-limassol/overview/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Parklane_a_Luxury_Collection_Resort_&_Spa_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213398",
"name" : "Get 31% off on 3 night stay at Superior Guest Room Twin Beds Inland View at Parklane, a Luxury Collection Resort & Spafrom dnata Travel, Abu Dhabi",
"description" : "Get 31% off on 3 night stay at Superior Guest Room Twin Beds Inland View at Parklane, a Luxury Collection Resort & Spafrom dnata Travel, Abu Dhabi till 31-08-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Parklane_a_Luxury_Collection_Resort_&_Spa_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Parklane_a_Luxury_Collection_Resort_&_Spa_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=Parklane,_a_Luxury_Collection_Resort_&_Spa",
"termsAndConditions" : "1.The offer is valid till 31-08-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes Breakfast meal plan\n9.Get a return airport transfers\n10.Offer stay is valid till 31-08-2023\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "kids-activities", "front-desk", "non-smoking-room", "tv", "5-star", "house-keeping", "hot-tub", "spa", "24-by-7-support", "steam-room", "business-center", "free-toiletries", "sauna", "adjoining-room", "luxury-hotel", "bathrobe", "room-service", "family-room", "couple", "valet-parking", "disabled-friendly", "free-parking", "concierge", "photocopier", "kids-and-family", "garden", "sea-view", "currency-exchange", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "airport-transportation", "gaming-area", "fitness-center", "modern-design", "pets-allowed", "desk", "pool-bar", "air-conditioned", "fishing", "mini-bar", "kids-pool", "business-meeting", "bar", "swimming-pool", "babysitting", "large-group", "free-internet", "hair-dryer", "infinity-pool" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 20.025404,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "fdcbcc49-7048-37ce-aeed-37c67970cfc5",
"name" : "Intercontinental Ras Al Khaimah Mina Al Arab Resort & Spa",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/InterContinental_Ras_Al_Khaimah_Mina_Al_Arab_Resort_&_Spa_Merchant.webp",
"externalId" : "DT176",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/InterContinental_Ras_Al_Khaimah_Mina_Al_Arab_Resort_&_Spa_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/InterContinental_Ras_Al_Khaimah_Mina_Al_Arab_Resort_&_Spa_Logo.webp",
"url" : "https://icrasalkhaimah.com/en/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/InterContinental_Ras_Al_Khaimah_Mina_Al_Arab_Resort_&_Spa_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "213402",
"name" : "Get 28% off on 1 night stay at Classic Room Sea View at InterContinental Ras Al Khaimah Mina Al Arab Resort & Spa from dnata Travel, Abu Dhabi",
"description" : "Get 28% off on 1 night stay at Classic Room Sea View at InterContinental Ras Al Khaimah Mina Al Arab Resort & Spa from dnata Travel, Abu Dhabi till 30-06-2023\nOnline offer",
"validFrom" : "2023-06-06T00:00:00.389Z",
"validTo" : "2026-06-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/InterContinental_Ras_Al_Khaimah_Mina_Al_Arab_Resort_&_Spa_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/InterContinental_Ras_Al_Khaimah_Mina_Al_Arab_Resort_&_Spa_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "dnata travel",
"howToRedeem" : "Click the button below and follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://wa.me/971566830564?text=InterContinental_Ras_Al_Khaimah_Mina_Al_Arab_Resort_&_Spa",
"termsAndConditions" : "1.The offer is valid till 30-06-2023\n2. Offer is valid on all ADIB Covered & Debit cards\n3. The above packages are solely for room rate, halal food and soft drinks\n4. ADIB Cardholders must whatsapp (+971-56 683 0564 / +971-56 676 8307) or call on +971-23044703/ 765 or send an email to leisure.auh@dnata.com to avail the offer\n5. Rooms are subject to availability at the time of booking.\n6. Additional dnata Travel Abu Dhabi terms and conditions may apply to the extent that it does not contradict with the ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services\n7.The offer is subject to merchant approval\n8.This package includes all inclusive meal plan and One child up to 11 years stays and eats free\n9.Offer stay is valid till 31-10-2023\n10.Get free Spa credit\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services."
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "kids-activities", "banquet-hall", "king-room", "front-desk", "breakfast-included", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "house-keeping", "spa", "24-by-7-support", "business-center", "sauna", "private-beach", "spacious-rooms", "room-service", "family-room", "bathrobe", "valet-parking", "disabled-friendly", "nature-and-wildlife", "free-parking", "concierge", "multilingual-staff", "beachfront", "sea-view", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "tour-desk", "gaming-area", "fitness-center", "desk", "pool-bar", "single-room", "air-conditioned", "club-room", "mini-bar", "soundproof-room", "kids-pool", "eat-outs", "business-meeting", "bar", "classical-design", "free-internet", "hair-dryer", "beach", "infinity-pool" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 19.910168,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category", "offer" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "2a87d1a6-7bb6-3020-82a8-732b960a7ecf",
"name" : "Pan Pacific Hotels Group",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_21_Pan_Pacific_Hotels_Group_merchant.webp",
"externalId" : "DP384",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_21_Pan_Pacific_Hotels_Group_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_20_Pan_Pacific_Hotels_Group_logo.webp",
"url" : "https://www.panpacific.com/visa-stay-and-dine",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/VSA_21_Pan_Pacific_Hotels_Group_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "216742",
"name" : "Enjoy up to 25% savings at Pan Pacific Hotels Group when you pay with your Visa card",
"description" : "Enjoy up to 25% savings at Pan Pacific Hotels Group when you pay with your Visa card till 31-08-2023\nOnline offer",
"validFrom" : "2023-03-21T00:00:00.389Z",
"validTo" : "2026-08-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VSA_21_Pan_Pacific_Hotels_Group_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VSA_21_Pan_Pacific_Hotels_Group_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percentage",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.panpacific.com/visa-stay-and-dine",
"termsAndConditions" : "1. The offer is valid for bookings and stays from 22 March 2023 until 31 August 2023. \n2. Subject to availability and black-out dates may apply. \n3. 20% savings on dining is only available for stay-in guests at the following outlets: - PARKROYAL COLLECTION Pickering : Lime Restaurant and Bar - PARKROYAL on Beach Road : Club 5, Ginger and Si Chuan Dou Hua Restaurant \n4. 15% savings on dining is only available for stay-in guests at the following outlets: - Pan Pacific Singapore : Edge, Hai Tien Lo and Keyaki. - PARKROYAL COLLECTION Marina Bay : Peach Blossoms, Peppermint and Portman's Bar, excludes alcoholic beverages at all outlets. - PARKROYAL on Kitchener Road : Spice Brasserie , ala carte menu only and Si Chuan Dou Hua Restaurant. \n5. Amendment and cancellation is subject to Hotel's guarantee and cancellation policy. \n6. Reservations must be guaranteed with a valid Visa Card. The same Visa card must be presented upon check-in and at check-out for payment. \n7. Offer cannot be used in conjunction with any other offer or promotion. \n8. Prevailing taxes and service charges apply. \n9. All information is correct at the time of publication. In the event of any inconsistency between the English and non-English language versions, the English language version shall prevail. \n10. Pan Pacific Hotels Group and Visa Worldwide Pte. Limited reserve the right to change the terms and conditions at any time without prior notice.\n11. The offer is valid on: Visa Platinum, Visa Gold, Visa Classic, Visa Electron, Visa Infinite, Visa Signature, Visa Signature Preferred, Visa Traditional, Visa Traditional Rewards, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa Infinite Business, Visa Infinite Privilege, Visa UHNW, Visa Gold Business, Visa Rewards, Visa Rewards Business, Visa Premier"
},
"appplicableForClients" : "VISA_SPECIFIC"
} ],
"tags" : [ "suite", "kids-activities", "front-desk", "non-smoking-room", "breakfast-included", "tv", "house-keeping", "24-by-7-support", "sauna", "free-toiletries", "business-center", "adjoining-room", "luxury-hotel", "bathrobe", "couple", "room-service", "family-room", "valet-parking", "concierge", "parking-available", "kids-and-family", "sea-view", "restaurant", "laundry-service", "dry-cleaning", "airport", "fitness-center", "desk", "pool-bar", "air-conditioned", "kids-pool", "basic-design", "eat-outs", "bar", "shuttle-service", "swimming-pool", "babysitting", "large-group", "refrigerator", "free-internet" ],
"cities" : [ "all", "Singapore" ],
"geoCodes" : [ {
"latitude" : "1.300307849",
"longitude" : "103.8606834"
}, {
"latitude" : "1.292610665",
"longitude" : "103.8585208"
}, {
"latitude" : "1.286033744",
"longitude" : "103.8461337"
} ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 7.7107672,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "4eef6a01-07ac-37de-8bfa-9b18589b306a",
"name" : "Hertz",
"description" : "Hertz, one of the world's largest general use car rental brand, operates from approximately 10,000 locations in 150 countries worldwide. Whether you are travelling for business or pleasure, you can be assured of quality cars and a wide range of services that make Hertz your first choice of car rental.",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Hertz_MerchantImage.webp",
"externalId" : "DP343",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Hertz_MerchantImage.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Hertz_Logo.webp",
"url" : "https://www.hertz.com/rentacar/reservation/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Hertz_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "202934",
"name" : "Get 10% savings + One complimentary rental day (with minimum 6/8 or more days) at Hertz",
"description" : "Get 10% savings + One complimentary rental day (with minimum 6/8 or more days) at Hertz till 30-09-2023\nOnline offer",
"validFrom" : "2021-01-01T00:00:00.389Z",
"validTo" : "2026-09-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "CDP# 83181",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Hertz_OfferImage.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://happartners.com/visa",
"termsAndConditions" : "1. This offer is valid till 30-09-2023\n2. Offer 2: One Complimentary Rental Day (with minimum 6 or more days rental in a booking) - To enjoy this privilege, cardholders must use the respective Promotion Coupon (PC) number for the selected destinations. For USA/Canada: PC#210402 (Min. 8 days); For Europe*: PC#113035 (Min. 6 days);For Asia^: PC#982763 - \n3. Offer is valid for both booking and pick-up dates from now to 30 September 2023. \n4. Offer is valid for self-drive rentals on qualifying Hertz Affordable Rates (leisure retail rates) at participating locations in Australia, New Zealand, Europe, Asia, USA and Canada only. - \n5. Minimum rental period is six days (including the 6th day of free rental). Maximum one free day per rental. - \n6. Benefit is applicable on the following car groups: For USA/ Canada: All standard;For Europe: Midsize and above; For Australia/ New Zealand: Compact and above; For Asia: All standard\n7. Europe includes: Belgium, France, Germany, Italy, Luxembourg, Netherlands, Spain Mainland and United Kingdom; Asia includes: Brunei, Cambodia, Hong Kong, Malaysia, Pakistan, Philippines, Singapore, South Korea, Sri Lanka, Taiwan, Thailand and Vietnam .Offer is valid only when you pay with a Visa card issued in Asia Pacific. Please quote CDP#83181 together with the respective PC# to enjoy the offer. \n8. Offer is not guaranteed and based on availability at time of rental. \n9. Reservations must be made at least 24 hours prior to vehicle pickup in Australia, New Zealand, Europe, USA and Canada but for Asia, reservations must be made at least 48 hours prior to vehicle pickup. Blackout periods may apply. \n10. Offer is valid for self-drive rentals on Hertz Affordable Rates (leisure retail rates) at participating locations and applies to time and mileage charges only, not taxes, tax reimbursement, government surcharges or optional services, such as refueling or GPS. \n11. Discount applies to time and mileage charges only, and does not apply to taxes, fees and optional services. \n12. Limited to one offer per rental. Offer is not applicable on Hertz Collections. \n13. Minimum rental age is 25 and all drivers must be in the possession of a valid driver's license, which must be held for at least 1 year prior to pick-up date. (exceptions apply). \n14. Valid Visa credit card must be presented during car pickup and for payment. \n15. Modifying your reservation may result in a change in your rate and/or invalidate this offer. \n16. Hertz reserve the right to modify and/or cancel the offer(s) without prior notice. \n17. The offer has no cash value, may not be used with tour rates or insurance/dealer replacement rates and cannot be combined with any other certificate, voucher, offer or promotion. \n18. Standard Hertz rental terms and conditions apply. \n19. The offers under this promotion may not be combined with any other offer, discount, coupon or promotion. \n20. Visa shall not be responsible or liable in any manner whatsoever for any deficiency or inadequacy of service rendered by Hertz or for any loss whatsoever of any nature suffered by any cardholder. Visa Cardholders shall not be entitled to compensation / benefits in any form whatsoever in lieu of any of the offers. \n21. Offers cannot be exchanged or redeemed for cash. \n22. Visa Cardholders are not bound in any manner to participate in this offer. Any participation by the Visa Cardholder shall be voluntary. By participating in or attempting to utilize any of the offers, the cardholder irrevocably agrees to be bound by the terms and conditions herein. \n23. Visa will use best efforts to ensure the offers are provided as described, but cardholders shall not make any claim or seek compensation against Visa, even in the event that any of the offers are not provided or provided as described (whether or not such non provision is due to fault, negligence on the part of Hertz or Visa). Visa shall not be liable in any manner whatsoever or howsoever for any loss or damage or claims that may arise out of (a) usage or attempted usage of any of the offers, or of any services provided by Hertz, or (b) any refusal or failure on the part of Hertz to provide or honour any of the offers, or benefits or privileges given under the offers, for any reason whatsoever. Visa reserves the absolute right to withdraw and / or alter any of the terms and conditions of any of the offers at any time without giving any notice. Other restrictions may apply. Cancellation and Charges: To cancel or change a reservation online, select \"Rates & Reservations\" in the navigation and then click on either \"Cancel a Reservation\" or \"View/Modify a Reservation\". Reservations can be modified, or cancelled online by providing a confirmation number and the last name referenced on the reservation. Modifying your reservation may result in a change in your rate and/or invalidate this offer.\n24. The offer is applicable on: Visa Platinum, Visa Gold, Visa Classic, Visa Infinite, Visa Signature, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa Infinite Business",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Hertz_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment\n4. Please quote the redemption code together with the respective PC# for selected destinations to enjoy the offer.",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "VISA_SPECIFIC"
}, {
"id" : "202936",
"name" : "Get 10% savings + Free one car class upgrade (with minimum 5 or more days') Booking at Hertz",
"description" : "Get 10% savings + Free one car class upgrade (with minimum 5 or more days') Booking at Hertz till 30-09-2023\nOnline offer",
"validFrom" : "2021-01-01T00:00:00.389Z",
"validTo" : "2026-09-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "CDP# 83181",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Hertz_OfferImage.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://happartners.com/visa",
"termsAndConditions" : "1. The offer is valid till 30-09-2023\n2. Offer 4: Free One Car Class Upgrade (with minimum 5 or more days rental in a booking) - To enjoy this privilege, cardholders must use the respective Promotion Coupon (PC) number for the selected destinations. For USA/Canada: PC#960470; For Europe: PC#213161 3. For Asia: PC#960945 \n3. Offer is valid for both booking and pick-up dates from now to 30 September 2023. \n4. Offer is valid for self-drive rentals on qualifying Hertz Affordable Rates (leisure retail rates) at participating locations in Australia, New Zealand, Europe, Asia, USA and Canada only. \n5. Minimum rental period is five days. - Free upgrade is subject to the availability of a larger vehicle at the rental counter. \n6. Benefit is applicable on the following car groups: For USA/ Canada: Compact to Standard with maximum upgrade to Fullsize 4-door; For Europe: Economy to Midsize with maximum upgrade to Fullsize 4-door sedan; For Australia/ New Zealand: Compact to Standard with maximum upgrade to Fullsize 4-door sedan; For Asia: Economy to Midsize with maximum upgrade to Full-size 4-door sedan \n7. Europe includes: Belgium, France, Germany, Italy, Luxembourg, Netherlands, Spain Mainland and United Kingdom; Asia includes: Brunei, Cambodia, Hong Kong, Malaysia, Pakistan, Philippines, Singapore, South Korea (Jeju only), Sri Lanka, Taiwan, Thailand and Vietnam.Offer is valid only when you pay with a Visa card issued in Asia Pacific. Please quote CDP#83181 together with the respective PC# to enjoy the offer. \n8. Offer is not guaranteed and based on availability at time of rental. \n9. Reservations must be made at least 24 hours prior to vehicle pickup in Australia, New Zealand, Europe, USA and Canada but for Asia, reservations must be made at least 48 hours prior to vehicle pickup. Blackout periods may apply. \n10. Offer is valid for self-drive rentals on Hertz Affordable Rates (leisure retail rates) at participating locations and applies to time and mileage charges only, not taxes, tax reimbursement, government surcharges or optional services, such as refueling or GPS. \n11. Discount applies to time and mileage charges only, and does not apply to taxes, fees and optional services. \n12. Limited to one offer per rental. Offer is not applicable on Hertz Collections. \n13. Minimum rental age is 25 and all drivers must be in the possession of a valid driver's license, which must be held for at least 1 year prior to pick-up date. (exceptions apply). \n14. Valid Visa credit card must be presented during car pickup and for payment. \n15. Modifying your reservation may result in a change in your rate and/or invalidate this offer. \n16. Hertz reserve the right to modify and/or cancel the offer(s) without prior notice. \n17. The offer has no cash value, may not be used with tour rates or insurance/dealer replacement rates and cannot be combined with any other certificate, voucher, offer or promotion. \n18. Standard Hertz rental terms and conditions apply. \n19. The offers under this promotion may not be combined with any other offer, discount, coupon or promotion. \n20. Visa shall not be responsible or liable in any manner whatsoever for any deficiency or inadequacy of service rendered by Hertz or for any loss whatsoever of any nature suffered by any cardholder. Visa Cardholders shall not be entitled to compensation / benefits in any form whatsoever in lieu of any of the offers. \n21. Offers cannot be exchanged or redeemed for cash. \n22. Visa Cardholders are not bound in any manner to participate in this offer. Any participation by the Visa Cardholder shall be voluntary. By participating in or attempting to utilize any of the offers, the cardholder irrevocably agrees to be bound by the terms and conditions herein. \n23. Visa will use best efforts to ensure the offers are provided as described, but cardholders shall not make any claim or seek compensation against Visa, even in the event that any of the offers are not provided or provided as described (whether or not such non provision is due to fault, negligence on the part of Hertz or Visa). Visa shall not be liable in any manner whatsoever or howsoever for any loss or damage or claims that may arise out of (a) usage or attempted usage of any of the offers, or of any services provided by Hertz, or (b) any refusal or failure on the part of Hertz to provide or honour any of the offers, or benefits or privileges given under the offers, for any reason whatsoever. Visa reserves the absolute right to withdraw and / or alter any of the terms and conditions of any of the offers at any time without giving any notice. Other restrictions may apply. Cancellation and Charges: To cancel or change a reservation online, select \"Rates & Reservations\" in the navigation and then click on either \"Cancel a Reservation\" or \"View/Modify a Reservation\". Reservations can be modified, or cancelled online by providing a confirmation number and the last name referenced on the reservation. Modifying your reservation may result in a change in your rate and/or invalidate this offer.\n24. The offer is applicable on: Visa Platinum, Visa Gold, Visa Classic, Visa Infinite, Visa Signature, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa Infinite Business",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Hertz_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment\n4. Please quote the redemption code together with the respective PC# for selected destinations to enjoy the offer.",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "VISA_SPECIFIC"
}, {
"id" : "202933",
"name" : "Get 10% savings on self-drive car rentals (with minimum 1 day booking) at Hertz",
"description" : "Get 10% savings on self-drive car rentals (with minimum 1 day booking) at Hertz till 30-09-2023\nOnline offer",
"validFrom" : "2021-01-01T00:00:00.389Z",
"validTo" : "2026-09-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "CDP# 83181",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Hertz_OfferImage.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://happartners.com/visa",
"termsAndConditions" : "1. The offer is valid till 30-09-2023\n2. 10% discount is baseline offer, meaning it can be used in conjunction with any other offers that require a PC number (Any offer that has a CDP number can be used in conjunction with offers with PC number). \n3. Offer 1: 10% savings on self-drive car rentals (with minimum 1 day rental in a booking) - To enjoy this discount, cardholders must use the discount number CDP# 83181 when making the vehicle reservation.\n4. Offer is valid for both booking and pick-up dates from now to 30 September 2023. \n5. Offer is valid for self-drive rentals on qualifying Hertz Affordable Rates (leisure retail rates) at participating locations in Australia, New Zealand, Europe, Asia, USA and Canada only. \n6. Offer is applicable on all car groups except Hertz Collections. Europe includes: Belgium, France, Germany, Italy, Luxembourg, Netherlands, Spain Mainland and United Kingdom; Asia includes: Brunei, Cambodia, Hong Kong, Malaysia, Pakistan, Philippines, Singapore, South Korea, Sri Lanka, Taiwan, Thailand and Vietnam \n7. Offer is valid only when you pay with a Visa card issued in Asia Pacific. Please quote CDP#83181 together with the respective PC# to enjoy the offer. \n8. Offer is not guaranteed and based on availability at time of rental. \n9. Reservations must be made at least 24 hours prior to vehicle pickup in Australia, New Zealand, Europe, USA and Canada but for Asia, reservations must be made at least 48 hours prior to vehicle pickup. Blackout periods may apply. \n10. Offer is valid for self-drive rentals on Hertz Affordable Rates (leisure retail rates) at participating locations and applies to time and mileage charges only, not taxes, tax reimbursement, government surcharges or optional services, such as refueling or GPS. \n11. Discount applies to time and mileage charges only, and does not apply to taxes, fees and optional services. \n12. Limited to one offer per rental. Offer is not applicable on Hertz Collections. \n13. Minimum rental age is 25 and all drivers must be in the possession of a valid driver's license, which must be held for at least 1 year prior to pick-up date. (exceptions apply). \n14. Valid Visa credit card must be presented during car pickup and for payment. \n15. Modifying your reservation may result in a change in your rate and/or invalidate this offer. \n16. Hertz reserve the right to modify and/or cancel the offer(s) without prior notice. \n17. The offer has no cash value, may not be used with tour rates or insurance/dealer replacement rates and cannot be combined with any other certificate, voucher, offer or promotion. \n18. Standard Hertz rental terms and conditions apply. \n19. The offers under this promotion may not be combined with any other offer, discount, coupon or promotion. \n20. Visa shall not be responsible or liable in any manner whatsoever for any deficiency or inadequacy of service rendered by Hertz or for any loss whatsoever of any nature suffered by any cardholder. Visa Cardholders shall not be entitled to compensation / benefits in any form whatsoever in lieu of any of the offers. \n21. Offers cannot be exchanged or redeemed for cash. \n22. Visa Cardholders are not bound in any manner to participate in this offer. Any participation by the Visa Cardholder shall be voluntary. By participating in or attempting to utilize any of the offers, the cardholder irrevocably agrees to be bound by the terms and conditions herein. \n23. Visa will use best efforts to ensure the offers are provided as described, but cardholders shall not make any claim or seek compensation against Visa, even in the event that any of the offers are not provided or provided as described (whether or not such non provision is due to fault, negligence on the part of Hertz or Visa). Visa shall not be liable in any manner whatsoever or howsoever for any loss or damage or claims that may arise out of (a) usage or attempted usage of any of the offers, or of any services provided by Hertz, or (b) any refusal or failure on the part of Hertz to provide or honour any of the offers, or benefits or privileges given under the offers, for any reason whatsoever. Visa reserves the absolute right to withdraw and / or alter any of the terms and conditions of any of the offers at any time without giving any notice. Other restrictions may apply. Cancellation and Charges: To cancel or change a reservation online, select \"Rates & Reservations\" in the navigation and then click on either \"Cancel a Reservation\" or \"View/Modify a Reservation\". Reservations can be modified, or cancelled online by providing a confirmation number and the last name referenced on the reservation. Modifying your reservation may result in a change in your rate and/or invalidate this offer.\n24. The offer is applicable on: Visa Platinum, Visa Gold, Visa Classic, Visa Infinite, Visa Signature, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa Infinite Business",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Hertz_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment\n4. Please quote the redemption code together with the respective PC# for selected destinations to enjoy the offer.",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "VISA_SPECIFIC"
}, {
"id" : "202935",
"name" : "Get 10% savings + Additional 10% savings (with minimum 6 or more days') booking at Hertz",
"description" : "Get 10% savings + Additional 10% savings (with minimum 6 or more days') booking at Hertz till 30-09-2023\nOnline offer",
"validFrom" : "2021-01-01T00:00:00.389Z",
"validTo" : "2026-09-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "CDP# 83181",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Hertz_OfferImage.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://happartners.com/visa",
"termsAndConditions" : "1. The offer is valid till 30-09-2023\n2. Offer 3: To enjoy this privilege, cardholders must use the relevant Promotion Coupon (PC) number for the selected destinations: - For Australia & New Zealand: PC#210678 (Min. 6 days) \n3. Offer is valid on qualifying Hertz Affordable Rate (leisure retail rates) rentals at participating locations in Australia and New Zealand only. \n4. Minimum rental period is six days. \n5. Benefit is applicable on the following car groups: - For Australia: Intermediate and above - For New Zealand: Economy and above Benefit is not applicable on Hertz Collection \n6. Offer is valid only when you pay with a Visa card issued in Asia Pacific. Please quote CDP#83181 together with the respective PC# to enjoy the offer. \n7. Offer is not guaranteed and based on availability at time of rental. \n8. Reservations must be made at least 24 hours prior to vehicle pickup in Australia, New Zealand, Europe, USA and Canada but for Asia, reservations must be made at least 48 hours prior to vehicle pickup. Blackout periods may apply. \n9. Offer is valid for self-drive rentals on Hertz Affordable Rates (leisure retail rates) at participating locations and applies to time and mileage charges only, not taxes, tax reimbursement, government surcharges or optional services, such as refueling or GPS. \n10. Discount applies to time and mileage charges only, and does not apply to taxes, fees and optional services. \n11. Limited to one offer per rental. Offer is not applicable on Hertz Collections. \n12. Minimum rental age is 25 and all drivers must be in the possession of a valid driver's license, which must be held for at least 1 year prior to pick-up date. (exceptions apply). \n13. Valid Visa credit card must be presented during car pickup and for payment. \n14. Modifying your reservation may result in a change in your rate and/or invalidate this offer. \n15. Hertz reserve the right to modify and/or cancel the offer(s) without prior notice. \n16. The offer has no cash value, may not be used with tour rates or insurance/dealer replacement rates and cannot be combined with any other certificate, voucher, offer or promotion. \n17. Standard Hertz rental terms and conditions apply. \n18. The offers under this promotion may not be combined with any other offer, discount, coupon or promotion. \n19. Visa shall not be responsible or liable in any manner whatsoever for any deficiency or inadequacy of service rendered by Hertz or for any loss whatsoever of any nature suffered by any cardholder. Visa Cardholders shall not be entitled to compensation / benefits in any form whatsoever in lieu of any of the offers. \n20. Offers cannot be exchanged or redeemed for cash. \n21. Visa Cardholders are not bound in any manner to participate in this offer. Any participation by the Visa Cardholder shall be voluntary. By participating in or attempting to utilize any of the offers, the cardholder irrevocably agrees to be bound by the terms and conditions herein. \n22. Visa will use best efforts to ensure the offers are provided as described, but cardholders shall not make any claim or seek compensation against Visa, even in the event that any of the offers are not provided or provided as described (whether or not such non provision is due to fault, negligence on the part of Hertz or Visa). Visa shall not be liable in any manner whatsoever or howsoever for any loss or damage or claims that may arise out of (a) usage or attempted usage of any of the offers, or of any services provided by Hertz, or (b) any refusal or failure on the part of Hertz to provide or honour any of the offers, or benefits or privileges given under the offers, for any reason whatsoever. Visa reserves the absolute right to withdraw and / or alter any of the terms and conditions of any of the offers at any time without giving any notice. Other restrictions may apply. Cancellation and Charges: To cancel or change a reservation online, select \"Rates & Reservations\" in the navigation and then click on either \"Cancel a Reservation\" or \"View/Modify a Reservation\". Reservations can be modified, or cancelled online by providing a confirmation number and the last name referenced on the reservation. Modifying your reservation may result in a change in your rate and/or invalidate this offer.\n23. The offer is applicable on: Visa Platinum, Visa Gold, Visa Classic, Visa Infinite, Visa Signature, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa Infinite Business",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Hertz_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment\n4. Please quote the redemption code together with the respective PC# for selected destinations to enjoy the offer.",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "VISA_SPECIFIC"
} ],
"tags" : [ "self-driving", "transportation", "", "car-rental", "rental-services" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 7.7107672,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "721fda3d-9a09-359a-8e78-ee0599a15e19",
"name" : "Atlantis The Palm",
"description" : "At the best luxury spa and fitness centre in Dubai, discover innovative and dedicated treatments and services for all your body and soul need.",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/DC8_Atlantis_The_Palm.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DC8",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/DC8_Atlantis_The_Palm.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/DC8_Atlantis_The_Palm_New_Logo.webp.webp",
"url" : "https://www.blackbooktravels.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/DC8_Atlantis_The_Palm_New_Banner.webp.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "80531",
"name" : "Get up to 15% off on your stay at Atlantis the palm",
"description" : "Get up to 15% off on your stay at Atlantis the palm till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/DC8_Atlantis_The_Palm.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=atlantis-the-palm-1013282",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : Crescent Road, The PalmPalm Jumairah, Dubai, United Arab Emirates ; Contact : 97144262000/reservations@atlantisdubai.com\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/DC8_Atlantis_The_Palm.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "personal-training", "beard-trimming", "botox", "facial", "salon", "babysiting", "day-spa", "spa", "wifi", "head-massage", "nail-design", "foot-reflexology", "foot-spa", "yoga", "pedicure", "basic-service", "hair-and-beauty", "unisex", "neck-and-back-massage", "city-view", "hair-cuts", "gym", "pool-bar", "manicure", "thai-massage", "nail-salon", "aroma-massage", "local", "trendy-haircuts", "fitness-and-sports", "smoking-room", "hair-treatment", "beauty-clinic", "waxing", "hair-styling", "bar-loung", "bookings-and-reservations", "beach" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 7.7107672,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "30b9aa66-f271-3a65-aefc-f88c920ed0dd",
"name" : "Royal Albatross",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Royal_Albatross_MerchantImage.webp",
"externalId" : "DP350",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Royal_Albatross_MerchantImage.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Royal_Albatross_Logo.webp",
"url" : "https://www.tallship.com.sg/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Royal_Albatross_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "202955",
"name" : "Get 10% Off all Dining Experiences on Royal Albatross when you pay with Visa",
"description" : "Get 10% Off all Dining Experiences on Royal Albatross when you pay with Visa till 31-12-2023\nOnline offer",
"validFrom" : "2022-11-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "VISA10",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Royal_Albatross_OfferImage.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.tallship.com.sg/",
"termsAndConditions" : "1. The offer is valid till 31-12-2023\n2. Promo code can be applied to all Breakfast Buffet Sail, Sunset & City Lights Dinner Sail. \n3. Promo Code not applicable on special themed events, eg, Halloween, Xmas, NYE, Chinese New Year, Valentines, Public Holidays. \n4. Promo code is not valid for packages and cannot be stacked or used with any other promotion.\n5. The offer is applicable on: Visa Platinum, Visa Gold, Visa Classic, Visa Electron, Visa Infinite, Visa Signature, Visa Signature Preferred, Visa Traditional, Visa Traditional Rewards, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa Infinite Business, Visa Infinite Privilege, Visa UHNW, Visa Gold Business, Visa Rewards",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Royal_Albatross_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment\n4. You may also WhatsApp 8189 7544 to book or email in reservations@tallship.com.sg to make further enquiries.",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "VISA_SPECIFIC"
} ],
"tags" : [ "transportation", "cruises-packages", "cruises" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 7.7107672,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "df7da8ae-c805-38fd-9c0f-b93db3000fb8",
"name" : "Let's Go Bike Singapore",
"description" : "Follow the carefully-designed route with Let's Go Bike Singapore's friendly local guide. You are guaranteed to see the real Singapore, how Singaporeans live, eat, work and play. You'll ride on sidewalks and quiet little streets that no bus tour can get to. Meander along the Singapore River to see historical landmarks, museums and places of interest.",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Lets_Go_Bike_Singapore_MerchantImage.webp",
"externalId" : "DP344",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Lets_Go_Bike_Singapore_MerchantImage.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Lets_Go_Bike_Singapore_Logo.webp",
"url" : "https://www.letsgobikesingapore.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Lets_Go_Bike_Singapore_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "202938",
"name" : "Save 10% on Historical Singapore Bicycle Tour and Marina Night Bike Tour with your Visa card",
"description" : "Save 10% on Historical Singapore Bicycle Tour and Marina Night Bike Tour with your Visa card till 30-09-2023\nOnline offer",
"validFrom" : "2022-10-01T00:00:00.389Z",
"validTo" : "2026-09-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "VISA10",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Lets_Go_Bike_Singapore_OfferImage.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.letsgotoursingapore.com/action-seekers/",
"termsAndConditions" : "1. The offer is valid till 30-09-2023\n2. Let's Go Tour is solely responsible for this offer. \n3. Minimum 2-Pax Departure Policy: Due to the min. requirement of 2 pax to depart, Let's Go Tour reserves the right to contact the customer to reschedule to another slot/day, should the number of guests for the tour selected is less than 2 pax. \n4. Cancellation Policy: Cancellations 48 hours prior to the tour will be refunded 100%. Cancellations 24 hours prior to the tour will be refunded 50% No cancellations or refunds for less than 24 hours to tour.\n5. This offer is applicable on:Visa Platinum, Visa Gold, Visa Classic, Visa Electron, Visa Infinite, Visa Signature, Visa Signature Preferred, Visa Traditional, Visa Traditional Rewards, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa Infinite Business, Visa Infinite Privilege, Visa UHNW, Visa Gold Business, Visa Rewards\n6. Please see individual merchant blackout dates. \n7. Offers are valid only when paid with Visa issued worldwide, except where specifically noted. \n8. Identification and presentation of eligible Visa cards may be required for redemption of the offer. Either print, or save on a mobile device, this guide and present the appropriate offer at time of payment, unless otherwise stated. \n9. Benefits cannot be redeemed without Offer information. \n10. Failure to redeem the offer at the proper time may result in denial of the benefit. \n11. Offers may not be used in combination with other promotions, discounts, coupons or special offers. \n12. Offers may not be redeemed for cash or other items. Limited one offer per person per visit.\n13. All offers and services noted in this guide are the responsibility of the individual merchant. Contact the merchant directly for enquiries or additional information. Terms and conditions for each offer vary. Read the terms and conditions before use. \n14. Retain your Visa receipts after your purchase. You may be required to show proof of purchase in case of claims after your return. All receipts must be for same day purchases with a Visa card and in the same name as the cardholder. \n15. Visa is not liable for any and all claims that may arise from its use. Offers and services are subject to change or discontinuation. \n16. Except where specifically noted, offers are exclusive of tax and service charges. \n17. Photographs are for image purposes only. Actual items/services may vary. \n18. Any gifts must be redeemed at the destination. They cannot be redeemed after your return. Limited one gift per customer, no more than once every six months. You may be required to leave your name when claiming a gift with purchase. Any gifts are subject to change depending on stock.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Lets_Go_Bike_Singapore_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment\n4. For more information contact: Block 462 Crawford Lane #01-57, Singapore 190462 +65-9001-4266 www.letsgotoursingapore.com",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "VISA_SPECIFIC"
} ],
"tags" : [ "tour-operator", "transportation", "bike-rental", "", "rental-services" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 7.7107672,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "9ac02c75-4db6-3c8b-9375-8dc8813062cd",
"name" : "Anantara Eastern Mangroves Abu Dhabi Hotel",
"description" : "Combining business and pleasure, Anantara Eastern Mangroves Abu Dhabi Hotel edges Abu Dhabi’s skyscrapers on one side - on the other, an expanse of mangroves and tranquillity refreshes.",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB48_Anantara_Eastern_Mangroves_Abu_Dhabi_Hotel.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "BB48",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB48_Anantara_Eastern_Mangroves_Abu_Dhabi_Hotel.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB48_Anantara_Eastern_Mangroves_Abu_Dhabi_Hotel_New_Logo.webp.webp",
"url" : "https://www.blackbooktravels.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/BB48-AnantaraEasternMangrovesAbuDhabiHotel.webp.webp",
"totalViews" : 5,
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "81386",
"name" : "Get up to 15% off on your stay at Anantara Eastern Mangroves Abu Dhabi",
"description" : "Get up to 15% off on your stay at Anantara Eastern Mangroves Abu Dhabi till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB48-AnantaraEasternMangrovesAbuDhabiHotel.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=anantara-eastern-mangroves-abu-dhabi-hotel-1091321",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10. The offer is applicable at : Sheikh Zayed Street, P.O. Box 128555Al Kheeran, Abu Dhabi, United Arab Emirates ; Contact : nkariyawasam@anantara.com\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB48-AnantaraEasternMangrovesAbuDhabiHotel.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "buffet-breakfast", "suite", "kids-activities", "front-desk", "luxury-dining", "non-smoking-room", "breakfast-included", "tv", "house-keeping", "pool-view", "rooftop-pool", "spa", "24-by-7-support", "free-toiletries", "adjoining-room", "luxury-hotel", "bar-lounge", "family-room", "bathrobe", "anantara", "room-service", "valet-parking", "couple", "free-parking", "concierge", "kids-and-family", "rooftop-bar", "restaurant", "laundry-service", "dry-cleaning", "luggage-storage", "airport-transportation", "desk", "pool-bar", "mini-bar", "kids-pool", "smoking-room", "business-meeting", "swimming-pool", "fitness-centre", "large-group", "atm", "refrigerator", "air-conditioner", "hair-dryer", "large-beds", "infinity-pool" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 7.7107672,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "555d5124-51fc-357c-956e-83e5977e5d58",
"name" : "Let's Go Kelong Tour",
"description" : "Escape the concrete jungle, it's time for an adventure! Get out to sea on a fine catamaran and discover the North Eastern Banks of Singapore on this 3 hour Kelong Tour. Soak in the sights and the sun, let your hair down in the wind and just breathe in the salty sea air. It will be an unforgettable mini-vacation experience!",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Lets_Go_Kelong_Tour_MerchantImage.webp",
"externalId" : "DP346",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Lets_Go_Kelong_Tour_MerchantImage.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Lets_Go_Kelong_Tour_Logo.webp",
"url" : "https://letsgotoursingapore.com/tours/lets-go-kelong-tour/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Lets_Go_Kelong_Tour_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "202940",
"name" : "Save 10% on Let's Go Kelong Tour with your Visa card",
"description" : "Save 10% on Let's Go Kelong Tour with your Visa card till 30-09-2023\nOnline offer",
"validFrom" : "2022-10-01T00:00:00.389Z",
"validTo" : "2026-09-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "VISA10",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Lets_Go_Kelong_Tour_OfferImage.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.letsgotoursingapore.com/lets-go-kelong-tour/",
"termsAndConditions" : "1. The offer is valid till 30-09-2023\n2. Let's Go Tour is solely responsible for this offer. \n3. Minimum 5-Pax Departure Policy: Due to the min. requirement of 5 pax to depart, Let's Go Tour reserves the right to contact the customer to reschedule to another slot/day, should the number of guests for the tour selected is less than 5 pax. \n4. Cancellation Policy: Cancellations 48 hours prior to the tour will be refunded 100%. Cancellations 24 hours prior to the tour will be refunded 50% No cancellations or refunds for less than 24 hours to tour.\n5. The offer is applicable on: Visa Platinum, Visa Gold, Visa Classic, Visa Electron, Visa Infinite, Visa Signature, Visa Signature Preferred, Visa Traditional, Visa Traditional Rewards, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa Infinite Business, Visa Infinite Privilege, Visa UHNW, Visa Gold Business, Visa Rewards\n6. Please see individual merchant blackout dates. \n7. Offers are valid only when paid with Visa issued worldwide, except where specifically noted. \n8. Identification and presentation of eligible Visa cards may be required for redemption of the offer. Either print, or save on a mobile device, this guide and present the appropriate offer at time of payment, unless otherwise stated. \n9. Benefits cannot be redeemed without Offer information. \n10. Failure to redeem the offer at the proper time may result in denial of the benefit. \n11. Offers may not be used in combination with other promotions, discounts, coupons or special offers. \n12. Offers may not be redeemed for cash or other items. Limited one offer per person per visit.\n13. All offers and services noted in this guide are the responsibility of the individual merchant. Contact the merchant directly for enquiries or additional information. Terms and conditions for each offer vary. Read the terms and conditions before use. \n14. Retain your Visa receipts after your purchase. You may be required to show proof of purchase in case of claims after your return. All receipts must be for same day purchases with a Visa card and in the same name as the cardholder. \n15. Visa is not liable for any and all claims that may arise from its use. Offers and services are subject to change or discontinuation. \n16. Except where specifically noted, offers are exclusive of tax and service charges. \n17. Photographs are for image purposes only. Actual items/services may vary. \n18. Any gifts must be redeemed at the destination. They cannot be redeemed after your return. Limited one gift per customer, no more than once every six months. You may be required to leave your name when claiming a gift with purchase. Any gifts are subject to change depending on stock.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Lets_Go_Kelong_Tour_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment\n4. For more information contact: Block 462 Crawford Lane #01-57, Singapore 190462 +65-9001-4266 www.letsgotoursingapore.com",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "VISA_SPECIFIC"
} ],
"tags" : [ "transportation", "cruises-packages", "cruises", "" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 7.7107672,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "e03368de-8a1c-3ae8-b325-b7c8be37299e",
"name" : "Desert Island Resort",
"description" : "Situated On Sir Bani Yas Island, The Five-Star Award-Winning Desert Islands Resort & Spa By Anantara Is A Great Place To Unwind After A Day Full Of Adventure And Exploration On The Island.",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP147_webp_Desert_Island_Resort_card.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DP147",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP147_webp_Desert_Island_Resort_card.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/DP147_webp_DP147_webp_Desert_Island_Resort_card_Logo.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/DP147_webp_Desert_Island_Resort_banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "92487",
"name" : "Get up to 15% off on your stay at Desert Island Resort",
"description" : "Get up to 15% off on your stay at Desert Island Resort untill 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/92487_webp_Desert_Island_Resort.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=desert-island-resort-and-spa-sir-bani-yas-island-1544981",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/92487_webp_Desert_Island_Resort.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "kids-activities", "luxury-dining", "non-smoking-room", "tv", "5-star", "wedding-service", "spa", "wifi", "24-by-7-support", "resort", "luxury-hotel", "bar-lounge", "family-room", "room-service", "couple", "free-parking", "concierge", "multilingual-staff", "kids-and-family", "sea-view", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "luggage-storage", "airport-transportation", "modern-design", "pool-bar", "mini-bar", "eat-outs", "shuttle-service", "business-meeting", "swimming-pool", "fitness-centre", "babysitting", "large-group", "free-internet", "air-conditioner", "buffet-breakfast" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 7.7107672,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "6dd983f9-0b85-3291-9ecc-0a440ddf1a24",
"name" : "The Ritz-Carlton Riyadh",
"description" : "The Ritz Carlton Montreal, a Lartisien hotel for its pursuit of excellence.",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1476_The_Ritz_Carlton_Riyadh.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "BB1476",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1476_The_Ritz_Carlton_Riyadh.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB1476_The_Ritz_Carlton_Riyadh_New_Logo.webp.webp",
"url" : "https://www.blackbooktravels.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/BB1476-TheRitzCarltonRiyadh.webp.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "88187",
"name" : "Get up to 15% off on your stay at The Ritz-Carlton, Riyadh",
"description" : "Get up to 15% off on your stay at The Ritz-Carlton, Riyadh untill 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/88187_webp_The_Ritz-carlton.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=the-ritz-carlton-1565259",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : Mekkah Road, Riyadh, Saudi Arabia ; Contact : 96618028020/rc.ruhrz.leads@ritzcarlton.com\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/88187_webp_The_Ritz-carlton.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "king-room", "banquet-hall", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "house-keeping", "spa", "places-of-worship", "24-by-7-support", "free-toiletries", "bathrobe", "couple", "room-service", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "luggage-storage", "modern-design", "desk", "mini-bar", "carlton", "bar", "security", "swimming-pool", "fitness-centre", "free-internet", "air-conditioner", "hair-dryer", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 7.7107672,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "7660ce31-0892-3016-b25d-27397180439b",
"name" : "Economybookings",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/EB_merchant.webp",
"externalId" : "AD5061",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/EB_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/EB_logo.webp",
"url" : "https://www.economybookings.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/EB_banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "209833",
"name" : "Get 5% discount on your purchase at Economybookings",
"description" : "Get 5% discount on your purchase at Economybookings till 31-12-2023\nOnline offer",
"validFrom" : "2023-05-19T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADMITAD",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/EB_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 49.0,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/ak2cc18erxd1931805361985193de8/?i=3",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/EB_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "EUR",
"payoutValue" : "50.77"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "online", "transportation", "car-rental", "rental-services" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 7.7107672,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "49c49b0b-8a16-3891-9fae-0280ee26b75f",
"name" : "Gogreen Holdings",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Gogreen_Holdings_Pte_Ltd_MerchantImage.webp",
"externalId" : "DP340",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Gogreen_Holdings_Pte_Ltd_MerchantImage.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Gogreen_Holdings_Pte_Ltd_Logo.webp",
"url" : "https://gogreenholdings.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_Gogreen_Holdings_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "202930",
"name" : "Get 10% off and get 1 hour free of Gogreen Bicycle or Kick Scooter at Sentosa Siloso Beach with a min purchase of 2 hours rental per pax",
"description" : "Get 10% off and get 1 hour free of Gogreen Bicycle or Kick Scooter at Sentosa Siloso Beach with a min purchase of 2 hours rental per pax till 31-05-2023\nOnline offer",
"validFrom" : "2022-11-01T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "VISAGLOBAL",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Gogreen_Holdings_Pte_Ltd_OfferImage.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.sentosa.com.sg/home/campaigns/Gogreen-eco-adventure-stb-visa-global-phase-1",
"termsAndConditions" : "1. This offer is valid till 31-05-2023\n2. Please check the details of our location at http://www.gogreenecoadventure.com/contact Gogreen @ Sentosa 51 Siloso Beach Walk #01-01 Sentosa 099001 (opposite Bikini Bar) \n3. Bicycle and/or kick scooter are available on a first come first serve basis. \n4. You are required to show your redemption ticket (redemption only) and/or confirmation email (if required) for verification purpose. \n5. All completed and confirmed transactions cannot be postponed, cancelled or refunded under any circumstances. \n6. It is a mandatory requirement for all guests to sign a release of liability form on-site on day of visit before the collection of a bicycle/kick scooter, or be denied admission. \n7. On how to get there and check out our latest operating hours, please visit www.gogreenecoadventure.com\n8. This offer is applicable on: Visa Platinum, Visa Gold, Visa Classic, Visa Electron, Visa Infinite, Visa Signature, Visa Signature Preferred, Visa Traditional, Visa Traditional Rewards, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa Infinite Business, Visa Infinite Privilege, Visa UHNW, Visa Gold Business, Visa Rewards",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Gogreen_Holdings_Pte_Ltd_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "202929",
"name" : "Get 10% off and get 1 hour free of Gogreen Bicycle or Kick Scooter at St John's Island with a min purchase of 2 hours rental per pax",
"description" : "Get 10% off and get 1 hour free of Gogreen Bicycle or Kick Scooter at St John's Island with a min purchase of 2 hours rental per pax till 31-05-2023\nOnline offer",
"validFrom" : "2022-11-01T00:00:00.389Z",
"validTo" : "2026-05-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "VISAGLOBAL",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Gogreen_Holdings_Pte_Ltd_OfferImage.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.sentosa.com.sg/home/campaigns/Gogreen-eco-adventure-stb-visa-global-phase-1",
"termsAndConditions" : "1. The offer is valid till 31-05-2023\n2. Please check the details of our location at http://www.gogreenecoadventure.com/contact Gogreen @ St John's Island 5 mins walk from St John Island Pier Book ferry rides at Singapore Island Cruise and Marina South Ferries \n3. Bicycle and/or kick scooter are available on a first come first serve basis. \n4. You are required to show your redemption ticket (redemption only) and/or confirmation email (if required) for verification purpose. \n5. All completed and confirmed transactions cannot be postponed, cancelled or refunded under any circumstances. \n6. It is a mandatory requirement for all guests to sign a release of liability form on-site on day of visit before the collection of a bicycle/kick scooter, or be denied admission. \n7. On how to get there and check out our latest operating hours, please visit www.gogreenecoadventure.com\n8. This offer is applicable on:Visa Platinum, Visa Gold, Visa Classic, Visa Electron, Visa Infinite, Visa Signature, Visa Signature Preferred, Visa Traditional, Visa Traditional Rewards, Visa Business, Visa Corporate, Visa Purchasing, Visa Signature Business, Visa Platinum Business, Visa Infinite Business, Visa Infinite Privilege, Visa UHNW, Visa Gold Business, Visa Rewards",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_Gogreen_Holdings_Pte_Ltd_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "local", "transportation", "bike-rental", "rental-services" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 7.7107672,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "b0c5696f-4306-3cb6-97de-5664e897a83f",
"name" : "Grand Nile Tower",
"description" : "Set along the River Nile, this upscale hotel in a high-rise tower is 2 km from the Egyptian Museum, and 19 km from the pyramids and Great Sphinx at Giza",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1442_Grand_Nile_Tower.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "BB1442",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1442_Grand_Nile_Tower.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB1442_Grand_Nile_Tower_New_Logo.webp.webp",
"url" : "https://www.blackbooktravels.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/BB1442-GrandNileTower.webp.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "81410",
"name" : "Get up to 15% off on your stay at Grand Nile tower",
"description" : "Get up to 15% off on your stay at Grand Nile tower till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1442-GrandNileTower_New_Image.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=grand-nile-tower-hotel-1393094",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : Corniche El Nil, Cairo, Egypt ; Contact : 20223651234/Info@GrandNileTower.com\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1442-GrandNileTower_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "2.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "non-smoking-room", "sun-terrace", "tv", "5-star", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "backpacker", "family-room", "couple", "room-service", "disabled-friendly", "concierge", "kids-and-family", "garden", "restaurant", "laundry-service", "dry-cleaning", "airport", "airport-transportation", "luggage-storage", "modern-design", "paid-parking", "mini-bar", "soundproof-room", "shuttle-service", "swimming-pool", "fitness-centre", "allergy-free-room", "large-group", "free-internet", "air-conditioner", "hair-dryer", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 7.7107672,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "f4d268af-a354-3989-be19-50d284fc7c3c",
"name" : "Saudia Umra",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/umrah--banner-1600.webp",
"externalId" : "DP360",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/umrah--banner-1600.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Umrah-logo-1.webp",
"url" : "https://umrahbysaudia.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/umrah--banner-800.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "206802",
"name" : "Get 40% off up to SAR 1000 on Umrah packages with Saudia using ADIB Visa cards",
"description" : "Get 40% off up to SAR 1000 on Umrah packages with Saudia using ADIB Visa cards till 17-06-2023\nOnline offer",
"validFrom" : "2023-04-27T00:00:00.389Z",
"validTo" : "2026-06-17T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "UM40",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/umrah--banner-1600.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://umrahbysaudia.com/",
"termsAndConditions" : "1.Booking period is until Jun 17 2023 , with a travel period until December 31 , 2023\n2.A valid ADIB Visa Covered or Debit Card must be used for the payment.\n3.The offer is valid for Umrah packages only\n4.Not valid in conjunction with any other promotion or offer\n5.Saudia Umrah terms and conditions apply to the extent that such terms and conditions do not contradict with the General Terms and Conditions of ADIB Covered Card and the Terms and Conditions for Accounts and Islamic Banking Services.\n6.By participating in this Campaign, customer agrees to be bound by all other ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services that prohibit using any ADIB Card to purchase any non-Shari'a compliant products or services as determined by ADIB's Internal Shari’a Supervisory Committee including but not limited to alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.\n7.The above mentioned discounts will be fully paid by Visa.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/umrah--banner-1600.webp",
"offerType" : "offline coupon",
"offerSource" : "adib",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "international", "transportation", "air-ticket-booking", "airline" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 7.7107672,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "6c96156e-5c91-31b3-8452-69b7d52a3d24",
"name" : "TBR Global Chauffeuring",
"description" : "Enhance your travel experience with TBR's airport transfer limousine service! TBR limousine services are available in over 3,000 cities across the world. With our 24/7 on the road assistance service and passenger liability insurance up to pound10,000,000, we are dedicated to providing customers with a safe and reliable journey.",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/VB_TBR_Global_Chauffeuring_MerchantImage.webp",
"externalId" : "DP352",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_TBR_Global_Chauffeuring_MerchantImage.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/VB_TBR_Global_Chauffeuring_Logo.webp",
"url" : "https://www.tbrglobal.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/VB_TBR_Global_Chauffeuring_Banner.webp",
"tasteMatchScore" : 84
},
"offers" : [ {
"id" : "202959",
"name" : "Get 10% off on retail rates at TBR Global Chauffeuring",
"description" : "Get 10% off on retail rates at TBR Global Chauffeuring till 31-12-2023\nOnline offer",
"validFrom" : "2023-01-01T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "VP2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_TBR_Global_Chauffeuring_OfferImage.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.tbrglobal.com/visa",
"termsAndConditions" : "1. Offer valid from January 1, 2023 - December 31, 2023. \n2. Offer is valid for Visa Platinum cards issued in Asia Pacific. \n3. Booking must be made online via https://www.tbrglobal.com/visa \n4. Payment must be settled with a valid Visa Platinum card. \n5. Booking is subject to availability. \n6. Booking for the services must be made at least 72 hours prior to service commencement. \n7. Additional charges for extra-stops, cancellation/amendment fees and waiting time charges will apply. \n8. For Airport pick-up, 60 minutes waiting time is allowed. For all other pick-up, 15 minute waiting time is allowed. \n9. Luxury airport transfer imposes limits on the number of passengers per car. The business sedan type vehicle service is limited to a maximum of 3 passengers per car. People Carrier type vehicle is limited to a maximum of 6 passengers per car. \n10. Please indicate when baby strollers, wheel chairs and golf bags are carried on as vehicle type change & surcharge will apply. \n11. For any cancellations made within 48 hours prior to the scheduled service, there is a 100% charge equivalent to full invoice. \n12. For any amendment made less than 48 hours in advance of the service, there will be a US$10 amendment fee plus the change fee imposed, which varies depending on the airport. \n13. If your card is not eligible for the discount fare, the fare difference will be charged. \n14. Offer not to be used in conjunction with other promotions. \n15. Visa will use best efforts to ensure the offers are provided as described, but cardholders shall not make any claim or seek compensation against Visa, even in the event that any of the offers are not provided or provided as described (whether or not such non provision is due to fault, negligence on the part of Visa). \n16. Visa shall not be liable in any manner whatsoever or howsoever for any loss or damage or claims that may arise out of (a) usage or attempted usage of any of the offers, or of any services provided by TBR Global, or (b) any refusal or failure on the part of TBR Global to provide or honour any of the offers, or benefits or privileges given under the offers, for any reason whatsoever. \n17. Visa reserves the absolute right to withdraw and/or alter any of the terms and conditions of any of the offers at any time without giving any notice. Cancellation and Charges: Cancellation with fewer than 48 hours of notification and no show will be considered as utilization of the service.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_TBR_Global_Chauffeuring_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "VISA_SPECIFIC"
}, {
"id" : "202961",
"name" : "Get 20% off on retail rates at TBR Global Chauffeuring",
"description" : "Get 20% off on retail rates at TBR Global Chauffeuring till 31-12-2023\nOnline offer",
"validFrom" : "2023-01-01T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "VI2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_TBR_Global_Chauffeuring_OfferImage.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.tbrglobal.com/visa",
"termsAndConditions" : "1. Offer valid from January 1, 2023 - December 31, 2023. \n2. Offer is valid for Visa Infinite cards issued in Asia Pacific. \n3. Booking must be made online via https://www.tbrglobal.com/visa \n4. Payment must be settled with a valid Visa Infinite card. \n5. Booking is subject to availability. \n6. Booking for the services must be made at least 72 hours prior to service commencement. \n7. Additional charges for extra-stops, cancellation/amendment fees and waiting time charges will apply. \n8. For Airport pick-up, 60 minutes waiting time is allowed. For all other pick-up, 15 minute waiting time is allowed. \n9. Luxury airport transfer imposes limits on the number of passengers per car. The business sedan type vehicle service is limited to a maximum of 3 passengers per car. People Carrier type vehicle is limited to a maximum of 6 passengers per car. \n10. Please indicate when baby strollers, wheel chairs and golf bags are carried on as vehicle type change & surcharge will apply. \n11. For any cancellations made within 48 hours prior to the scheduled service, there is a 100% charge equivalent to full invoice. \n12. For any amendment made less than 48 hours in advance of the service, there will be a US$10 amendment fee plus the change fee imposed, which varies depending on the airport. \n13. If your card is not eligible for the discount fare, the fare difference will be charged. \n14. Offer not to be used in conjunction with other promotions. \n15. Visa will use best efforts to ensure the offers are provided as described, but cardholders shall not make any claim or seek compensation against Visa, even in the event that any of the offers are not provided or provided as described (whether or not such non provision is due to fault, negligence on the part of Visa). \n16. Visa shall not be liable in any manner whatsoever or howsoever for any loss or damage or claims that may arise out of (a) usage or attempted usage of any of the offers, or of any services provided by TBR Global, or (b) any refusal or failure on the part of TBR Global to provide or honour any of the offers, or benefits or privileges given under the offers, for any reason whatsoever. \n17. Visa reserves the absolute right to withdraw and/or alter any of the terms and conditions of any of the offers at any time without giving any notice. Cancellation and Charges: Cancellation with fewer than 48 hours of notification and no show will be considered as utilization of the service.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_TBR_Global_Chauffeuring_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "VISA_SPECIFIC"
}, {
"id" : "202960",
"name" : "Get 15% off on retail rates at TBR Global Chauffeuring",
"description" : "Get 15% off on retail rates at TBR Global Chauffeuring till 31-12-2023\nOnline offer",
"validFrom" : "2023-01-01T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "VS2023",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_TBR_Global_Chauffeuring_OfferImage.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.tbrglobal.com/visa",
"termsAndConditions" : "1. Offer valid from January 1, 2023 - December 31, 2023. \n2. Offer is valid for Visa Signature cards issued in Asia Pacific. \n3. Booking must be made online via https://www.tbrglobal.com/visa \n4. Payment must be settled with a valid Visa Signature card. \n5. Booking is subject to availability. \n6. Booking for the services must be made at least 72 hours prior to service commencement. \n7. Additional charges for extra-stops, cancellation/amendment fees and waiting time charges will apply. \n8. For Airport pick-up, 60 minutes waiting time is allowed. For all other pick-up, 15 minute waiting time is allowed. \n9. Luxury airport transfer imposes limits on the number of passengers per car. The business sedan type vehicle service is limited to a maximum of 3 passengers per car. People Carrier type vehicle is limited to a maximum of 6 passengers per car. \n10. Please indicate when baby strollers, wheel chairs and golf bags are carried on as vehicle type change & surcharge will apply. \n11. For any cancellations made within 48 hours prior to the scheduled service, there is a 100% charge equivalent to full invoice. \n12. For any amendment made less than 48 hours in advance of the service, there will be a US$10 amendment fee plus the change fee imposed, which varies depending on the airport. \n13. If your card is not eligible for the discount fare, the fare difference will be charged.\n14. Offer not to be used in conjunction with other promotions. \n15. Visa will use best efforts to ensure the offers are provided as described, but cardholders shall not make any claim or seek compensation against Visa, even in the event that any of the offers are not provided or provided as described (whether or not such non provision is due to fault, negligence on the part of Visa). \n16. Visa shall not be liable in any manner whatsoever or howsoever for any loss or damage or claims that may arise out of (a) usage or attempted usage of any of the offers, or of any services provided by TBR Global, or (b) any refusal or failure on the part of TBR Global to provide or honour any of the offers, or benefits or privileges given under the offers, for any reason whatsoever. \n17. Visa reserves the absolute right to withdraw and / or alter any of the terms and conditions of any of the offers at any time without giving any notice. Cancellation and Charges: Cancellation with fewer than 48 hours of notification and no show will be considered as utilization of the service.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/VB_TBR_Global_Chauffeuring_OfferImage.webp",
"offerType" : "offline coupon",
"offerSource" : "visa",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0"
},
"appplicableForClients" : "VISA_SPECIFIC"
} ],
"tags" : [ "taxi", "transportation", "rental-services" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false,
"searchScore" : 7.7107672,
"searchTermTagsMatched" : false,
"tagsExclusion" : false,
"matchType" : [ "category" ]
},
"liked" : false,
"wishlisted" : false
} ],
"partialMatches" : null,
"filters" : {
"Offer Type" : [ "Offline Coupon", "Card Offers", "Online Coupon" ],
"Merchant Type" : [ "Online" ]
}
}
6.1.26. Example 18: Get recent search history of an user
Get the list of search words recently searched by an user.
In Swagger UI, Expand 'Search API' and select '/api/v3/merchant/search/recent'.
| Name | Description |
|---|---|
|
User access token |
| Parameter | Description |
|---|---|
|
Number of recent cities to return |
|
Language (default: en) |
Key in inputs as below:
GET /api/v3/merchant/search/recent?limit=5&lang=en HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
Host: localhost:8080
And you should be getting output as below, which provides recent search history of an user.
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 107
{
"response" : [ {
"searchText" : "travel",
"timestamp" : "2026-04-21T05:36:27.478+00:00"
} ]
}
6.1.27. Example 19: Clear recent search history of an user
In Swagger UI, Expand 'Search API' and select DELETE method of '/api/v3/merchant/search/'.
| Name | Description |
|---|---|
|
User access token |
Key in input as below:
DELETE /api/v3/merchant/search HTTP/1.1
Content-Type: application/json
User-Access-Token: jina
Host: localhost:8080
And you should be getting output as below, which provides boolean value indicating the status of the operation
HTTP/1.1 404 Not Found
Content-Type: application/json
Content-Length: 92
{
"status" : 404,
"message" : "No search history document present for the given token"
}
6.1.28. Example 20: Get popular search
Get the list of search words searched for maximum number of times.
In Swagger UI, Expand 'Search API' and select '/api/v3/merchant/popular/search'.
| Name | Description |
|---|---|
|
User access token |
| Parameter | Description |
|---|---|
|
Language (default: en) |
Key in inputs as below:
GET /api/v3/merchant/popular/search?lang=en HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
Host: localhost:8080
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 205
{
"mamas & papas" : 776,
"cafe" : 300,
"sports" : 336,
"dining" : 305,
"accessories" : 291,
"online" : 297,
"apparel" : 300,
"miscellaneous stores" : 296,
"retail" : 608,
"food" : 506
}
6.1.29. Example 21: Get tag list for all categories
Get the list of tags for all categories.
In Swagger UI, Expand 'Data List API' and select '/api/v3/list/category/tags'.
Unresolved directive in examples.adoc - include::/var/lib/jenkins/workspace/feature_release-candidate-3.0.48/maya-enterprise-choice-platform/target/generated-snippets/getTagListForAllCateg/auto-request-parameters.adoc[]
Key in inputs as below:
Unresolved directive in examples.adoc - include::/var/lib/jenkins/workspace/feature_release-candidate-3.0.48/maya-enterprise-choice-platform/target/generated-snippets/tagListForAllCateg/http-request.adoc[]
And you should be getting output as below:
Unresolved directive in examples.adoc - include::/var/lib/jenkins/workspace/feature_release-candidate-3.0.48/maya-enterprise-choice-platform/target/generated-snippets/testGetTagListForAllCateg/http-response.adoc[]
6.1.30. Example 22: Get tag list for a specific category
Get the list of tags for the given category.
In Swagger UI, Expand 'Data List API' and select '/api/v3/list/category/{category}/tags'.
Unresolved directive in examples.adoc - include::/var/lib/jenkins/workspace/feature_release-candidate-3.0.48/maya-enterprise-choice-platform/target/generated-snippets/testGetTagListForSpecificCateg/auto-request-parameters.adoc[]
Key in inputs as below:
Unresolved directive in examples.adoc - include::/var/lib/jenkins/workspace/feature_release-candidate-3.0.48/maya-enterprise-choice-platform/target/generated-snippets/testGetTagListForSpecificCateg/http-request.adoc[]
To know possible categories, use get categories list API.
And you should be getting output as below:
Unresolved directive in examples.adoc - include::/var/lib/jenkins/workspace/feature_release-candidate-3.0.48/maya-enterprise-choice-platform/target/generated-snippets/testGetTagListForSpecificCateg/http-response.adoc[]
6.1.31. Example 23: API to update user consent
In Swagger UI, Expand 'User Profile and Campaigns' and select '/api/v3/user/consent'
| Name | Description |
|---|---|
|
User access token |
| Path | Type | Description |
|---|---|---|
|
|
User consent for receiving notifications, true or false |
POST /api/v3/user/consent HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
Content-Length: 24
Host: localhost:8080
{
"consent" : "true"
}
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 169
{
"status" : "SUCCESS",
"response" : null,
"message" : "Notification consent updated successfully",
"error" : false,
"badRequest" : false,
"success" : true
}
6.1.32. Example 24: API to get user vouchers
In Swagger UI, Expand 'User Profile and Campaigns' and select '/api/v3/user/vouchers'
| Name | Description |
|---|---|
|
User access token |
| Parameter | Description |
|---|---|
|
Language |
|
Number of months to fetch vouchers |
|
Request timestamp |
GET /api/v3/user/vouchers?lang=en&totalMonths=12&servedAt=2026-04-21T05:36:24.562Z HTTP/1.1
Content-Type: application/json
User-Access-Token: 04025959-b191-38f9-9e3f-924f0940515f
Host: localhost:8080
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 13297
{
"vouchers" : {
"2026-3" : [ {
"id" : "001",
"detailedTandCLink" : "\nhttps://offers.smartbuy.hdfcbank.com/offer_details/hdfc-bank-credit-card/22084/Z2Wjm2c=",
"promoCode" : "350",
"voucherDescription" : "Disclaimer: Smart Buy is a platform for communication of offers extended by Merchants to HDFC bank's Customers. HDFC bank is only communicating the offers extended by Merchants to its Customers and not selling/rendering any of these products/services. HDFC bank is merely facilitating the payment to its Customers by providing the Payment Gateway Services. HDFC bank is neither guaranteeing nor making any representation of the same. HDFC bank is not responsible for sales/quality/features of the products/services under the offers.",
"termsAndCondition" : "1. This offer is valid on retail spends and on transactions made through HDFC Bank Credit Cards between April 6, 2023 and April 30, 2023\n2. This offer is not valid on cash withdrawal and loan products like EasyEMI spends, Dial-An-EMI (Smart EMI), Cash-on-Call, Balance Transfer, Balance Transfer on EMI, Personal Loan on Credit Card, etc.\n3. This offer is not valid on rent payments\n4. Vouchers (EGV) will be shared to eligible customers by July 31, 2023\n5. Returned purchases, disputed or unauthorized/fraudulent transactions, EMI�s and \\card membership fees will not be considered for this offer.\n6. Eligible Cardholders achieving the spend threshold (for the net amount spent excluding cancellation and refunds) will qualify for offer.\n7. Corporate Cards, Commercial Cards, Dealer Cards, Distributor Cards, Business Cards, Value Plus Cards and Staff Cards are excluded from the promotion.\n8. No two offers can be combined at any point in time.\n9. Card Holder/s whose account has been classified as delinquent/inactive before or during the currency of the Program, or when the gift is to be collected, will not be eligible for the benefits of the Program.\n10. This offer is non-encashable, not extendable and non-negotiable.\n11. HDFC Bank shall not be liable in any manner whatsoever if customer�s transaction fails due to technical issue\n12. The transaction date registered in HDFC bank�s system would be considered final for offer\n13. If a card member has more than 1 (one) HDFC Bank Credit Card, spends on the cards cannot be clubbed by the card member in order to qualify for the said offer.\n14. This offer is valid for Indian residents and citizens only.\n15. Nothing herein amounts to a commitment by HDFC Bank to conduct further, similar or other offers.\n16. HDFC Bank Cardholders are not bound in any way to participate in this offer. Any participation is voluntary and the offer is being made purely on a �best effort� basis.\n17. Above offers is by way of a special offer for select HDFC Bank Credit Card members only and nothing contained herein shall prejudice or affect the terms and conditions of the Card member agreement. The terms of the above offers shall be in addition to and not in derogation of the terms contained in the Card members Agreement. \n18. HDFC Bank reserves the right, at any time, without prior notice and without assigning any reason whatsoever, to add / alter / modify / change or vary all of these terms and conditions or to replace, wholly or in part, this offer by another offer, whether similar to this offer or not, or to extend or withdraw it altogether.\n19. All disputes, if any, arising out of or in connection with or as a result of above offers or otherwise relating hereto shall be subject to the exclusive jurisdiction of the competent courts / tribunals in Chennai only, irrespective of whether courts / tribunals in other areas have concurrent or similar jurisdiction.\n20. Please raise any query pertaining to the offer within 60 days from the offer fulfilment date. Any queries post this period, will not be considered.\n21.The offer is only for select customers to whom the marketing campaign has been sent\n22. eGV issued to the eligible customers shall be valid only till the date of expiry as instructed by the specific brand and the eGV cannot be used after such date of expiry.\n23. eGV is non-reloadable and not transferable under any circumstances.",
"voucherCode" : "TEST125",
"endDateTime" : "2026-04-30T00:00:00.389Z",
"voucherValue" : "550",
"voucherStatus" : "ACTIVE",
"uploadDateTime" : "2026-03-25T00:00:00.389Z"
} ],
"2024-1" : [ {
"id" : "003",
"detailedTandCLink" : "\nhttps://offers.smartbuy.hdfcbank.com/offer_details/hdfc-bank-credit-card/22084/Z2Wjm2c=",
"promoCode" : "550",
"voucherDescription" : "Disclaimer: Smart Buy is a platform for communication of offers extended by Merchants to HDFC bank's Customers. HDFC bank is only communicating the offers extended by Merchants to its Customers and not selling/rendering any of these products/services. HDFC bank is merely facilitating the payment to its Customers by providing the Payment Gateway Services. HDFC bank is neither guaranteeing nor making any representation of the same. HDFC bank is not responsible for sales/quality/features of the products/services under the offers.",
"termsAndCondition" : "1. This offer is valid on retail spends and on transactions made through HDFC Bank Credit Cards between April 6, 2023 and April 30, 2023\n2. This offer is not valid on cash withdrawal and loan products like EasyEMI spends, Dial-An-EMI (Smart EMI), Cash-on-Call, Balance Transfer, Balance Transfer on EMI, Personal Loan on Credit Card, etc.\n3. This offer is not valid on rent payments\n4. Vouchers (EGV) will be shared to eligible customers by July 31, 2023\n5. Returned purchases, disputed or unauthorized/fraudulent transactions, EMI�s and \\card membership fees will not be considered for this offer.\n6. Eligible Cardholders achieving the spend threshold (for the net amount spent excluding cancellation and refunds) will qualify for offer.\n7. Corporate Cards, Commercial Cards, Dealer Cards, Distributor Cards, Business Cards, Value Plus Cards and Staff Cards are excluded from the promotion.\n8. No two offers can be combined at any point in time.\n9. Card Holder/s whose account has been classified as delinquent/inactive before or during the currency of the Program, or when the gift is to be collected, will not be eligible for the benefits of the Program.\n10. This offer is non-encashable, not extendable and non-negotiable.\n11. HDFC Bank shall not be liable in any manner whatsoever if customer�s transaction fails due to technical issue\n12. The transaction date registered in HDFC bank�s system would be considered final for offer\n13. If a card member has more than 1 (one) HDFC Bank Credit Card, spends on the cards cannot be clubbed by the card member in order to qualify for the said offer.\n14. This offer is valid for Indian residents and citizens only.\n15. Nothing herein amounts to a commitment by HDFC Bank to conduct further, similar or other offers.\n16. HDFC Bank Cardholders are not bound in any way to participate in this offer. Any participation is voluntary and the offer is being made purely on a �best effort� basis.\n17. Above offers is by way of a special offer for select HDFC Bank Credit Card members only and nothing contained herein shall prejudice or affect the terms and conditions of the Card member agreement. The terms of the above offers shall be in addition to and not in derogation of the terms contained in the Card members Agreement. \n18. HDFC Bank reserves the right, at any time, without prior notice and without assigning any reason whatsoever, to add / alter / modify / change or vary all of these terms and conditions or to replace, wholly or in part, this offer by another offer, whether similar to this offer or not, or to extend or withdraw it altogether.\n19. All disputes, if any, arising out of or in connection with or as a result of above offers or otherwise relating hereto shall be subject to the exclusive jurisdiction of the competent courts / tribunals in Chennai only, irrespective of whether courts / tribunals in other areas have concurrent or similar jurisdiction.\n20. Please raise any query pertaining to the offer within 60 days from the offer fulfilment date. Any queries post this period, will not be considered.\n21.The offer is only for select customers to whom the marketing campaign has been sent\n22. eGV issued to the eligible customers shall be valid only till the date of expiry as instructed by the specific brand and the eGV cannot be used after such date of expiry.\n23. eGV is non-reloadable and not transferable under any circumstances.",
"voucherCode" : "TEST1234",
"endDateTime" : "2024-01-31T00:00:00.389Z",
"voucherValue" : "200",
"voucherStatus" : "CLAIMED",
"uploadDateTime" : "2024-01-01T00:00:00.389Z"
}, {
"id" : "002",
"detailedTandCLink" : "\nhttps://offers.smartbuy.hdfcbank.com/offer_details/hdfc-bank-credit-card/22084/Z2Wjm2c=",
"promoCode" : "450",
"voucherDescription" : "Disclaimer: Smart Buy is a platform for communication of offers extended by Merchants to HDFC bank's Customers. HDFC bank is only communicating the offers extended by Merchants to its Customers and not selling/rendering any of these products/services. HDFC bank is merely facilitating the payment to its Customers by providing the Payment Gateway Services. HDFC bank is neither guaranteeing nor making any representation of the same. HDFC bank is not responsible for sales/quality/features of the products/services under the offers.",
"termsAndCondition" : "1. This offer is valid on retail spends and on transactions made through HDFC Bank Credit Cards between April 6, 2023 and April 30, 2023\n2. This offer is not valid on cash withdrawal and loan products like EasyEMI spends, Dial-An-EMI (Smart EMI), Cash-on-Call, Balance Transfer, Balance Transfer on EMI, Personal Loan on Credit Card, etc.\n3. This offer is not valid on rent payments\n4. Vouchers (EGV) will be shared to eligible customers by July 31, 2023\n5. Returned purchases, disputed or unauthorized/fraudulent transactions, EMI�s and \\card membership fees will not be considered for this offer.\n6. Eligible Cardholders achieving the spend threshold (for the net amount spent excluding cancellation and refunds) will qualify for offer.\n7. Corporate Cards, Commercial Cards, Dealer Cards, Distributor Cards, Business Cards, Value Plus Cards and Staff Cards are excluded from the promotion.\n8. No two offers can be combined at any point in time.\n9. Card Holder/s whose account has been classified as delinquent/inactive before or during the currency of the Program, or when the gift is to be collected, will not be eligible for the benefits of the Program.\n10. This offer is non-encashable, not extendable and non-negotiable.\n11. HDFC Bank shall not be liable in any manner whatsoever if customer�s transaction fails due to technical issue\n12. The transaction date registered in HDFC bank�s system would be considered final for offer\n13. If a card member has more than 1 (one) HDFC Bank Credit Card, spends on the cards cannot be clubbed by the card member in order to qualify for the said offer.\n14. This offer is valid for Indian residents and citizens only.\n15. Nothing herein amounts to a commitment by HDFC Bank to conduct further, similar or other offers.\n16. HDFC Bank Cardholders are not bound in any way to participate in this offer. Any participation is voluntary and the offer is being made purely on a �best effort� basis.\n17. Above offers is by way of a special offer for select HDFC Bank Credit Card members only and nothing contained herein shall prejudice or affect the terms and conditions of the Card member agreement. The terms of the above offers shall be in addition to and not in derogation of the terms contained in the Card members Agreement. \n18. HDFC Bank reserves the right, at any time, without prior notice and without assigning any reason whatsoever, to add / alter / modify / change or vary all of these terms and conditions or to replace, wholly or in part, this offer by another offer, whether similar to this offer or not, or to extend or withdraw it altogether.\n19. All disputes, if any, arising out of or in connection with or as a result of above offers or otherwise relating hereto shall be subject to the exclusive jurisdiction of the competent courts / tribunals in Chennai only, irrespective of whether courts / tribunals in other areas have concurrent or similar jurisdiction.\n20. Please raise any query pertaining to the offer within 60 days from the offer fulfilment date. Any queries post this period, will not be considered.\n21.The offer is only for select customers to whom the marketing campaign has been sent\n22. eGV issued to the eligible customers shall be valid only till the date of expiry as instructed by the specific brand and the eGV cannot be used after such date of expiry.\n23. eGV is non-reloadable and not transferable under any circumstances.",
"voucherCode" : "TEST125",
"endDateTime" : "2024-01-31T00:00:00.389Z",
"voucherValue" : "200",
"voucherStatus" : "EXPIRED",
"uploadDateTime" : "2024-01-01T00:00:00.389Z"
} ]
}
}
6.2. Bazaar App Specific APIs
The front-end of this App is provided by Crayon. It can be Mobile App or Web App. The below APIs are specific to this application
6.2.1. Example 1: Get user profile
Get profile details for a given user
In Swagger UI, Expand 'User Profile and Campaigns' and select '/api/v3/user/profile'
| Name | Description |
|---|---|
|
User access token |
Key in inputs as below:
GET /api/v3/user/profile HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
Host: localhost:8080
And you should be getting output as below, which provides profile details of user:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 333
{
"id" : "testuser",
"preferredCategories" : {
"dining" : 12.0,
"travel" : 1474.0,
"jewellery" : 1.0,
"entertainment" : 10.0,
"retail stores" : 10323.0,
"miscellaneous stores" : 1.0,
"apparel and accessories" : 2.0,
"personal service providers" : 21.0
},
"userSegment" : "CSC",
"dowId" : 0
}
6.2.2. Example 2: To get all offers page details
To get all items for all offer page
In Swagger UI, Expand 'Choice API' and select GET method of '/api/v3/items'
| Name | Description |
|---|---|
|
User access token (required) |
|
Client asset identifier (default: WEB_APP) |
| Parameter | Description |
|---|---|
|
Set this to 'INTERNATIONAL' only for international offers; otherwise, leave it blank |
| Path | Type | Description |
|---|---|---|
|
|
Known user ID, if available |
|
|
User location details |
|
|
Pagination offset (default 0) |
|
|
Pagination limit (default 20) |
|
|
Whether to include offers (default false) |
|
|
Language for the response (default en) |
|
|
Filters as key-value pairs |
|
|
Category filter values, e.g., [All] |
|
|
Field to sort the results by |
|
|
Request timestamp in ISO-8601 format |
|
|
Whether this is the first page load |
|
|
Indicates if it is a hyperlocal page (default false) |
Key in inputs as below:
POST /api/v3/items HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Content-Length: 262
Host: localhost:8080
{
"knownUserId" : null,
"location" : null,
"offset" : 0,
"limit" : 1,
"includeOffers" : false,
"lang" : "en",
"filters" : {
"category" : [ "All" ]
},
"sortBy" : null,
"servedAt" : null,
"pageOnLoad" : false,
"hyperLocalPage" : false
}
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 6786
{
"id" : "09044324-22cb-4ddc-b72f-c7f13b6b4c62",
"choiceItems" : [ {
"item" : {
"id" : "3a275f34-0c57-35e4-9dc1-72fa3ccd4e0f",
"name" : "R&B Fashion",
"category" : "apparel and accessories",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/r&b_merchant.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "BO3505",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/r&b_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/R&B_logo01.webp",
"url" : "https://en-ae.randbfashion.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/r&b_banner.webp"
},
"offers" : [ {
"id" : "206486",
"name" : "Get up to 15% discount on your purchase at R&B Fashion",
"description" : "Get up to 15% discount on your purchase at R&B Fashion till 31-12-2023\nOnline offer",
"validFrom" : "2023-05-03T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "MX38",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/r&b_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://en-ae.randbfashion.com/",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/r&b_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "arabyads",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "8.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "100983",
"name" : "Get up to 15% off on your purchase at R&B Fashion",
"description" : "Get up to 15% off on your purchase at R&B Fashion till 25-11-2022\nOnline offer",
"validFrom" : "2022-08-07T00:00:00.389Z",
"validTo" : "2026-11-25T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "R36",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/42990_R&BFashion_Offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://en-ae.randbfashion.com/?aff_sub=testuser&aff_sub2=BO3505&aff_sub3=100983&aff_sub4=crayon",
"termsAndConditions" : "1.The offer is valid upto 25-11-2022\n2.The offer is valid for Fashion,Accessories only\n3.The categories/products which are excluded from this offer are: N/A\n4.The offer is applicable for new & repeat users\n5.The offer is valid on app & website purchases only\n6.Coupons are applicable for ADIB card users only\n7.Coupon is applicable for online purchase only\n8.Accidental loss of coupon shall not be covered \n9.Coupons are not transferable \n10.Coupons cannot be replaced if lost.\n11.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/42990_R&BFashion_Offer.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "8.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "t-shirts", "regular-retail-store", "winter-wear", "girl's-clothing", "formal-wear", "boy's-clothing", "jackets-and-blazers", "sleep-wear", "daily-clothing", "loungewear", "online-and-in-store", "sweaters", "men's-clothing", "women's-clothing", "dresses", "pants", "occasional-clothing", "jeans", "casual-wear", "clothing-store", "active-and-sports-wear", "shirts", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
} ],
"options" : null,
"total" : 423,
"filters" : { }
}
6.2.3. Example 3: Get Nearby Offers
Retrieve a list of Nearby (hyperlocal) offers using filters, limit, and offset parameters.
In Swagger UI, expand "Choice API" and select /api/v3/items.
| Name | Description |
|---|---|
|
User access token (required) |
|
Client asset identifier (default: WEB_APP) |
| Parameter | Description |
|---|---|
|
Set this to 'INTERNATIONAL' only for international offers; otherwise, leave it blank |
| Path | Type | Description |
|---|---|---|
|
|
Known user ID, if available |
|
|
User location details |
|
|
Pagination offset (default 0) |
|
|
Pagination limit (default 20) |
|
|
Whether to include offers (default false) |
|
|
Language for the response (default en) |
|
|
Filters as key-value pairs |
|
|
Category filter values, e.g., [All] |
|
|
Field to sort the results by |
|
|
Request timestamp in ISO-8601 format |
|
|
Whether this is the first page load |
|
|
Indicates if it is a hyperlocal page i.e. Nearby Offers page (default false) |
Provide the request body as shown below:
POST /api/v3/items HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Content-Length: 261
Host: localhost:8080
{
"knownUserId" : null,
"location" : null,
"offset" : 0,
"limit" : 1,
"includeOffers" : false,
"lang" : "en",
"filters" : {
"category" : [ "All" ]
},
"sortBy" : null,
"servedAt" : null,
"pageOnLoad" : false,
"hyperLocalPage" : true
}
And you should be getting the output as shown below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 3075
{
"id" : "0d76a729-701a-46c7-ae2b-f9db570c3922",
"choiceItems" : [ {
"item" : {
"id" : "aec6fd93-dcd0-33c9-acb2-c6cd3a72a422",
"name" : "Baskin Robin inc",
"category" : "dining",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/talabat-logo.webp",
"curatedImage" : "",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Talabat_MerchantImage.webp",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Talabat_Banner.webp",
"url" : "https://ebay.com",
"externalId" : "HDFC105792",
"dominantColorCode" : "",
"distance" : 1024.1,
"totalViews" : 9
},
"offers" : [ {
"id" : "415174",
"name" : "15% off on Total Bill",
"description" : "<p>15% off on Total Bill</p>",
"validFrom" : "2026-04-09T00:00:00.389Z",
"validTo" : "2026-05-28T23:59:59.389Z",
"partner" : true,
"isOnline" : false,
"sensitiveFlag" : false,
"offerActive" : true,
"locations" : [ "1044944" ],
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : "0.0",
"longitude" : "0.0"
} ],
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Baskin_robins_logo_new.webp",
"curatedOfferImage" : "",
"offerSourceImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Baskin_robins_logo_new.webp",
"redemptionCode" : "",
"cashbackValue" : 15.0,
"currency" : "",
"offerType" : "card linked",
"offerStatus" : "active",
"url" : "https://ebay.com",
"howToRedeem" : "Visit your nearest store, show the offer communication before billing and use your HDFC Bank Cards for this discount.",
"payoutType" : "cpa_percentage",
"offerSource" : "hdfc",
"termsAndConditions" : "<p>T&C</p>",
"offerVariant" : ""
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "ALL CREDIT CARDS (EXCEPT CO-BRANDED)", "ALL CREDIT/DEBIT CARDS (EXCEPT CO-BRANDED)", "ALL DEBIT CARDS", "CONSUMER LOANS", "DINERS BLACK", "INFINIA", "OTHER CREDIT CARDS", "REGALIA", "TATA NEU INFINITY", "TATA NEU PLUS" ],
"applicableChannel" : [ "online", "offline" ]
} ],
"tags" : [ "" ],
"cities" : [ "all", "Chennai", "Chennai" ],
"geoCodes" : [ {
"latitude" : "0.0",
"longitude" : "0.0"
}, {
"latitude" : "13.0029",
"longitude" : "80.2711"
}, {
"latitude" : "13.0417",
"longitude" : "80.1302"
} ],
"isOnline" : false,
"merchantType" : [ "offline" ],
"isHyperLocal" : true
},
"liked" : false,
"wishlisted" : false
} ],
"options" : null,
"total" : 12,
"filters" : { }
}
6.2.4. Example 4: Get International Offers
Retrieve a list of international offers using filters, limit, and offset parameters.
In Swagger UI, expand "Choice API" and select /api/v3/items.
| Name | Description |
|---|---|
|
User access token (required) |
|
Client asset identifier (default: WEB_APP) |
| Parameter | Description |
|---|---|
|
Set this to 'INTERNATIONAL' only for international offers; otherwise, leave it blank |
| Path | Type | Description |
|---|---|---|
|
|
Known user ID, if available |
|
|
User location details |
|
|
Pagination offset (default 0) |
|
|
Pagination limit (default 20) |
|
|
Whether to include offers (default false) |
|
|
Language for the response (default en) |
|
|
Filters as key-value pairs |
|
|
Category filter values, e.g., [All] |
|
|
Field to sort the results by |
|
|
Request timestamp in ISO-8601 format |
|
|
Whether this is the first page load |
|
|
Indicates if it is a hyperlocal page (default false) |
Provide the request body as shown below:
POST /api/v3/items?applicableOfferSource=INTERNATIONAL HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Content-Length: 262
Host: localhost:8080
{
"knownUserId" : null,
"location" : null,
"offset" : 0,
"limit" : 1,
"includeOffers" : false,
"lang" : "en",
"filters" : {
"category" : [ "All" ]
},
"sortBy" : null,
"servedAt" : null,
"pageOnLoad" : false,
"hyperLocalPage" : false
}
And you should be getting the output as shown below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 128
{
"id" : "be6f8972-e687-492d-b187-4b33f0e25084",
"choiceItems" : [ ],
"options" : null,
"total" : 0,
"filters" : { }
}
6.2.5. Example 5: Get a specific International Offer details
Get details of an international offer item
In Swagger UI, Expand 'Choice API' and select '/api/v3/items/{itemId}'
| Name | Description |
|---|---|
|
User access token |
|
Client asset identifier |
| Parameter | Description |
|---|---|
|
Unique identifier of the item (merchant) |
| Parameter | Description |
|---|---|
|
Language (default: en) |
|
User’s city |
|
User’s latitude |
|
User’s longitude |
|
User’s country |
|
Source of applicable offers. |
|
Include expired offers (default: false) |
|
Request timestamp in ISO-8601 format |
Key in inputs as below:
GET /api/v3/items/d808dc8f-6d1a-3468-967e-d1856295e119?lang=en&expiredOffersPage=false&applicableOfferSource=INTERNATIONAL HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: WEB_APP
Host: localhost:8080
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1164
{
"id" : "d808dc8f-6d1a-3468-967e-d1856295e119",
"name" : "International Merchant",
"category" : "apparel and accessories",
"itemType" : "MERCHANT",
"active" : true,
"tags" : [ "" ],
"cities" : [ "Khet Huai Khwang" ],
"geoCodes" : [ {
"latitude" : "13.766677",
"longitude" : "100.574196"
} ],
"isOnline" : false,
"merchantType" : [ "offline" ],
"isHyperLocal" : false,
"image" : "https://dpimages.crayondata.com/high-res-image/dev/InternationalMerchant1762245822703.jpeg",
"dominantColorCode" : "",
"externalId" : "HDFC106075",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/dev/InternationalMerchant1762245822703.jpeg",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/dev/InternationalMerchant1762245827099.png",
"url" : "https://www.amazon.com",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/dev/InternationalMerchant1762245826386.jpeg",
"tasteMatchScoreReason" : "Like this merchant to add it to your taste",
"tasteMatchScore" : 85,
"liked" : false,
"wishlisted" : false,
"filterOffersByLocation" : true,
"offerAvailabilityPartitioned" : false
}
6.2.6. Example 6: Save App feedback given by user
To save feedback given by user for App
In Swagger UI, Expand 'Review API' and select '/api/v3/user/feedback'
| Name | Description |
|---|---|
|
User access token |
| Path | Type | Description |
|---|---|---|
|
|
Rating provided by the user (e.g., 1 to 5) |
|
|
User’s review and suggestions for improvement |
|
|
Topic of the feedback, such as 'Rate the Experience', 'Report an Issue', etc. |
Key in inputs as below:
POST /api/v3/user/feedback HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
Content-Length: 87
Host: localhost:8080
{
"rating" : 3,
"reviewAndSuggestion" : "nice",
"topic" : "Rate the Experience"
}
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 45
{
"status" : 200,
"message" : "Success"
}
6.2.8. Example 7 i): Get Privacy Policy details
In Swagger UI, Expand 'Privacy Policy and Terms of Service API' and select '/api/v3/privacy/docs'
| Parameter | Description |
|---|---|
|
Document type (privacy_policy or terms_of_service) |
|
Language (default: en) |
Key in inputs as below:
GET /api/v3/privacy/docs?type=privacy_policy&lang=en HTTP/1.1
Content-Type: application/json
Host: localhost:8080
And you should be getting output as below, which provides details of privacy_policy or terms_of_service based on type
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 18789
{
"type" : "privacy-policy",
"content" : "<View><Text class='para'><b>YOUR PRIVACY IS IMPORTANT TO US<br/><br/>PROTECTING YOUR PRIVACY IS OUR PRIORITY </b><br/><br/>ADIB (‘the Group’) is committed to protecting your privacy, whether you are an employee, customer, third party or shareholder of the Bank.<br/><br/>Personal information is any information that allows us to identify you and includes details such as your full name, national identity number , passport number, physical addresses, mobile numbers, covered card numbers, debit card numbers, e-mail addresses, transactional data, electronic communications data, payments data, identification details of equipment or terminal appliances, as POS, PC, smartphone, tablet, browser history (log files, cookies etc.) as well as any other information that may allow us to identify you, in accordance with the provisions of applicable laws.<br/><br/>Personal information may include special personal information such as your trade union membership, medical/health status, race, religion, or criminal behaviour. This information is considered to be more sensitive and therefore we apply even stricter controls to this information.<br/><br/><b>WE PROCESS YOUR PERSONAL INFORMATION RESPONSIBLY</b><br/><br/>Upon visiting ADIB’s websites or accessing our Services, you may be asked to provide your name, surname and contact details (including phone number and email address). In some cases, we may also ask you to provide or upload documents (such as your passport, emirates ID, employment details) which will also require authentication prior to upload (e.g. via a One-Time Password sent to you via SMS to your registered mobile number). We also collect technical information about your computer (or mobile device), including your IP address, operating system and browser type, where available, for system administration or for our own commercial purposes. This is statistical data about our website users' browsing actions and patterns.<br/><br/>It is important to note that in order to process your request as a new-to-bank customer to open an account through ADIB Mobile Banking App, you will be required to upload your identification documents such as your Emirates ID, visa and/or passport in addition to your facial image taken through the camera on your mobile device. Your facial image is verified against the documents provided and UAE government database in order to complete our authentication processes and the response from Ministry of Interior including your image is stored on the ADIB database in accordance with the applicable laws and regulations.<br/><br/>We process your personal information to protect your and our legitimate interests and will only collect and process the absolute minimum set of information needed for the stated purpose. In general, ADIB collects and processes your personal information including but not limited to the following purposes:</Text><br/><br/><Text class='listText'>•    To create a record of you on our system based on your relationship with ADIB;</Text><br/><Text class='listText'>•    Processing your personal information for historical, statistical or research purposes where the outcomes are aggregated and analysed to provide you better products and services.</Text><br/><Text class='listText'>•    Prevention of financial crime, including fraud detection and prevention, sanctions screening, adverse media screening, monitoring of anti-money laundering and any financing of terrorist activities.</Text><br/><Text class='listText'>•    Enforcement of our financial and business obligations, including but not limited to the collection of outstanding amounts from you or the security that you have provided in respect of your banking facilities.<br/><Text class='listText'>•    </Text>The sale or transfer of any of our businesses/subsidiaries/legal entities or assets as part of our group transactions.</Text><br/><Text class='listText'>•    Carrying out surveys relating to customer, employee or third-party sentiment to improve our offerings.</Text><br/><Text class='listText'>•    Detecting and preventing misuse or abuse of our websites or services.</Text><br/><br/><Text class='para'>We may collect your personal information primarily from these main sources:</Text><br/><br/><Text class='listText'>•    Personal information provided knowingly and voluntarily by you when you complete a service or product application form, contact or web form, sign up to receive e-mail alerts, participate in surveys, to process any customer requests including feedback. You can choose not to provide certain information, but then you might not be able to take avail certain products / services / communications or alerts.</Text><br/><Text class='listText'>•    Personal information obtained through automated processing such as profiling activities whereby certain conclusions may be reached regarding location (based on IP address), behaviour and devices of visitors to our websites to better understand our customers/visitors in terms of the content that we display on our website, and how to enhance, advertise and market our products and services. This information is captured using browser cookies and we will alert you to these cookies so that you may disable or refuse these cookies, however, some parts of our website may become inaccessible or not function properly if you do so.</Text><br/><Text class='listText'>•    Personal information may also be obtained from other sources such as contracted third parties, credit information agencies and agents that you appoint to represent you. We will only collect personal information from these sources where we are legally entitled or obliged to do so.</Text><br/><Text class='listText'>•    Personal information from public records where you have already made the personal information public.</Text><br/><br/><Text class='para'>Due to the nature of ADIB’s activities, the group predominantly requires personal information to be collected from the indicative categories with the broad purposes for processing as specified below:<br/><br/><b>Customers:</b><br/><br/>ADIB collects and uses your personal information to provide you with the products or services that you have applied for or indicated an interest in. In particular, purposes for collection and processing include:</Text><br/><br/><Text class='listText'>•    </Text>The operation, processing and administration of any products and services provided to you, either contractually or otherwise including responding to your requests and feedback. This may include:</Text><br/><Text class='listText'>      o    Assessing whether you qualify for a finance or covered card.</Text><br/><Text class='listText'>      o    Identifying and verifying your identity, physical address, income and similar information.</Text><br/><Text class='listText'>      o    Assessing your personal financial circumstances and needs when providing any advice and/or products and services to you.</Text><br/><Text class='listText'>•    Designing and developing new products or amending current products to ensure that they are future-fit and meets the needs of our customer segments.</Text><br/><Text class='listText'>•    Analysing your data to create profiles relating to you and for you i.e. profiling and using these profiles to market products or services that may be of interest to you or that we think you will prefer.</Text><br/><Text class='listText'>•    Providing you with information, alerts or updates on our existing products and services or any other aspects of our services, where you've consented to receiving these by registering for them through our services or on our website or otherwise.</Text><br/><Text class='listText'>•    For designing, marketing, advertising of banking / financial services or related products or opportunities available from ADIB and its affiliates and providing the same to you.</Text><br/><Text class='listText'>•    To notify you about changes to our services and for all other incidental and associated purposes relating to the provision of services.</Text><br/><br/><Text class='para'><b>Job applicants:</b><br/><br/>ADIB collects and uses the personal information you share with us to process your job application, including carrying out any background, criminal and reference checks including but not limited to social media, reputation, education, passport verification and bankruptcy checks.<br/><br/>Your personal information will be retained as part of your employee file if you are a successful candidate and retained in line with applicable legislative requirements. If you are not successful, we will retain your information on our talent management system for a period of 2 years so that we may contact you for other suitable roles.<br/><br/><b>Employees (including contractors and third-party managed services):</b><br/><br/>ADIB processes your personal information to create an employee record of you on our system and to facilitate continuous monitoring and fulfilment of mutual employment obligations during your employment with us.<br/><br/><b>Next of kin and Beneficiaries:</b><br/><br/>ADIB creates a record of you on our system for the purposes of identifying you as our customer’s or employee’s next of kin or beneficiary where your details have been provided to us.<br/><br/><b>Third parties:</b><br/><br/>ADIB creates a record of our relationship with you on our system and we process your personal information for due diligence, risk assessment, administrative and payment purposes.<br/><br/><b>YOUR PERSONAL INFORMATION MAY BE SHARED IN LIMITED, NECESSARY CIRCUMSTANCES</b><br/><br/>ADIB is committed to provide you with a seamless service across all our products and services; and in order to enhance our banking relationship with you we may share your personal information with other ADIB group entities ('affiliates') as well as third parties, both locally and internationally, to perform our services, under a legal obligation, regulatory requirement, contractual terms or where we consider it reasonably necessary to do so. In limited instances permitted by the applicable law, your personal information may be shared outside the local jurisdiction to jurisdictions that offer appropriate safeguards with a similar degree of protection.<br/><br/>We may also need to share your personal information with external organisations such as credit agencies or other regulatory or industry bodies, to meet our due diligence, regulatory and legal obligations.<br/><br/>Your personal information may be shared with our business partners or counterparties, where we are involved in corporate transactions or to any party to whom we assign our rights under any of our agreements for impacted products and services.<br/><br/>While engaging third parties, we endeavour to choose reliable service providers who have data privacy policies equivalent to the standards adopted by us and subject to appropriate contractual obligations. We would only share your personal information in circumstances that are necessary and under the following conditions:</Text><br/><br/><Text class='listText'>•    Your personal information is treated as strictly confidential and kept secure by adopting adequate security and organisational measures.</Text><br/><Text class='listText'>•    Use of your information would be in a manner consistent with the purposes for which it was originally collected.</Text><br/><Text class='listText'>•    Use of your information is compliant with all applicable privacy and data protection laws; and meet the disclosure requirements of any law binding on us.</Text><br/><br/><Text class='para'>Our websites are generally not intended for persons under 18 years of age. We do not knowingly solicit or collect personal data from or about children on our websites except as permitted under applicable law.<br/><br/><b>ADIB KEEPS YOUR PERSONAL INFORMATION SECURE</b><br/><br/>ADIB implements appropriate physical, electronic and procedural safeguards, security policies and procedures to keep your personal information secure. These controls include encryption and other forms of security aligned to global good practice. We take steps to protect your information from unauthorized access and against unlawful processing, misuse, accidental loss, modification, destruction and damage.<br/><br/>Any employees and third parties who process personal information for us or on our behalf are contractually obligated to comply with and implement the same levels of protection and confidentiality standards as a minimum.<br/><br/><b>WE RESPECT YOUR RIGHTS AT ADIB</b><br/><br/>In line with applicable legislation, you have the following legal rights in respect of your personal information:</Text><br/><br/><Text class='listText'>•    Right to access your personal information thereby enabling you to obtain a copy of your personal information that we have on record and to check that we are lawfully processing it.</Text><br/><Text class='listText'>•    Right to correct your personal information, thereby enabling you to request that we correct any incomplete or inaccurate personal information that we hold about you.</Text><br/><Text class='listText'>•    Right to have your personal information deleted under certain circumstances. For example, where your personal information is no longer required to be retained by ADIB in respect of our legal obligations.</Text><br/><Text class='listText'>•    Right to object to or restrict process of your personal information under certain circumstances. For example, if you want us to establish the accuracy of the personal information that we hold on you. This includes the withdrawal of consent to processing in line with applicable regulations.</Text><br/><Text class='listText'>•    Right to receive or transmit your personal information to another organisation at your request in a structured, commonly used and machine-readable format.</Text><br/><Text class='listText'>•    Right to request manual intervention in case a fully automated decision is made about you that significantly impacts you and where you don’t agree with the outcome.</Text><br/><Text class='listText'>•    Right to opt out of or opt in to receiving direct marketing at any point during your customer journey with ADIB.</Text><br/><Text class='listText'>•    Right to raise a complaint to ADIB where you are concerned with how your personal information is processed and where this is not resolved to your liking, then to raise a complaint with the relevant regulator or supervisory authority. You can contact us at <a href='mailto:customerservice@adib.ae?subject=Smartdeals'>customerservice@adib.ae</a></Text><br/><br/><Text class='para'><b>AMENDMENTS TO THIS NOTICE</b><br/><br/>We reserve the right to update or modify this statement, at any time and without prior notice, by posting the revised version on our websites.<br/><br/><br/><b>Cookies</b><br/><br/>We use cookies and similar technologies to distinguish you from other users of our websites, to improve your experience when accessing our websites, and to improve our websites. You can set your browser to refuse all or some browser cookies, or to alert you when websites set or access cookies. If you disable or refuse cookies, please note that some parts of our websites may become inaccessible or not function properly. Detailed information on the cookies we use and the purposes for which we use them are set out in our Cookie Policy<br/><br/><b>Cookies Notice (on webpage)</b><br/><br/>We use cookies to give you the best possible experience on our website. By continuing to browse this site, you give consent for cookies to be used. For more details, please read our Cookie Policy.<br/><br/><b>Cookies Policy</b><br/><br/>Our public website and Internet Banking services, along with most other major websites, use cookies.<br/><br/>Cookies are pieces of information that a website transfers to the cookie file on your computer's hard disk. Cookies enable users to navigate around the website and (where appropriate) enable us to personalize and tailor the content to fit the needs of visitors who have accessed the site.<br/><br/>We use two types of cookie on our website.<br/><br/>Session cookies, which are temporary cookies that remain in the cookie file of your computer until you close your browser at which point they are deleted.<br/><br/>Persistent or stored cookies that remain permanently on the cookie file of your computer.<br/><br/>Cookies cannot look into your computer and obtain information about you or your family or read any material kept on your hard drive and, unless you have logged onto Internet Banking, cookies cannot be used to identify who you are.<br/><br/>Cookies cannot be used by anyone else who has access to the computer to find out anything about you, other than the fact that someone using the computer has visited a certain website.<br/><br/>We never use the data gathered through cookies to contact you via post, email or phone. We may use cookies to show you subtly tailored content on our website or other websites of things we think you might be interested in, but only in relation to ADIB products and services. You will never see advertising on our website from anyone other than ADIB group companies and our agents.<br/><br/>The cookies we use are completely safe. In fact, many of them are used purely to provide important security features such as protecting your data and your accounts.<br/><br/>We use email analytics and reporting tools to see how many of our emails are opened and which links receive the most clicks. Knowing which articles and topics our customers like and which they don't like helps us improve our content and make our emails more relevant.<br/><br/>We maintain strict security standards and procedures to prevent unauthorized access to information about you. ADIB will never contact you by email or otherwise to ask you to validate personal information such as your user ID, password, or account numbers. If you receive such a request, please call us on 600 543216 (within UAE) and +9712 6100600 (outside UAE).</Text></View>"
}
6.2.9. Example 7 ii): Get Terms of Service details
In Swagger UI, Expand 'Privacy Policy and Terms of Service API' and select '/api/v3/privacy/docs'
| Parameter | Description |
|---|---|
|
Document type (privacy_policy or terms_of_service) |
|
Language (default: en) |
Key in inputs as below:
GET /api/v3/privacy/docs?type=terms_of_service&lang=en HTTP/1.1
Content-Type: application/json
Host: localhost:8080
And you should be getting output as below, which provides details of privacy_policy or terms_of_service based on type
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 4545
{
"type" : "terms-of-service",
"content" : "<View><Text class='title'>Conditions of use</Text><br/><br/><Text class='para'>The User (“You”) acknowledge, accept and undertake that you are accessing the services on this app and transacting at your own risk. The Crayon Group (“We”) shall neither be liable nor responsible for any actions or inactions pertaining to the discounts offered herein however will take necessary steps in case you are unable to avail the same. We hereby expressly disclaim all responsibilities and liabilities in that regard. We shall try our best to mediate or resolve any dispute or disagreement between you and the sellers. We shall not be liable for delay or failure to comply with obligations if such delay is caused due to factors that are beyond reasonable control. The transaction by You shall be done via the Bank’s Credit or Debit card.</Text><br/><br/><View class='inner'><Text class='listText'>• While we have taken precautions to avoid inaccuracies in content; this app, all content, information, services and related graphics are provided as is, without warranty of any kind.</Text><br/><br/></View><View class='inner'><Text class='listText'>• The contents of services, information, text, graphics, images, logos, button icons, software code, interface, design and the collection, arrangement and assembly of the content on the platforms or any of the other services are the property of The Crayon Group.</Text><br/><br/></View><View class='inner'><Text class='listText'>• The Crayon Group shall not be liable for any loss, damage or injury suffered or sustained (even if caused by negligence) as a result of accepting and/or using the coupon.</Text><br/><br/></View><View class='inner'><Text class='listText'>• You agree to maintain and promptly update all data provided by you and to keep it true, accurate, current and complete; failing which we reserve right to block/terminate/ suspend your access.</Text><br/><br/></View><View class='inner'><Text class='listText'>• You hereby authorise The Crayon Group to declare and provide declarations to any Governmental authority on request on your behalf, including the offers availed by you.</Text><br/><br/></View><View class='inner'><Text class='listText'>• The Crayon Group accepts no responsibility for late, lost or misdirected email or other communications. The Crayon Group assumes no responsibility for any failure to receive a claim or for inaccurate information or for any loss, damage or injury as a result of technical or telecommunications problems, including security breaches. If such problems arise, then The Crayon Group may modify, cancel, terminate, or suspend the coupon.</Text><br/><br/></View><View class='inner'><Text class='listText'>• You shall indemnify and hold harmless The Crayon Group, its subsidiaries, affiliates and their respective officers, directors, agents and employees, from any claim or demand, or actions including reasonable attorney's fees, made by any third party or penalty imposed due to or arising due to your breach.</Text><br/><br/></View><View class='inner'><Text class='listText'>• This app can be used by persons who can form a legally binding contract under the applicable law.</Text><br/><br/></View><View class='inner'><Text class='listText'>• We will not be responsible for any business loss (including loss of profits, revenue, contracts, anticipated savings, data, goodwill or wasted expenditure) or any other indirect or consequential loss that is not reasonably foreseeable to both you and us when you commenced using this app.</Text><br/><br/></View><View class='inner'><Text class='listText'>• We reserve the right to make changes to our website, policies [link to privacy policy], and these Conditions of Use at any time. Any revised version will be effective immediately that it is displayed on this website.</Text><br/><br/></View><View class='inner'><Text class='listText'>• In the event these Terms of Use are translated into any language other than English, the terms of the English Language version shall prevail in the event of any conflict.</Text><br/><br/></View><View class='inner'><Text class='listText'>• Courts of UAE shall have exclusive jurisdiction to try matters arising of these Terms of Use.</Text><br/><br/></View><View class='inner'><Text class='listText'>• Our details/ Contact address: Crayon Data Sales Pte Ltd. having its registered office at 17 Phillip Street, #05-01, Grand Building, Singapore 048695</Text><br/></View></View>"
}
6.2.10. Example 8: API to get FAQ for App
In Swagger UI, Expand 'Privacy Policy and Terms of Service,FAQs API' and select '/api/v3/docs/faqs'
| Parameter | Description |
|---|---|
|
Language (default: en) |
Key in inputs as below:
GET /api/v3/docs/faqs?lang=en HTTP/1.1
Content-Type: application/json
Host: localhost:8080
And you should be getting output as below, which provides details of FAQS
on type
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 8647
{
"type" : "faqs",
"content" : "[{\"id\": 1,\"title\": \"Introducing the new and improved HDFC Smartbuy\",\"info\": \"We've revamped the HDFC Smartbuy offer portal to help you get the best deals. Find out how to make the most of our new features here <url>.\"},{\"id\": 2,\"title\": \"What is Bazaar?\",\"info\": \"Bazaar is an offer discovery platform that helps you discover the best offers from your favorite brands as well as discover new brands and products that you'll love! Bazaar is powered by maya.ai, who understands your tastes and preferences and provides personalized and relevant offer recommendations.\"},{\"id\": 3,\"title\": \"How does Bazaar work?\",\"info\": \"As your offer partner, we are keen to extend great offers and savings to you through Bazaar, which is our intelligent offer platform that connects you to brands and offers that cater to your interests and preferences. Bazaar is GDPR Complaint, and uses AI and non-PII data, such as transaction information or brand/category affinity, to provide personalized recommendations for every user\"},{\"id\": 4,\"title\": \"How can I become a member on Bazaar?\",\"info\": \"Bazaar memberships are provided by bank name Bank. If you are a customer of bank name Bank, you can directly access Bazaar from your mobile banking app.<br/>Note: Subject to change\"},{\"id\": 5,\"title\": \"What are the different offers I can get from Bazaar?\",\"info\": \"Bazaar hosts an exhaustive list of offers from our merchant and brand partners across dining, travel, fashion and retail. These offers could be in the form of instant discounts, coupon codes or cashbacks that get credited to you at a later date.\"},{\"id\": 6,\"title\": \"What are the steps to avail an offer?\",\"info\": \"In order to ensure simplicity and ease of access, we allow you to claim offers and store them under the 'claimed offers' section of your Bazaar App. You can claim offers on the go, and revisit your claimed offers section to redeem the offers. Upon redeeming the offer you will be redirected to the merchant's website, where you may provide the coupon code at the checkout page to avail the offer\"},{\"id\": 7,\"title\": \"What are the Terms of Service of Bazaar?\",\"info\": \"Please find our Terms of Service<span className='cursor primary-color'> here </span>\"},{\"id\": 8,\"title\": \"How to change my account settings?\",\"info\": \"The profile icon on the Bazaar App will lead you to the Account Settings panel. In the account settings panel, you can visit the relevant subsections to update your account details\"},{\"id\": 9,\"title\": \"How to change my language preference?\",\"info\": \"Preferred language can be selected while onboarding on to the app, and can be changed later from the Account Settings Panel as well. On the web version of the Bazaar App, click on the language selection button. On the mobile App, the profile icon on the Bazaar App will lead you to the Account Settings panel. In the account settings panel, you can scroll down to find the Language section.\"},{\"id\": 10,\"title\": \"How to change my email preferences/notification settings?\",\"info\": \"The profile icon on the Bazaar App will lead you to the Account Settings panel. In the account settings panel, you can visit the 'Notification Settings' subsection to alter your preferences\"},{\"id\": 11,\"title\": \"What is the Taste Profile?\",\"info\": \"The Taste Profile is a collection of affiinities of the individual user. These affinities are created on the basis of the users' interaction on the Bazaar App through likes, dislikes, purchace history, purchase frequency, etc.As the user's interaction increases, we will be able to understand their preferences and recommend relevant offers in return. The Taste profile helps to optimize this process without requiring personally identifiable information from the user.\"},{\"id\": 12,\"title\": \"How can I edit my Taste Profile?\",\"info\": \"The profile icon on the Bazaar App will lead you to the Account Settings panel. In the account settings panel, you can visit the 'Taste Profile' subsection to alter your preferences. Alternatively, you can also modify your taste profile through your interactions such as disliking, rating and reviewing the recommendations.\"},{\"id\": 13,\"title\": \"How can I see my recommendations?\",\"info\": \"Log in to your Bazaar App on mobile or on the web version. Alternatively, you could also find Bazaar as an extention within your bank's mobile app. On the homepage, you may notice different categories and personalized lists under which the offers recommended to you are present.\"},{\"id\": 14,\"title\": \"How can I improve the recommendations I get?\",\"info\": \"Our recommendation system is ever evolving with every interaction on the Bazaar App. You can improve the recommendations by modifying your taste profile to tell us what you like, or by modifying your interactions with recommendations you receive, such as disliking an offer you do not wish to see again.\"},{\"id\": 15,\"title\": \"What is product TasteMatch Score?\",\"info\": \"TasteMatch score™ is an affinity based scoring system that informs how relevant the offer is to the end user. A TasteMatch score ™ for the same offer may be different for every user. This is because the TasteMatch score ™ accounts every user's interaction such as likes, dislikes, transaction history, taste preference, then ranks the exisisting offers in a decreasing order of preferrence i.e. most preferred offer will be the first offer you see on the list. A Higher TasteMatch score (tm) indicates a higher relevance for the offer.\"},{\"id\": 16,\"title\": \"How is the promotional content relevant to me?\",\"info\": \"We have a vast number of brands within our merchant ecosystem, who provide many offers and discounts everyday. Maya.ai collates these offers in real time, matches the right offers for every customer, based on the individual taste preferences, to provide personalized recommendations for every user. This helps the user discover the right offers (for them) at the right time, and additionally saves precious time and effort otherwise used to decluttering irrelevant offers.\"},{\"id\": 17,\"title\": \"How are orders delivered to me?\",\"info\": \"When a user redeems an offer, we redirect them to the merchant's website to complete the order and checkout. The merchant partner will process the order and deliver to the user. The delivery policies of the merchant, from whose website the user shops at, will apply in such cases.\"},{\"id\": 18,\"title\": \"What are the shipping policies of Bazaar?\",\"info\": \"Shipping policies are subject to change based on those that are mandated by the merchant partner. Please visit the merchant's website or app for more details.\"},{\"id\": 19,\"title\": \"What are the shipping restrictions?\",\"info\": \"Shipping policies are subject to change based on those that are mandated by the merchant partner. We recommend carefully reading any and all shipping policies and/or restrictions on the merchant's website or app before placing an order.\"},{\"id\": 20,\"title\": \"Is there International Shipping available?\",\"info\": \"International shipping facility is subject to the merchant's ability to do the fulfillment. The shipping policies and restrictions mandated by the merchant and/or service locations will apply. We recommend carefully reading any and all shipping policies and/or restrictions on the merchant's website or app before placing an order.\"},{\"id\": 21,\"title\": \"How can I raise an issue or give feedback on shipping?\",\"info\": \"Any and all fulfillment and shipping related feedback can be provided by the merchant partner's customer care or help center.\"},{\"id\": 22,\"title\": \"How can I raise a complaint if my redemption code / cashback doesn't work?\",\"info\": \"All redemption / cashback related issues can be solved by the merchant partner's customer care or help center.\"},{\"id\": 23,\"title\": \"How do I know the choices I see is personalised for me?\",\"info\": \"All data that is available to us such as location, clicks, likes, wishlists, previous purchases, etc. contributes to personalization.All of this put together helps in identifying segments of visitors with distinct preferences or needs, for creating targeted experiences for them.\"},{\"id\": 24,\"title\": \"What kind of data do you track and use?\",\"info\": \"We track the users location and use all interaction based data such as clicks, wishlists, likes, purchases, etc., to enrich the users Taste Profile. We also use transaction data to deliver better choices.\"}]"
}
6.3. Notification Related APIs
The following are the APIs used for notification purposes.
6.3.1. Example 1: API to get notifications for a user
In Swagger UI, Expand 'Notification API' and select '/api/v3/notification'
| Name | Description |
|---|---|
|
User access token |
GET /api/v3/notification HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
Host: localhost:8080
And you should be getting output as below:
HTTP/1.1 200 OK
6.4. Taste Collection Related APIs
The following are the APIs used for taste collection purposes.
6.4.1. Example 1: API to get categories
In Swagger UI, Expand 'Taste Collection' and select '/api/v3/taste/categories'
| Name | Description |
|---|---|
|
User access token |
| Parameter | Description |
|---|---|
|
Language (default: en) |
GET /api/v3/taste/categories?lang=en HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
Host: localhost:8080
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1865
{
"categories" : [ {
"label" : "Retail",
"value" : "retail stores",
"webUrl" : "https://dpimages.crayondata.com/high-res-image/resized/retail_icon.webp",
"mobileUrl" : "",
"highlightedImageUrl" : "https://dpimages.crayondata.com/high-res-image/resized/retai_blue.webp",
"selected" : false
}, {
"label" : "Personal Services",
"value" : "personal service providers",
"webUrl" : "https://dpimages.crayondata.com/high-res-image/resized/health_icon.webp",
"mobileUrl" : "",
"highlightedImageUrl" : "https://dpimages.crayondata.com/high-res-image/resized/health_blue.webp",
"selected" : false
}, {
"label" : "Entertainment",
"value" : "entertainment",
"webUrl" : "https://dpimages.crayondata.com/high-res-image/resized/entertainment_icon.webp",
"mobileUrl" : "",
"highlightedImageUrl" : "https://dpimages.crayondata.com/high-res-image/resized/entertainment_blue.webp",
"selected" : false
}, {
"label" : "Dining",
"value" : "dining",
"webUrl" : "https://dpimages.crayondata.com/high-res-image/resized/dining_icon.webp",
"mobileUrl" : "",
"highlightedImageUrl" : "https://dpimages.crayondata.com/high-res-image/resized/dining_blue.webp",
"selected" : false
}, {
"label" : "Apparel",
"value" : "apparel and accessories",
"webUrl" : "https://dpimages.crayondata.com/high-res-image/resized/apparel_icon.webp",
"mobileUrl" : "",
"highlightedImageUrl" : "https://dpimages.crayondata.com/high-res-image/resized/apparel_blue.webp",
"selected" : false
}, {
"label" : "Travel",
"value" : "travel",
"webUrl" : "https://dpimages.crayondata.com/high-res-image/resized/travel_icon.webp",
"mobileUrl" : "",
"highlightedImageUrl" : "https://dpimages.crayondata.com/high-res-image/resized/trave_blue.webp",
"selected" : false
} ]
}
6.4.2. Example 2: API to get tags
In Swagger UI, Expand 'Taste Collection' and select '/api/v3/taste/tags'
| Name | Description |
|---|---|
|
User access token |
| Parameter | Description |
|---|---|
|
Language (default: en) |
| Path | Type | Description |
|---|---|---|
|
|
List of categories to fetch tags for |
POST /api/v3/taste/tags?lang=en HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
Content-Length: 55
Host: localhost:8080
{
"categories" : [ "Electronics", "Entertainment" ]
}
And you should be getting output as below:
HTTP/1.1 404 Not Found
Content-Type: application/json
Content-Length: 77
{
"message" : "Tags not found for the given categories",
"status" : 404
}
6.4.3. Example 3: API to get merchants
In Swagger UI, Expand 'Taste Collection' and select '/api/v3/taste/merchants'
| Name | Description |
|---|---|
|
User access token |
| Parameter | Description |
|---|---|
|
Language (default: en) |
| Path | Type | Description |
|---|---|---|
|
|
List of categories to fetch merchants for |
POST /api/v3/taste/merchants?lang=en HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
Content-Length: 55
Host: localhost:8080
{
"categories" : [ "Electronics", "Entertainment" ]
}
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1449
{
"merchants" : {
"Entertainment" : [ {
"name" : "Adventure Land Sharjah",
"id" : "4622f646-d1ea-358b-a287-911ffab9b5b8",
"logo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/LLM192_Advetureland_Sharjah_Logo.webp.webp",
"selected" : false
}, {
"name" : "Kidzania Abu Dhabi",
"id" : "e7ac0dae-2b6a-3df2-8627-cf5316961e2e",
"logo" : "https://dpimages.crayondata.com/high-res-image/resized/DP203_Kidzania_Abudhabi_Logo.webp",
"selected" : false
}, {
"name" : "PlayDxB",
"id" : "8f3a9301-105c-3c1c-b31a-1fd477d4c5f0",
"logo" : "https://dpimages.crayondata.com/high-res-image/resized/DP205_Playdxb_Logo.webp",
"selected" : false
} ],
"Electronics" : [ {
"name" : "Micro Electronics",
"id" : "8dd0d9b3-9705-3e04-9dd6-589e19d54e33",
"logo" : "https://dpimages.crayondata.com/high-res-image/hdfc/genric_updated/1280x800/1002.webp",
"selected" : false
}, {
"name" : "Mobile Queen",
"id" : "c9c3699c-a9fd-3dc5-9189-2e0436e0496d",
"logo" : "https://dpimages.crayondata.com/high-res-image/hdfc/genric_updated/1280x800/3470.webp",
"selected" : false
}, {
"name" : "Monalisha Electronics",
"id" : "18621b0f-6b88-322c-9c46-7aee4729fc3b",
"logo" : "https://dpimages.crayondata.com/high-res-image/hdfc/genric_updated/1280x800/1027.webp",
"selected" : false
} ]
}
}
6.4.4. Example 4: API to update user preference
In Swagger UI, Expand 'Taste Collection' and select '/api/v3/taste/preferences'
| Name | Description |
|---|---|
|
User access token |
| Parameter | Description |
|---|---|
|
Language (default: en) |
| Path | Type | Description |
|---|---|---|
|
|
List of category preferences with associated tags and merchants |
|
|
Name of the category |
|
|
List of tags associated with the category preference |
|
|
List of merchants associated with the category preference |
|
|
Status of the preference update operation |
POST /api/v3/taste/preference?lang=en HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
Content-Length: 153
Host: localhost:8080
{
"preferences" : [ {
"categoryName" : "electronics",
"tags" : [ "local", "international" ],
"merchants" : null
} ],
"status" : false
}
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 165
{
"status" : "SUCCESS",
"response" : null,
"message" : "User preference recorded successfully",
"error" : false,
"badRequest" : false,
"success" : true
}
6.5. OBOP Related APIs
The following are the APIs used for OBOP.
6.5.1. Example 1: Get obop choices for all supported list types and categories
In Swagger UI, Expand 'OBOP Choice API' and select '/api/v3/obop/choice/list'
| Name | Description |
|---|---|
|
User access token |
|
Client asset identifier (eg., OBOP) |
| Path | Type | Description |
|---|---|---|
|
|
Client identifier |
|
|
Known user identifier |
|
|
Anonymous user identifier |
|
|
Campaign identifier |
|
|
Category filter (default: all) |
|
|
User location details |
|
|
City name |
|
|
City name in Spanish (if available) |
|
|
List of choice list types to be fetched |
|
|
Total number of items to be returned |
|
|
Number of campaigns to be returned |
|
|
Language (default: en) |
|
|
Flag to include campaigns in response |
|
|
Flag to include offers in response (default: true) |
|
|
Request timestamp in ISO-8601 format |
|
|
User timezone |
|
|
Applicable offer source |
POST /api/v3/obop/choice/list HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: OBOP
Content-Length: 434
Host: localhost:8080
{
"clientId" : null,
"knownUserId" : null,
"anonymousUserId" : null,
"campaignId" : null,
"category" : "all",
"location" : {
"city" : "Mumbai",
"cityES" : "Mumbai"
},
"choiceList" : null,
"choiceCount" : 12,
"campaignCount" : 10,
"lang" : "en",
"includeCampaigns" : true,
"includeOffers" : true,
"servedAt" : "2026-04-21T05:36:53.79Z",
"timeZone" : null,
"applicableOfferSource" : "LIFESTYLE"
}
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 111321
{
"id" : "666cb296-5856-4b71-ada1-d3505a54a831",
"choices" : [ {
"id" : "eCOLrZU-RdSTr_4CWvpZjg",
"listName" : "Curated offers for you",
"listType" : "CURATED_OFFERS",
"totalCount" : 4,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "dc7b9d66-73c8-3f59-b2b0-9a97780606d3",
"name" : "Noon",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/noon_merchant.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC97",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/noon_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/noon_logo01.webp",
"url" : "https://www.noon.com/uae-en/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/noon_banner.webp",
"distance" : 0.0
},
"offers" : [ {
"id" : "1342",
"name" : "Get 10% off up to 10 AED on your purchase at Noon",
"description" : "Get 10% off up to 10 AED on your purchase at Noon untill 31-07-2022\nOnline offer",
"validFrom" : "2022-07-20T00:00:00.389Z",
"validTo" : "2026-07-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "SA32",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/1342_webp_Noon.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.6,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=235&aff_id=68962&aff_sub=testuser&aff_sub2=AC97&aff_sub3=1342&aff_sub4=crayon",
"termsAndConditions" : "1. The offer is valid upto 31-07-2022\n2. The offer is valid for 'Beauty', 'Fashion', 'Baby & Kids', 'Books & Education', 'TV & Electronics', 'Mobiles, Tablets & Computers', 'Grocery & Food', 'Home, Kitchen & Garden', 'Sports, Fitness & Outdoors', 'Coupon Offers' only\n3. The offer is applicable for 'Mobile', 'Desktop / Web'\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/1342_webp_Noon.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "",
"payoutValue" : "0.8",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "OTHER CREDIT CARDS" ]
} ],
"tags" : [ "perfumery", "kitchen-appliances", "video-games", "bicycle-and-accessories", "furniture", "health-and-beauty", "home-audio-and-accessories", "cameras-and-accessories", "sporting-equipment", "toys-and-games", "computer-and-accessories", "toys", "home-appliances", "home-and-kitchen", "home-furnishings", "online", "sports-and-outdoors", "apparel-and-accessories", "kitchen-accessories", "mobile-phones", "cosmetics-and-skincare", "computer-and-electronics", "personal-care", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "8a72244c-e903-33c3-a5cd-e19034a64949",
"name" : "Via.com",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "HDFC15903",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"url" : "https://in.via.com/",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "178714",
"name" : "Use coupon code: FLYVIAHDFC, Get Flat 7% Instant Discount upto Rs 7000 on international fligts, minimum booking value should be Rs 10000",
"description" : "Flat Rs.500 off on One way and Flat Rs.1000 off on Round trip on Domestic Flights\nFlat Rs.300 on one way and Rs.600 on round trip on International Flights\nFlat 2% off on Hotel booking\nFlat 3% on Bus booking",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFC",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"payoutType" : "cpa_flat",
"offerVariant" : "Consumer Durable Loan (CDL)",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "1. Offer valid on HDFC Credit cards only \n\n2. Offer on all days\n\n3. This offer is funded by Via.com",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"offerSource" : "CARDS & EASYEMI",
"howToRedeem" : "use promo code VIAHDFC while checkout for Domestic flights\n\nuse promo code VIAHDFC while checkout for International flights\n\nuse promo code VIAHDFCHTL while checkout for Hotels\n\nuse promo code VIAHDFCBUS while checkout for Buses",
"currency" : "",
"payoutValue" : "500",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "TEST CARDS" ]
}, {
"id" : "287456",
"name" : "Rs. 500 off on Minimum Billing of Rs. 4500 on Domestic Flights.\nRs. 1000 off on Minimum Billing of Rs. 10,000 on International Flights.\nRs. 500 off on Minimum Billing of Rs. 4000 on Hotels Booking.\nRs. 100 off on Minimum Billing of Rs. 1200 on Bus Booking.",
"description" : "Rs. 500 off on Minimum Billing of Rs. 4500 on Domestic Flights.\nRs. 1000 off on Minimum Billing of Rs. 10,000 on International Flights.\nRs. 500 off on Minimum Billing of Rs. 4000 on Hotels Booking.\nRs. 100 off on Minimum Billing of Rs. 1200 on Bus Booking.",
"validFrom" : "2023-10-20T00:00:00.389Z",
"validTo" : "2026-11-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "India" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "VIATHRIWE",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerVariant" : "EASY EMI",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "The Offer is valid till 30th November 2024\nUnder this Offer, Cardholders gets Up to 1000/- Rs. off\nOffer valid only on online orders placed via https://in.via.com/\nOffer is valid on flights/hotels/bus transactions only.\nOffer is valid on website/m-site/app transactions. \nOffer is valid once per user per product per month during offer duration.\nOther generic platform t&c's will be applicable.\nFlat discount starts from the minimum Billing as stated in the offer construct table. Flat discount remains the same for any value above minimum order for all the products.\nThe Exclusive offers/discounts under these Programs cannot be clubbed with any other offer.\nThe Offer is available only upon making full payment by a valid and unexpired Mastercard card issued in India.\nOffer is not valid for Cash on Delivery.\nTo redeem this offer, cardholders should login to their account or create an account, if they are not registered.\nThe Offer is non-transferable and cannot be exchanged for cash or cheque or any form of credit.\nTotal spends will be calculated on the basis of product cost only excluding all taxes, GST, delivery charges, etc. Any taxes or liabilities or charges payable to the Government or any other authority or body, if any, shall be borne directly by the cardholder and/ or billed to the account of the cardholder\nAny dispute regarding delivery, service, suitability, merchantability, availability or quality of the offer/or product/services availed under this offer must be addressed in writing, by the cardholder directly to info@thriwe.com. Mastercard or the issuing bank will not be liable for the same.\nCardholders are not bound in any way to participate in the Offer. Any participation shall be voluntary and all participants understand, acknowledge and agree that the Offer is purely on a best effort basis and Mastercard does not assume any liability whatsoever regarding the Offer, the delivery of services or any incidental matter.\nNo two offers can be clubbed together and no additional discount/offer will be applicable.\nAny cardholder who utilises, participates in, or attempts to utilise or participate in the Mastercard Card Offers programme, irrevocably agrees to the following: Mastercard will not be liable under contract, tort or any other theory of law for any claim regarding loss or damage howsoever incurred in relation to the use (or attempted use) of the Offer; and accordingly, the cardholder will not make any claim against Mastercard regarding the same.\nEach benefit/privilege may be subject to additional terms and conditions imposed by Via.com. Cardholders are solely responsible for checking and complying with the same.\nThese terms and conditions shall be governed by the laws of India and any dispute arising out of or in connection with these terms and conditions shall be subject to the exclusive jurisdiction of the courts in Mumbai.\nMastercard reserves the right to add, alter, modify, change or vary any of these terms and conditions or to replace, wholly or in part, this Offer by another offer, whether similar or not, or to withdraw it altogether at any point in time, without any prior notice.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via.webp",
"offerType" : "online coupon",
"offerSource" : "CARDS & EASYEMI",
"howToRedeem" : "Get Specials offers at Via.com\n\nRs. 500 off on Minimum Billing of Rs. 4500 on Domestic Flights.\nRs. 1000 off on Minimum Billing of Rs. 10,000 on International Flights.\nRs. 500 off on Minimum Billing of Rs. 4000 on Hotels Booking.\nRs. 100 off on Minimum Billing of Rs. 1200 on Bus Booking.\nUse promocode VIATHRIWE at checkout and payment by Mastercard card.\n\nLink: https://in.via.com/\n\nOffer valid till 30th November 2024",
"currency" : "",
"payoutValue" : "500.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "178727",
"name" : "Use coupon code: FLYVIAHDFC, Get Flat 7% Instant Discount upto Rs 7000 on international fligts, minimum booking value should be Rs 10000",
"description" : "Use coupon code: FLYVIAHDFC $ Get Flat 7% upto Rs 7000 Instant Discount oxn international flights $ minimum booking value should be Rs 10000",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFCHTL",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "SMARTBUY",
"howToRedeem" : "1. Log in to website\n\n2. Add products to your cart\n\n3. Pay using your HDFC Bank Cards to avail this offer",
"currency" : "",
"payoutValue" : "2",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "Applicable once per month",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "MILLENIA" ]
}, {
"id" : "178728",
"name" : "Using your HDFC Bank Card avail this offer",
"description" : "Flat 3% on Bus booking",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFCBUS",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "SMARTBUY",
"howToRedeem" : "use promo code VIAHDFCBUS while checkout?for Buses in https://in.via.com/",
"currency" : "",
"payoutValue" : "3",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "1. Offer valid on HDFC Credit cards only \n2. Offer on all days\n3. This offer is funded by Via.com",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "IRCTC" ]
}, {
"id" : "178726",
"name" : "Using your HDFC Bank Card avail this offer",
"description" : "Flat Rs.500 off on One way and Flat Rs.1000 off on Round trip on Domestic Flights\nFlat Rs.300 on one way and Rs.600 on round trip on International Flights\nFlat 2% off on Hotel booking\nFlat 3% on Bus booking",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFC",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"payoutType" : "cpa_flat",
"offerSource" : "SMARTBUY",
"howToRedeem" : "use promo code VIAHDFC while checkout for International flights in https://in.via.com/",
"currency" : "",
"payoutValue" : "300",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "1. Offer valid on HDFC Credit cards only \n2. Offer on all days\n3. This offer is funded by Via.com",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "REGALIA" ]
} ],
"tags" : [ "travel-agency", "travel-agencies-and-operators", "tour", "air-ticket-booking", "train-ticket-booking", "bus-ticket-booking", "hotel-booking" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "17e59176-b45d-3845-9a15-5940a3fb52a5",
"name" : "Adventure Cove Waterpark",
"category" : "entertainment",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/HO2_Adventure_Cove_Waterpark_Merchant.webp",
"externalId" : "DP256",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/HO2_Adventure_Cove_Waterpark_Merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/headout-logo.webp",
"url" : "https://www.headout.com/tour/7444/?bi=JTdCJTIydCUyMiUzQSUyMjEwJTI1JTIwb2ZmJTIwb24lMjB0b3AlMjBTaW5nYXBvcmUlMjBleHBlcmllbmNlcyUzRiUyMFllcyUyQyUyMHBsZWFzZSElMjIlMkMlMjJkZXNjJTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmMlMjIlM0ElMjJIT0hTQkMxMCUyMiUyQyUyMnR5cGUlMjIlM0ElMjJQUk9NT19NQU5VQUwlMjIlMkMlMjJzdWJUZXh0JTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmJhY2tncm91bmQlMjIlM0ElN0IlMjJ1cmwlMjIlM0ElMjJodHRwcyUzQSUyRiUyRmNkbi1pbWdpeC5oZWFkb3V0LmNvbSUyRnRvdXIlMkYxMzQ0MCUyRlRPVVItSU1BR0UlMkZiYzYzNTc2OS05NTE2LTRhOGQtOWI4OC0wM2Q4ZTBiNjYyNWUtNzM1OC1zaW5nYXBvcmUtZ2FyZGVucy1ieS10aGUtYmF5LWRpcmVjdC1lbnRyeS10aWNrZXRzLTAzLmpwZWclMjIlN0QlMkMlMjJ0bmMlMjIlM0ElMjJPZmZlciUyMHZhbGlkJTIwZnJvbSUyMDE1dGglMjBBcHJpbCUyMDIwMjMlMjB0byUyMDE1dGglMjBTZXB0ZW1iZXIlMjAyMDIzLiUyMFRlcm1zJTIwYW5kJTIwQ29uZGl0aW9ucyUyMEFwcGx5JTIwKGJpdC5seSUyRkhPSFNCQzEwX1Rlcm1zKSUyMiU3RA==&utm_source=partnership&utm_medium=CDPortal&utm_campaign=HSBC",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/HO2_Adventure_Cove_Waterpark_Banner.webp",
"distance" : 0.0
},
"offers" : [ {
"id" : "201889",
"name" : "Get 10% off on Adventure Cove Waterpark entry tickets",
"description" : "Get 10% off on Adventure Cove Waterpark entry tickets till 15-09-2023\nOnline offer",
"validFrom" : "2023-04-15T00:00:00.389Z",
"validTo" : "2026-09-15T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "HOHSBC10",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/HO2_Adventure_Cove_Waterpark_Offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.headout.com/tour/7444/?bi=JTdCJTIydCUyMiUzQSUyMjEwJTI1JTIwb2ZmJTIwb24lMjB0b3AlMjBTaW5nYXBvcmUlMjBleHBlcmllbmNlcyUzRiUyMFllcyUyQyUyMHBsZWFzZSElMjIlMkMlMjJkZXNjJTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmMlMjIlM0ElMjJIT0hTQkMxMCUyMiUyQyUyMnR5cGUlMjIlM0ElMjJQUk9NT19NQU5VQUwlMjIlMkMlMjJzdWJUZXh0JTIyJTNBJTIyVXNlJTIwY29kZSUyMEhPSFNCQzEwJTIwZm9yJTIwYSUyMGZsYXQlMjAxMCUyNSUyMG9mZiUyMG9uJTIwU2luZ2Fwb3JlJ3MlMjBtb3N0JTIwYnV6emluZyUyMGF0dHJhY3Rpb25zLiUyMiUyQyUyMmJhY2tncm91bmQlMjIlM0ElN0IlMjJ1cmwlMjIlM0ElMjJodHRwcyUzQSUyRiUyRmNkbi1pbWdpeC5oZWFkb3V0LmNvbSUyRnRvdXIlMkYxMzQ0MCUyRlRPVVItSU1BR0UlMkZiYzYzNTc2OS05NTE2LTRhOGQtOWI4OC0wM2Q4ZTBiNjYyNWUtNzM1OC1zaW5nYXBvcmUtZ2FyZGVucy1ieS10aGUtYmF5LWRpcmVjdC1lbnRyeS10aWNrZXRzLTAzLmpwZWclMjIlN0QlMkMlMjJ0bmMlMjIlM0ElMjJPZmZlciUyMHZhbGlkJTIwZnJvbSUyMDE1dGglMjBBcHJpbCUyMDIwMjMlMjB0byUyMDE1dGglMjBTZXB0ZW1iZXIlMjAyMDIzLiUyMFRlcm1zJTIwYW5kJTIwQ29uZGl0aW9ucyUyMEFwcGx5JTIwKGJpdC5seSUyRkhPSFNCQzEwX1Rlcm1zKSUyMiU3RA==&utm_source=partnership&utm_medium=CDPortal&utm_campaign=HSBC",
"termsAndConditions" : "1. Headout has the sole authority for the interpretation of these terms and conditions. \n2. In addition to these terms and conditions, Headout's terms of use and privacy policy shall also apply. \n3. This offer is applicable on all Singapore based experiences listed on Headout's Website. \n4. The offer shall be redeemed by Users through the use of coupon codes that are issued to them via their bank portal. To redeem the offer, Users must select the offer on the bank portal and obtain a coupon code. The User will then be directed to the relevant product page on the Headout's website. Upon reaching the Headout's website, the User must enter the unique coupon code at the checkout page before making any payment. The offer cannot be redeemed after the payment has been processed. In case, if Headout finds out that User has redeemed the offer in any other manner, Headout reserves the right to either cancel the booking or take any other action as it may deem fit. \n5. The coupon code application shall be restricted to a maximum of three uses per individual User. If a user cancels their booking, the coupon code will remain valid for the tenure provided in clause 6 below, as long as it has not been used three times. Any additional uses of the coupon code will not be honored. \n6. The coupon code shall be valid from 15th April 2023 to 15th September 2023. \n7. Discount provided under this coupon code will not be clubbed with any other offer. \n8. In case of full/partial cancellation, the offer redeemed under the coupon code shall stand void and the user will not be eligible for the discount. Headout shall process the refund, to the original source, post adjusting the discount and/or any other applicable charges and penalties. \n9. In case of the loss of the Coupon code because of any reason that is directly related to the User neither Crayon nor Headout shall have any liability whatsoever. \n10. Coupon Codes are non transferable and can only be used for the purchases of experiences listed on the Headout website. \n11. In case Headout witnesses any fraudulent activity from User's end, it shall have the right to disqualify that particular User from the benefits of the offer and take any corrective action as per the law. \n12. Headout shall not be liable for any loss or damage arising due to force majeure scenarios like act of god, epidemic/pandemic, government restrictions, strikes,riots etc. \n13. Only individual Users are allowed to claim benefits under this offer. Travel agents are barred from availing any benefits under this offer. Headout reserves the right to deny any benefit under this offer to travel agents. Headout may also opt to cancel such bookings without processing any refunds against the same. \n14. User understands that their participation in this offer is voluntary in nature. If a User claims any benefit under this offer it will be construed that they have read understood and accepted these terms and conditions. \n15. In the events of any dispute, the courts of the state of New York (United States) shall have exclusive jurisdiction.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/HO2_Adventure_Cove_Waterpark_Offer.webp",
"offerType" : "offline coupon",
"offerSource" : "headout",
"howToRedeem" : "1. To redeem, click the \"Claim Now\" button and visit the merchant page\n2. Apply the coupon code at the time of checkout at respective area\n3. Use valid VISA card as per terms and conditions to make the payment",
"currency" : "SGD",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "landmarks-and-points-of-interest", "water-and-amusement-parks", "amusement-parks", "theme-parks" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "4bc63579-a6a4-3866-8308-880f3cc42147",
"name" : "ACE",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DC2_webp_Ace_Hardware_card.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DC2",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DC2_webp_Ace_Hardware_card.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/DC2_webp_DC2_webp_Ace_Hardware_card_Logo.webp",
"url" : "https://www.aceuae.com/en-ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/DC2_webp_Ace_Hardware_banner.webp",
"distance" : 0.0
},
"offers" : [ {
"id" : "179493",
"name" : "Get up to 10% off on your purchase at ACE",
"description" : "Get up to 10% off on your purchase at ACE till 31-12-2023\nonline offer",
"validFrom" : "2023-02-23T00:00:00.389Z",
"validTo" : "2026-11-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "MPR31JY",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/ace-offer.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.aceuae.com/en-ae/?subid=testuser&subid1=DC2&subid2=179493&subid3=crayon",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:Electronics, Promotional Items & Promotional Services – ex Free Assembly\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/ace-offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "MONEYBACK" ]
} ],
"tags" : [ "hardware", "kitchen-appliances", "automobile-and-accessories", "home-improvement-supplies", "pet-supplies", "furniture", "pet-and-pet-supplies", "online-and-in-store", "plant-nursery", "home-appliances", "home-furnishings", "home-and-kitchen", "gardening-supplies", "kitchen-accessories", "paint-supplies", "kids-furniture", "building-supplies", "computer-and-electronics", "tools-and-home-improvement", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
} ],
"created" : "2026-04-21T05:36:56.333904813Z"
}, {
"id" : "l0PDwqikSnqS2CN8U-8pDQ",
"listName" : "Exciting offers near you",
"listType" : "NEAR_BY",
"totalCount" : 1,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "9e99fdbb-dd61-3265-9c87-690a09744973",
"name" : "Voltas",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Voltas.webp",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Voltas.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Voltas.webp",
"merchantBannerImage" : "",
"url" : "",
"externalId" : "BO5024",
"dominantColorCode" : "",
"distance" : 10.8,
"tasteMatchScore" : 81
},
"offers" : [ {
"id" : "241011",
"name" : "EASYEMI up to 6 months",
"description" : "EASYEMI up to 6 months",
"validFrom" : "2023-07-02T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : false,
"sensitiveFlag" : false,
"offerActive" : true,
"locations" : [ "332509", "426354", "332516", "332520", "332522", "332512", "332528", "332517", "332521", "426347", "332532", "426340", "426339", "426352", "426345", "426342", "426359", "332511", "426356", "426353", "426350", "426348", "332524", "332529", "332531", "332533", "332519", "426346", "426337", "426358", "332513", "332518", "426351", "426343", "332526", "426341", "426360", "332510", "426357", "426349", "332523", "332525", "332530", "426336", "332514", "426355", "332515", "426344", "332527", "426338" ],
"offerCities" : [ "Indore", "Bhubaneswar", "Nagpur", "Cochin", "New Delhi", "Pune", "Faridabad", "Jamshedpur", "Chennai", "Vijayawada", "Mumbai", "Chandigarh", "Kolkata", "Ahmedabad", "Hyderabad", "Bengaluru", "Guwahati", "Coimbatore", "Jaipur", "Patna", "Lucknow", "Ghaziabad", "Raipur" ],
"offerCountries" : [ "India" ],
"offerGeoCodes" : [ {
"latitude" : "23.00286",
"longitude" : "72.51028"
}, {
"latitude" : "10.99705",
"longitude" : "76.98204"
}, {
"latitude" : "28.67434",
"longitude" : "77.44399"
}, {
"latitude" : "26.89381",
"longitude" : "75.74721"
}, {
"latitude" : "22.57398",
"longitude" : "88.43837"
}, {
"latitude" : "30.70897",
"longitude" : "76.80318"
}, {
"latitude" : "28.32133",
"longitude" : "77.3103"
}, {
"latitude" : "26.19196",
"longitude" : "91.77436"
}, {
"latitude" : "22.78717",
"longitude" : "86.18384"
}, {
"latitude" : "22.57398",
"longitude" : "88.43837"
}, {
"latitude" : "19.20703",
"longitude" : "72.9569"
}, {
"latitude" : "25.60725",
"longitude" : "85.1381"
}, {
"latitude" : "18.54298",
"longitude" : "73.85154"
}, {
"latitude" : "26.19196",
"longitude" : "91.77436"
}, {
"latitude" : "18.98579",
"longitude" : "72.8377"
}, {
"latitude" : "28.52024",
"longitude" : "77.29391"
}, {
"latitude" : "12.95752",
"longitude" : "77.58592"
}, {
"latitude" : "20.27161",
"longitude" : "85.81384"
}, {
"latitude" : "13.03589",
"longitude" : "80.24529"
}, {
"latitude" : "28.67434",
"longitude" : "77.44399"
}, {
"latitude" : "22.7481",
"longitude" : "75.89591"
}, {
"latitude" : "22.78717",
"longitude" : "86.18384"
}, {
"latitude" : "18.98579",
"longitude" : "72.8377"
}, {
"latitude" : "25.60725",
"longitude" : "85.1381"
}, {
"latitude" : "21.26154",
"longitude" : "81.64495"
}, {
"latitude" : "16.50617",
"longitude" : "80.64802"
}, {
"latitude" : "22.7481",
"longitude" : "75.89591"
}, {
"latitude" : "26.86952",
"longitude" : "81.00911"
}, {
"latitude" : "19.20703",
"longitude" : "72.9569"
}, {
"latitude" : "20.27161",
"longitude" : "85.81384"
}, {
"latitude" : "13.03589",
"longitude" : "80.24529"
}, {
"latitude" : "17.45487",
"longitude" : "78.441"
}, {
"latitude" : "17.45487",
"longitude" : "78.441"
}, {
"latitude" : "21.1283",
"longitude" : "79.04622"
}, {
"latitude" : "21.1283",
"longitude" : "79.04622"
}, {
"latitude" : "28.32133",
"longitude" : "77.3103"
}, {
"latitude" : "23.00286",
"longitude" : "72.51028"
}, {
"latitude" : "12.95752",
"longitude" : "77.58592"
}, {
"latitude" : "30.70897",
"longitude" : "76.80318"
}, {
"latitude" : "26.89381",
"longitude" : "75.74721"
}, {
"latitude" : "26.86952",
"longitude" : "81.00911"
}, {
"latitude" : "18.98643",
"longitude" : "72.83612"
}, {
"latitude" : "18.54298",
"longitude" : "73.85154"
}, {
"latitude" : "16.50617",
"longitude" : "80.64802"
}, {
"latitude" : "9.95954",
"longitude" : "76.28886"
}, {
"latitude" : "9.95954",
"longitude" : "76.28886"
}, {
"latitude" : "10.99705",
"longitude" : "76.98204"
}, {
"latitude" : "18.98643",
"longitude" : "72.83612"
}, {
"latitude" : "28.52024",
"longitude" : "77.29391"
}, {
"latitude" : "21.26154",
"longitude" : "81.64495"
} ],
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Voltas.webp",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Voltas.webp",
"offerSourceImage" : "",
"redemptionCode" : "",
"cashbackValue" : 0.0,
"currency" : "",
"offerType" : "card linked",
"offerStatus" : "active",
"url" : "",
"howToRedeem" : "T&C Apply $ EasyEMI Applicable on Select products",
"payoutType" : "cpa_flat",
"offerSource" : "hdfc",
"termsAndConditions" : "",
"offerVariant" : "",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "" ],
"applicableChannel" : [ "online", "offline" ]
} ],
"tags" : [ "" ],
"cities" : [ "Ahmedabad", "Coimbatore", "Ghaziabad", "Jaipur", "Kolkata", "Chandigarh", "Faridabad", "Guwahati", "Jamshedpur", "Kolkata", "Mumbai", "Patna", "Pune", "Guwahati", "Mumbai", "New Delhi", "Bengaluru", "Bhubaneswar", "Chennai", "Ghaziabad", "Indore", "Jamshedpur", "Mumbai", "Patna", "Raipur", "Vijayawada", "Indore", "Lucknow", "Mumbai", "Bhubaneswar", "Chennai", "Hyderabad", "Hyderabad", "Nagpur", "Nagpur", "New Delhi", "Ahmedabad", "Bengaluru", "Chandigarh", "Jaipur", "Lucknow", "Mumbai", "Pune", "Vijayawada", "Cochin", "Cochin", "Coimbatore", "Mumbai", "New Delhi", "Raipur" ],
"geoCodes" : [ {
"latitude" : "23.00286",
"longitude" : "72.51028"
}, {
"latitude" : "10.99705",
"longitude" : "76.98204"
}, {
"latitude" : "28.67434",
"longitude" : "77.44399"
}, {
"latitude" : "26.89381",
"longitude" : "75.74721"
}, {
"latitude" : "22.57398",
"longitude" : "88.43837"
}, {
"latitude" : "30.70897",
"longitude" : "76.80318"
}, {
"latitude" : "28.32133",
"longitude" : "77.3103"
}, {
"latitude" : "26.19196",
"longitude" : "91.77436"
}, {
"latitude" : "22.78717",
"longitude" : "86.18384"
}, {
"latitude" : "22.57398",
"longitude" : "88.43837"
}, {
"latitude" : "19.20703",
"longitude" : "72.9569"
}, {
"latitude" : "25.60725",
"longitude" : "85.1381"
}, {
"latitude" : "18.54298",
"longitude" : "73.85154"
}, {
"latitude" : "26.19196",
"longitude" : "91.77436"
}, {
"latitude" : "18.98579",
"longitude" : "72.8377"
}, {
"latitude" : "28.52024",
"longitude" : "77.29391"
}, {
"latitude" : "12.95752",
"longitude" : "77.58592"
}, {
"latitude" : "20.27161",
"longitude" : "85.81384"
}, {
"latitude" : "13.03589",
"longitude" : "80.24529"
}, {
"latitude" : "28.67434",
"longitude" : "77.44399"
}, {
"latitude" : "22.7481",
"longitude" : "75.89591"
}, {
"latitude" : "22.78717",
"longitude" : "86.18384"
}, {
"latitude" : "18.98579",
"longitude" : "72.8377"
}, {
"latitude" : "25.60725",
"longitude" : "85.1381"
}, {
"latitude" : "21.26154",
"longitude" : "81.64495"
}, {
"latitude" : "16.50617",
"longitude" : "80.64802"
}, {
"latitude" : "22.7481",
"longitude" : "75.89591"
}, {
"latitude" : "26.86952",
"longitude" : "81.00911"
}, {
"latitude" : "19.20703",
"longitude" : "72.9569"
}, {
"latitude" : "20.27161",
"longitude" : "85.81384"
}, {
"latitude" : "13.03589",
"longitude" : "80.24529"
}, {
"latitude" : "17.45487",
"longitude" : "78.441"
}, {
"latitude" : "17.45487",
"longitude" : "78.441"
}, {
"latitude" : "21.1283",
"longitude" : "79.04622"
}, {
"latitude" : "21.1283",
"longitude" : "79.04622"
}, {
"latitude" : "28.32133",
"longitude" : "77.3103"
}, {
"latitude" : "23.00286",
"longitude" : "72.51028"
}, {
"latitude" : "12.95752",
"longitude" : "77.58592"
}, {
"latitude" : "30.70897",
"longitude" : "76.80318"
}, {
"latitude" : "26.89381",
"longitude" : "75.74721"
}, {
"latitude" : "26.86952",
"longitude" : "81.00911"
}, {
"latitude" : "18.98643",
"longitude" : "72.83612"
}, {
"latitude" : "18.54298",
"longitude" : "73.85154"
}, {
"latitude" : "16.50617",
"longitude" : "80.64802"
}, {
"latitude" : "9.95954",
"longitude" : "76.28886"
}, {
"latitude" : "9.95954",
"longitude" : "76.28886"
}, {
"latitude" : "10.99705",
"longitude" : "76.98204"
}, {
"latitude" : "18.98643",
"longitude" : "72.83612"
}, {
"latitude" : "28.52024",
"longitude" : "77.29391"
}, {
"latitude" : "21.26154",
"longitude" : "81.64495"
} ],
"isOnline" : false,
"merchantType" : [ "offline" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
} ],
"created" : "2026-04-21T05:36:56.325809623Z"
}, {
"id" : "1w2yRR5OREa5t2emOoZrSQ",
"listName" : "Because you viewed Roman General Stores",
"listType" : "SIMILAR_MERCHANTS",
"totalCount" : 12,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "46c4b57b-a976-3e67-bd6a-7d13c08239e8",
"name" : "Anotah",
"description" : "Discover the new Anotah Fashion Online. The latest trends for Woman, Top Girls, Kids.",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC560_3_Anotah_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC560",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC560_3_Anotah_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/AC560_Anotah_New_Logo.webp.webp",
"url" : "https://www.anotah.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/AC560_Anotah_New_Banner.webp.webp",
"tasteMatchScore" : 83,
"distance" : 0.0
},
"offers" : [ {
"id" : "1637",
"name" : "Get up to 10% off on your purchase at Anotah",
"description" : "Get up to 10% off on your purchase at Anotah till 21-12-2022\nOnline offer",
"validFrom" : "2021-05-01T00:00:00.389Z",
"validTo" : "2026-12-21T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "AC63",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC560_1_Anotah_New_Image.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.anotah.com/?aff_sub=testuser&aff_sub2=AC560&aff_sub3=1637&aff_sub4=crayon",
"termsAndConditions" : "1.\tThe offer is valid upto 21-12-2022\n2.\tThe offer is valid for Women's Apparel, Beauty only\n3.\tThe categories/products which are excluded from this offer are: N/A\n4.\tThe offer is valid on app & website purchases only\n5.\tThe offer is applicable for new & repeat users\n6.\tCoupons are applicable for ADIB card users only\n7.\tCoupon is applicable for online purchase only\n8.\tAccidental loss of coupon shall not be covered \n9.\tCoupons are not transferable \n10.\tCoupons cannot be replaced if lost.\n11.\tCustomer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.\tCoupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC560_1_Anotah_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "KWD",
"payoutValue" : "16.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "perfumery", "health-and-beauty", "multi-brand", "online-and-in-store", "large-product-range", "apparel-and-accessories", "international", "average-pricing", "shopping-mall", "cosmetics-and-skincare", "clothing-store", "personal-care", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "549031ed-bedf-389a-a1c1-057bc10a48a1",
"name" : "Beauty Tribe",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/beauty_tribe_merchant.webp",
"externalId" : "AY4",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/beauty_tribe_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/beauty_tribe_logo.webp",
"url" : "https://beautytribe.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/beauty_tribe_banner.webp",
"tasteMatchScore" : 83,
"distance" : 0.0
},
"offers" : [ {
"id" : "206480",
"name" : "Get up to 10% discount on your purchase at Beauty Tribe",
"description" : "Get up to 10% discount on your purchase at Beauty Tribe till 31-12-2023\nOnline offer",
"validFrom" : "2023-05-03T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "BS21",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/beauty_tribe_offer.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://beautytribe.com/",
"termsAndConditions" : "1.The offer is valid till 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/beauty_tribe_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "arabyads",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "7.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "large-product-range", "online", "perfumery", "health-and-beauty", "cosmetics-and-skincare", "multi-brand", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "c79cb4cd-194f-3a16-b489-e5f592ed12e4",
"name" : "Basharacare",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Basharacare_Merchant_Image.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AD2050",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Basharacare_Merchant_Image.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/AD2050_Basharacare_Logo.webp",
"url" : "https://www.basharacare.com/ae_en",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/AD2050_Basharacare_Banner.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "111477",
"name" : "Get up to 5% off on your purchase at Basharacare",
"description" : "Get up to 5% off on your purchase at Basharacare till 21-12-2022\nOnline offer",
"validFrom" : "2022-06-18T00:00:00.389Z",
"validTo" : "2026-12-21T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "BC76",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Basharacare_Offer_Image.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=1153&aff_id=68962&aff_sub=testuser&aff_sub2=AD2050&aff_sub3=111477&aff_sub4=crayon",
"termsAndConditions" : "1.The offer is valid upto 21-12-2022\n2.The offer is valid for Beauty\n3.The categories/products which are excluded from this offer are: N/A\n4.The offer is applicable for new & repeat users\n5.The offer is valid on app & website purchases only\n6.Coupons are applicable for ADIB card users only\n7.Coupon is applicable for online purchase only\n8.Accidental loss of coupon shall not be covered \n9.Coupons are not transferable \n10.Coupons cannot be replaced if lost.\n11.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/Basharacare_Offer_Image.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "6.4",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "181024",
"name" : "Get up to 5% off on your purchase at Basharacare",
"description" : "Get up to 5% off on your purchase at Basharacare till 26-09-2023\nOnline offer",
"validFrom" : "2023-03-22T00:00:00.389Z",
"validTo" : "2026-09-26T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "BS6",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/basharacare_offer1.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.basharacare.com/ae_en",
"termsAndConditions" : "1.The offer is valid till 26-09-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/basharacare_offer1.webp",
"offerType" : "offline coupon",
"offerSource" : "DCM",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "INFINIA" ]
} ],
"tags" : [ "basic-service", "online", "health-and-beauty", "cosmetics-and-skincare", "multi-brand", "personal-care", "delivery-service", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "c6ef6db1-faf1-3717-b86b-9017b151ecb2",
"name" : "Choithrams",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/choithrams_merchant.webp",
"externalId" : "BO925",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/choithrams_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/choithrams_logo.webp",
"url" : "https://www.choithrams.com/en/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/choithrams_banner.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "153855",
"name" : "Get up to 20% off on your purchase at Choithrams",
"description" : "Get up to 20% off on your purchase at Choithrams till 29-12-2022\nOnline offer",
"validFrom" : "2022-11-29T00:00:00.389Z",
"validTo" : "2026-12-29T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/choithrams_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/choithrams_Offer.webp",
"offerType" : "card linked",
"payoutType" : "cpa_percent",
"offerSource" : "loyolink",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.choithrams.com/en/",
"termsAndConditions" : "1.The offer is valid till 29-12-2022\n2.Offer cannot be clubbed with existing sale items or other active offers or coupons.\n3.Offer is applicable for ADIB card users only\n4.Offer is subject to merchant approval\n5.Offer will be applied automatically on checkout.\n6.Offer is applicable once per user on online grocery deliveries\n7.The offer is valid on AED 250 and above purchases and is capped at AED 50\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "chocolates", "self-service", "supermarket", "food-beverages-and-groceries", "regional", "dairy-products", "standalone-store", "online-and-in-store", "sea-food-products", "large-product-range", "dry-fruits-and-nuts", "confectionery", "meat-products", "groceries", "delivery-service", "fruits-and-vegetables-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "bfa83d8e-b474-3bbc-9982-7c1c7fdbdee4",
"name" : "Dragonmart",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Dragonmart_Merchant_Image.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC2950",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Dragonmart_Merchant_Image.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Dragonmart_Logo.webp",
"url" : "https://www.dragonmart.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/Dragonmart_Banner_2.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "125045",
"name" : "Get up to 5% off on your purchase at DragonMart",
"description" : "Get up to 5% off on your purchase at DragonMart till 31-12-2023\nOnline offer",
"validFrom" : "2022-09-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "DM113",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Dragonmart_Offer_Image.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=1157&aff_id=68962&aff_sub=testuser&aff_sub2=AC2950&aff_sub3=125045&aff_sub4=crayon",
"termsAndConditions" : "1.The offer is valid upto 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/Dragonmart_Offer_Image.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "hardware", "perfumery", "automobile-and-accessories", "video-games", "chocolates", "bicycle-and-accessories", "food-beverages-and-groceries", "health-and-beauty", "cameras-and-accessories", "online", "international", "computer-and-electronics", "confectionery", "tools-and-home-improvement", "regular-retail-store", "basic-service", "home-improvement-supplies", "furniture", "home-audio-and-accessories", "sporting-equipment", "computer-and-accessories", "sports-and-outdoors", "toys", "large-product-range", "apparel-and-accessories", "mobile-phones", "cosmetics-and-skincare", "dry-fruits-and-nuts", "personal-care", "delivery-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "0b9082cf-e35c-3abb-aa55-fb9052bfe4fd",
"name" : "Dubuy",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Dubuy_Merchant_Image.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC2951",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/Dubuy_Merchant_Image.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/Dubuy_Logo.webp",
"url" : "https://www.dubuy.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/Dubuy_Banner.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "125044",
"name" : "Get up to 5% off on your purchase at DuBuy",
"description" : "Get up to 5% off on your purchase at DuBuy till 31-12-2023\nOnline offer",
"validFrom" : "2022-09-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "DB78",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/Dubuy_Offer.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=1158&aff_id=68962&aff_sub=testuser&aff_sub2=AC2951&aff_sub3=125044&aff_sub4=crayon",
"termsAndConditions" : "1.The offer is valid upto 31-12-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/Dubuy_Offer.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "hardware", "perfumery", "automobile-and-accessories", "health-and-beauty", "cameras-and-accessories", "home-appliances", "home-and-kitchen", "home-furnishings", "online", "international", "kids-utilities", "paint-supplies", "kids-furniture", "building-supplies", "computer-and-electronics", "tools-and-home-improvement", "groceries", "regular-retail-store", "basic-service", "kitchen-appliances", "home-improvement-supplies", "furniture", "home-audio-and-accessories", "sporting-equipment", "computer-and-accessories", "toys", "large-product-range", "mobile-phones", "cosmetics-and-skincare", "personal-care", "delivery-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "5e6b5532-0c20-3252-b685-c871a7052f1d",
"name" : "Eyewa",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/eyewa_merchant.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DC23",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/eyewa_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/eyewa_logo.webp",
"url" : "https://eyewa.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/eyewa_banner.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "210394",
"name" : "Get 20% discount on your purchase on top brands at Eyewa",
"description" : "Get 20% discount on your purchase on top brands at Eyewa till 12-07-2023\nOnline offer",
"validFrom" : "2021-09-29T00:00:00.389Z",
"validTo" : "2026-07-12T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "AFF15",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/eyewa_offer.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 18.5,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/x5i039v2x5d193180536b7da7466f8/?i=3&subid=testuser&subid1=DC23&subid2=210394&subid3=crayon",
"termsAndConditions" : "1.The offer is valid till 12-07-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/eyewa_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "23.14",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "1479",
"name" : "Get up to 15% off on your purchase at Eyewa",
"description" : "Get up to 15% off on your purchase at Eyewa till 31-12-2022\nOnline offer",
"validFrom" : "2021-05-01T00:00:00.389Z",
"validTo" : "2026-07-07T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/DC23_1_Eyewa_New_Image.webp.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://eyewa.com/ae-en?aff_sub=testuser&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"termsAndConditions" : "1.\tThe offer is valid upto 31-12-2022\n2.\tThe offer is valid for Opticals, Eyewear on purchase above AED 50 only\n3.\tThe categories/products which are excluded from this offer are: N/A\n4.\tThe offer is valid on app & website purchases only\n5.\tThe offer is applicable for new & repeat users\n6.\tCoupons are applicable for ADIB card users only\n7.\tCoupon is applicable for online purchase only\n8.\tAccidental loss of coupon shall not be covered \n9.\tCoupons are not transferable \n10.\tCoupons cannot be replaced if lost.\n11.\tCustomer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.\tCoupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/DC23_1_Eyewa_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "6.4",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "basic-service", "online", "opticals", "eye-care", "health-and-beauty", "multi-brand", "sunglasses", "delivery-service", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "90d138c4-22fd-3e28-a218-16f44c9af788",
"name" : "Fade Fit",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/fadefit_merchant.webp",
"externalId" : "AC2958",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/fadefit_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/fadefit_logo.webp",
"url" : "https://fadefit.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/fadefit_banner.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "158690",
"name" : "Get up to 22% off on your purchase above AED 100 at Fade Fit",
"description" : "Get up to 22% off on your purchase above AED 100 at Fade Fit till 05-10-2023\nOnline offer",
"validFrom" : "2022-11-16T00:00:00.389Z",
"validTo" : "2026-10-05T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "FF37",
"image" : "https://dpimages.crayondata.com/high-res-image/fadefit_offer.webp",
"payoutType" : "cpa_percent",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=1177&aff_id=68962&aff_sub=testuser&aff_sub2=AC2958&aff_sub3=158690&aff_sub4=crayon",
"termsAndConditions" : "1.The offer is valid upto 05-10-2023\n2.The categories/products which are excluded from this offer are: N/A\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new and repeat users\n5.Coupons are applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable\n9.Customer is redirected to third party website -Terms of third party website will be applicable on the shopping experience\n *The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/fadefit_offer.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "single-brand", "food-beverages-and-groceries", "health-and-beauty", "dairy-products", "online", "international", "apparel-and-accessories", "accessories-store", "confectionery", "natural-organic-products", "nutritional-supplements", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "935c2219-2fcf-3a3a-a745-0097a4bcc6d2",
"name" : "Feelunique",
"description" : "Europe's largest online beauty retailer",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC44_4_Feel_Unique_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC44",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC44_4_Feel_Unique_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/AC44_Feel_Unique_New_Logo.webp.webp",
"url" : "https://mena.feelunique.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/AC44_Feel_Unique_New_Banner.webp.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "1386",
"name" : "Get upto 10% off on your purchase at Feelunique",
"description" : "Get upto 10% off on your purchase at Feelunique till 31-12-2023\nOnline offer",
"validFrom" : "2022-06-18T00:00:00.389Z",
"validTo" : "2026-07-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "FUAC89",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC44_3_Feel_Unique_New_Image.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 5.0,
"offerStatus" : "active",
"url" : "https://go.arabclicks.com/aff_c?offer_id=660&aff_id=68962&aff_sub=testuser&aff_sub2=AC44&aff_sub3=1386&aff_sub4=crayon",
"termsAndConditions" : "1. The offer is valid upto 31-12-2023\n2. The offer is valid for 'Beauty', 'Coupon Offers' only\n3. The offer is applicable for 'Mobile', 'Desktop / Web'\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/AC44_3_Feel_Unique_New_Image.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "arabclicks",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "6.4",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "7127",
"name" : "Get up to 10% off on your purchase at Feel Unique",
"description" : "Get up to 10% off on your purchase at Feel Unique untill 31-12-2022\nOnline offer",
"validFrom" : "2021-09-27T00:00:00.389Z",
"validTo" : "2026-07-07T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/7127_webp_Feelunique.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://row.feelunique.com/?subid=testuser&subid1=AC44&subid2=7127&subid3=crayon",
"termsAndConditions" : "1.\tThe offer is valid upto 31-12-2022 \n2.\tThe offer is valid for Beauty, Fashion, Coupon Offers only\n3.\tThe categories/products which are excluded from this offer are: N/A\n4.\tThe offer is applicable for new & repeat users\n5.\tThe offer is valid on app & website purchases only\n6.\tCoupons are applicable for ADIB card users only\n7.\tCoupon is applicable for online purchase only\n8.\tAccidental loss of coupon shall not be covered \n9.\tCoupons are not transferable \n10.\tCoupons cannot be replaced if lost.\n11.\tCustomer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.\tCoupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/7127_webp_Feelunique.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "5.6",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "regular-retail-store", "large-product-range", "online", "international", "health-and-beauty", "cosmetics-and-skincare", "multi-brand", "personal-care", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "34e17d7f-02ea-38c3-a4e6-da79c0602de2",
"name" : "Foreo",
"description" : "Learn more about LUNA range of facial brushes, ISSA toothbrushes and UFO smart devices to bring your beauty routine on next level.",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC48_2_Foreo_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AC48",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AC48_2_Foreo_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/AC48_Foreo_New_Logo.webp.webp",
"url" : "https://www.foreo.com/ar",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/AC48_Foreo_New_Banner.webp.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "63723",
"name" : "Get up to 19% off on your purchases at Foreo",
"description" : "Get up to 19% off on your purchases at Foreo untill 01-08-2022\nOnline offer",
"validFrom" : "2022-05-19T00:00:00.389Z",
"validTo" : "2026-08-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "DISCOUNT19",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/63723_webp_Foreo.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 3.0,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/f5ur8bbvw2d193180536cddf3bfe84/?i=3&subid=testuser&subid1=AC48&subid2=63723&subid3=crayon",
"termsAndConditions" : "1. The offer is valid upto 01-08-2022\n2. The offer is valid for , Personal Care & Pharmacy only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/63723_webp_Foreo.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "USD",
"payoutValue" : "3.85",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "specialty-store", "online", "large-product-range", "health-and-beauty", "cosmetics-and-skincare", "multi-brand", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "08676416-1149-3616-8ad0-becc0eb38642",
"name" : "French Fragrance",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/DC1007_French_Fragrance_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "DC1007",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/DC1007_French_Fragrance_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/DC1007_French_Fragrance_New_Logo.webp.webp",
"url" : "https://www.frenchfragrance.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/DC1007_French_Fragrance_New_Banner.webp.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "35855",
"name" : "Get up to 7% off on your purchase at French Fragrance",
"description" : "Get up to 7% off on your purchase at French Fragrance till 31-12-2023\nOnline offer",
"validFrom" : "2022-01-25T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "SCHOOL",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/DC1007_French_Fragrance_New_Offer.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.frenchfragrance.com/",
"termsAndConditions" : "1.The offer is valid upto 31-12-2023\n2.The offer is valid for Beauty only\n3.The categories/products which are excluded from this offer are: N/A\n4.The offer is applicable for new & repeat users\n5.The offer is valid on app & website purchases only\n6.Coupons are applicable for ADIB card users only\n7.Coupon is applicable for online purchase only\n8.Accidental loss of coupon shall not be covered \n9.Coupons are not transferable \n10.Coupons cannot be replaced if lost.\n11.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n12.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/DC1007_French_Fragrance_New_Offer.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "DCM",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "3.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "basic-service", "large-product-range", "perfumery", "international", "health-and-beauty", "cosmetics-and-skincare", "multi-brand", "online-and-in-store", "delivery-service", "regular-retail-store" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "fa1b18e2-c060-38f9-841c-1929748e9b2a",
"name" : "Glasseslit",
"description" : "Glasseslit use the high-quality materials, but can offer customers at a high discount because of our high volume, since Glasseslit.com don't have the additional overhead constraints (such as retail rent space, behind-the-counter employees and so on) that your doctor's office or optical must overcome. Since operating this website is much less expensive than a typical retail establishment, Glasseslit is able to pass these savings on to the general public. With no middlemen, no retail-space overhead, Glasseslit.com save our customers on every order!",
"category" : "retail stores",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AD34_3_Glasseslit_New_Image.webp.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "AD34",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/AD34_3_Glasseslit_New_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/AD34_Glasseslit_New_Logo.webp.webp",
"url" : "https://www.glasseslit.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/AD34_Glasseslit_New_Banner.webp.webp",
"tasteMatchScore" : 81,
"distance" : 0.0
},
"offers" : [ {
"id" : "69370",
"name" : "Get 50% off on second frames or lenses purchase at Glasseslit",
"description" : "Get 50% off on second frames or lenses purchase at Glasseslit till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "50OFF",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/456279_Glasseslit_Offer_Image_1.webp.webp",
"payoutType" : "cpa_percentage",
"cashbackValue" : 16.0,
"offerStatus" : "active",
"url" : "https://ad.admitad.com/g/rj9d8recwdd193180536de0721ef8d/?i=3&subid=testuser&subid1=AD34&subid2=69370&subid3=crayon",
"termsAndConditions" : "1. The offer is valid upto 31-12-2023\n2. The offer is valid for , Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on new & repeat users\n5. The offer is applicable for ADIB Covered & Debit card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if lost\n10.Customer is redirected to third party website - Terms of third party website will be applicable on the shopping experience\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/456279_Glasseslit_Offer_Image_1.webp.webp",
"offerType" : "offline coupon",
"offerSource" : "Admitad",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "",
"payoutValue" : "18.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "specialty-store", "online", "opticals", "large-product-range", "apparel-and-accessories", "multi-brand", "sunglasses", "delivery-service", "basic-service" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
} ],
"created" : "2026-04-21T05:36:56.336232674Z"
}, {
"id" : "Jy0GD13xS86YlAQjaF2e3Q",
"listName" : "Test Campaign Manually Curated Campaign - 999",
"listType" : "50000002",
"totalCount" : 1,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "2a8b485b-4e1e-32dd-8107-14e4a467b163",
"name" : "Papillon Cake",
"category" : "dining",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_merchant.webp",
"distance" : 0.0,
"externalId" : "LL1064",
"offersSortedByRank" : true,
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_logo.webp",
"tasteMatchScore" : 76,
"url" : "https://papilloncake.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_banner.webp"
},
"offers" : [ {
"id" : "181065",
"name" : "Get up to 15% off on your purchase at Papillon Cake",
"description" : "Get up to 15% off on your purchase at Papillon Cake till 21-04-2023\nOnline offer\nThe offer doesn’t apply to alcohol, pork products, tobacco, and other non-shari’a compliant items/product",
"validFrom" : "2023-03-22T00:00:00.389Z",
"validTo" : "2026-04-21T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB15",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer2.webp",
"payoutType" : "cpa_percent",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://papilloncake.com/",
"termsAndConditions" : "1.The offer is valid upto 21-04-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer2.webp",
"offerType" : "offline coupon",
"offerSource" : "loyolink",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "INFINIA" ]
} ],
"tags" : [ "bakery", "online-order", "take-away", "cafe", "cakes", "affordable", "delivery-services", "general", "fast-food" ],
"cities" : [ "all", "Dubai" ],
"geoCodes" : [ {
"latitude" : "25.11722046",
"longitude" : "55.23685859"
} ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : true
} ],
"created" : "2026-04-21T05:36:56.418321512Z"
}, {
"id" : "FmXD754MSt2JnXOODTqTSQ",
"listName" : "Test Campaign Manually Curated Campaign - Update - 2",
"listType" : "900037",
"totalCount" : 1,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "2a8b485b-4e1e-32dd-8107-14e4a467b163",
"name" : "Papillon Cake",
"category" : "dining",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_merchant.webp",
"distance" : 0.0,
"externalId" : "LL1064",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_merchant.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_logo.webp",
"tasteMatchScore" : 76,
"url" : "https://papilloncake.com/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/papillon_cake_banner.webp"
},
"offers" : [ {
"id" : "181065",
"name" : "Get up to 15% off on your purchase at Papillon Cake",
"description" : "Get up to 15% off on your purchase at Papillon Cake till 21-04-2023\nOnline offer\nThe offer doesn’t apply to alcohol, pork products, tobacco, and other non-shari’a compliant items/product",
"validFrom" : "2023-03-22T00:00:00.389Z",
"validTo" : "2026-04-21T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIB15",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer2.webp",
"payoutType" : "cpa_percent",
"redeemed" : false,
"claimed" : false,
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://papilloncake.com/",
"termsAndConditions" : "1.The offer is valid upto 21-04-2023\n2.The categories/products which are excluded from this offer are:NA\n3.The offer is valid on app & website purchases only\n4.The offer is applicable for new & repeat users\n5.Offer is applicable for ADIB card users only\n6.Coupon is applicable for online purchase only\n7.Accidental loss of coupon shall not be covered \n8.Coupons are not transferable \n9.Coupons cannot be replaced if lost.\n10.Customer is redirected to third-party website - terms of third-party website will be applicable on the shopping experience\n11.Coupons cannot be clubbed with existing sale items or other active offers or coupons.\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/papillon_cake_offer2.webp",
"offerType" : "offline coupon",
"offerSource" : "loyolink",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"payoutValue" : "0.0"
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "INFINIA" ]
} ],
"tags" : [ "bakery", "online-order", "take-away", "cafe", "cakes", "affordable", "delivery-services", "general", "fast-food" ],
"cities" : [ "all", "Dubai" ],
"geoCodes" : [ {
"latitude" : "25.11722046",
"longitude" : "55.23685859"
} ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : true
} ],
"created" : "2026-04-21T05:36:56.415373125Z"
} ],
"categories" : [ {
"label" : "Dining",
"value" : "dining"
}, {
"label" : "Retail",
"value" : "retail stores"
}, {
"label" : "Travel",
"value" : "travel"
}, {
"label" : "Entertainment",
"value" : "entertainment"
} ],
"city" : "Mumbai"
}
6.5.2. Example 2: Get obop choices for specific category and list type
In Swagger UI, Expand 'OBOP Choice API' and select '/api/v3/obop/choice/list'
| Name | Description |
|---|---|
|
User access token |
|
Client asset identifier (eg., OBOP) |
| Path | Type | Description |
|---|---|---|
|
|
Client identifier |
|
|
Known user identifier |
|
|
Anonymous user identifier |
|
|
Campaign identifier |
|
|
Category filter (default: all) |
|
|
User location details |
|
|
City name |
|
|
City name in Spanish (if available) |
|
|
List of choice list types to be fetched |
|
|
Type of choice list (e.g., BIGBRANDS, RESUME, TRENDING) |
|
|
Optional filters for this list type |
|
|
Optional sort criteria for this list type |
|
|
Total number of items to be returned |
|
|
Number of campaigns to be returned |
|
|
Language (default: en) |
|
|
Flag to include campaigns in response |
|
|
Flag to include offers in response (default: true) |
|
|
Request timestamp in ISO-8601 format |
|
|
User timezone |
|
|
Applicable offer source |
POST /api/v3/obop/choice/list HTTP/1.1
Content-Type: application/json
User-Access-Token: testuser
client-asset-id: OBOP
Content-Length: 526
Host: localhost:8080
{
"clientId" : null,
"knownUserId" : null,
"anonymousUserId" : null,
"campaignId" : null,
"category" : "travel",
"location" : {
"city" : "Mumbai",
"cityES" : "Mumbai"
},
"choiceList" : [ {
"choiceListType" : "POPULAR_OFFERS",
"filters" : null,
"sortBy" : null
} ],
"choiceCount" : 12,
"campaignCount" : 0,
"lang" : "en",
"includeCampaigns" : false,
"includeOffers" : true,
"servedAt" : "2026-04-21T05:36:52.552Z",
"timeZone" : null,
"applicableOfferSource" : "LIFESTYLE"
}
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 37915
{
"id" : "068d826e-7762-4d66-87de-a2f7cb0171bd",
"choices" : [ {
"id" : "UMhrYqjNQpG-U0r8Q4Ys9w",
"listName" : "Trending offers in India",
"listType" : "POPULAR_OFFERS",
"totalCount" : 6,
"offerCardType" : "normal",
"items" : [ {
"item" : {
"id" : "39c3f5d4-8e6d-37be-b521-7b20bc4507b5",
"name" : "St Regis At Saadiyat Island",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/The_St_Regis_Saadiyat_Island_Resort_Offer_Image.webp.webp",
"dominantColorCode" : "#fff57a",
"externalId" : "DP38",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/The_St_Regis_Saadiyat_Island_Resort_Offer_Image.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB1316_The_St._Regis_Amman_New_Logo.webp.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/The_St_Regis_Saadiyat_Island_Resort_Banner.webp.webp",
"tasteMatchScore" : 91,
"distance" : 0.0
},
"offers" : [ {
"id" : "80514",
"name" : "Get up to 15% off on your stay at St Regis at saadiyat Island",
"description" : "Get up to 15% off on your stay at St Regis at saadiyat Island till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/The_St_Regis_Saadiyat_Island_Resort_Merchant_Image.webp.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/The_St_Regis_Saadiyat_Island_Resort_Merchant_Image.webp.webp",
"offerType" : "offline coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=the-st-regis-saadiyat-island-resort-1333855",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : P.O. Box 54345, Abu Dhabi, United Arab Emirates ; Contact : reservations.saadiyat@stregis.com\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "business-traveller", "family-room", "room-service", "bathrobe", "couple", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "sofitel", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ]
},
"liked" : true,
"wishlisted" : false
}, {
"item" : {
"id" : "cdb0a2c5-6b4f-3f61-bedb-6a20f3cc9fc9",
"name" : "The Ritz-Carlton",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1308-TheRitzCarltonAbuDhabiGrandCanal.webp.webp",
"dominantColorCode" : "#3750ad",
"externalId" : "DP35",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1308-TheRitzCarltonAbuDhabiGrandCanal.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB1308_The_Ritz_Carlton_Abu_Dhabi_Grand_Canal_New_Logo.webp.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/BB1308-TheRitzCarltonAbuDhabiGrandCanal.webp.webp",
"tasteMatchScore" : 85,
"distance" : 0.0
},
"offers" : [ {
"id" : "80529",
"name" : "Get up to 15% off on your stay at The Ritz-Carlton, Dubai",
"description" : "Get up to 15% off on your stay at The Ritz-Carlton, Dubai till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1308_The_Ritz_Carlton_Abu_Dhabi_Grand_Canal_Merchant_Card_Image.webp.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1308_The_Ritz_Carlton_Abu_Dhabi_Grand_Canal_Merchant_Card_Image.webp.webp",
"offerType" : "offline coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/ja/cheap-hotels/profile/The-Ritz-Carlton-Dubai-1507233",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : P.O. Box 26525, Al Mamsha Street, Dubai, United Arab Emirates ; Contact : 97143994000/dxbrz.leads@ritzcarlton.com\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "business-traveller", "family-room", "room-service", "bathrobe", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "shuttle-service", "security", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "acb1cfbc-0ef4-3e59-9a4c-89168ce167e7",
"name" : "Fairmont Hotel",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP189_Fairmont_Card.webp",
"dominantColorCode" : "#FBB3BD",
"externalId" : "DP189",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/DP189_Fairmont_Card.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/resized/DP189_Fairmont_logo.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/resized/DP189_Fairmont_Banner.webp",
"tasteMatchScore" : 85,
"distance" : 0.0
},
"offers" : [ {
"id" : "98319",
"name" : "Get up to 15% off on your stay at Fairmont hotel, Cairo",
"description" : "Get up to 15% off on your stay at Fairmont hotel, Cairo until 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98319_Fairmont_Offer.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/resized/offer/98319_Fairmont_Offer.webp",
"offerType" : "offline coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=fairmont-nile-city-hotel-1307205",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.The offer is valid on bookings done on rehlat.ae website or app only \n4.Offer is not valid in conjunction with any other offer, discount, and special promotion\n5.Offer is valid for ADIB card users only\n6.Offer is subject to merchant approval and till stock is available\n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n *The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "jacuzzi", "suite", "front-desk", "shopping-outlets", "banquet-hall", "king-room", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "luxury-hotel", "backpacker", "business-traveller", "family-room", "couple", "room-service", "bathrobe", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "garden", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "city-view", "luggage-storage", "airport-transportation", "desk", "queen-room", "soundproof-room", "museum", "security", "classical-design", "swimming-pool", "fitness-centre", "atm", "free-internet", "air-conditioner", "hair-dryer", "fairmont", "large-beds" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "4f1a4ec7-9de5-3fa6-ad85-7964144caf39",
"name" : "Rixos Premium Saadiyat Island",
"description" : "Rixos Premium Saadiyat Island is a unique resort; where exclusivity and luxury define every experience, every time. Our luxurious family getaway is located on the pristine beach of Saadiyat Island with its clear blue waters and fine white sands overlooking the Arabian Gulf. An Arabian paradise island offering wonderful nature and cultural highlights, including the newly opened Louvre. For those wishing to explore the rich culture and heritage of Abu Dhabi, downtown is only a short ride away.",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1143-RixosBabAlBahrUltraAllInclusive.webp.webp",
"dominantColorCode" : "#B39DDC",
"externalId" : "DP78",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1143-RixosBabAlBahrUltraAllInclusive.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB1143_Rixos_Bab_Al_Bahr_Ultra_All_Inclusive_New_Logo.webp.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/BB1143-RixosBabAlBahrUltraAllInclusive.webp.webp",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "81383",
"name" : "Get up to 15% off on your stay at Rixos Premium Saadiyat Island",
"description" : "Get up to 15% off on your stay at Rixos Premium Saadiyat Island till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1143_Rixos_Bab_Al_Bahr_Ultra_All_Inclusive.webp.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1143_Rixos_Bab_Al_Bahr_Ultra_All_Inclusive.webp.webp",
"offerType" : "offline coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=hotel-rixos-premium-saadiyat-island-1250620",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10. The offer is applicable at : Sheikh Khalifa bin Zayed Al Nahyan Road, Abu Dhabi, United Arab Emirates ; Contact : RESERVATION.SAADIYAT@RIXOS.COM/54.43332\n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "front-desk", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "backpacker", "business-traveller", "family-room", "room-service", "bathrobe", "couple", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "business-centre", "dry-cleaning", "luggage-storage", "airport-transportation", "tour-desk", "modern-design", "desk", "mini-bar", "shuttle-service", "bar", "sofitel", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "77a03164-ee61-368e-9841-bd5e4a51ea6e",
"name" : "Grosvenor House",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1456_Jw_Marriott_Grosvenor_House_London.webp.webp",
"dominantColorCode" : "#FBB3BD",
"externalId" : "DP58",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-mi/BB1456_Jw_Marriott_Grosvenor_House_London.webp.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-logo/BB1456_Jw_Marriott_Grosvenor_House_London_New_Logo.webp.webp",
"url" : "https://www.rehlat.ae/",
"merchantBannerImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-banner/BB1456-JwMarriottGrosvenorHouseLondon.webp.webp",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "81396",
"name" : "Get up to 15% off on your stay at Grosvenor House",
"description" : "Get up to 15% off on your stay at Grosvenor House till 31-12-2023\nOnline offer",
"validFrom" : "2022-05-30T00:00:00.389Z",
"validTo" : "2026-12-31T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "all" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "ADIBREHLAT",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1456-JwMarriottGrosvenorHouseLondon_New_Image.webp.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/adib-22ndjun-oi/BB1456-JwMarriottGrosvenorHouseLondon_New_Image.webp.webp",
"offerType" : "offline coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "rehlat",
"howToRedeem" : "Press the button below & follow the steps to redeem this offer.",
"currency" : "AED",
"cashbackValue" : 0.0,
"offerStatus" : "active",
"url" : "https://www.rehlat.ae/en/cheap-hotels/searchresults?aid=jw-marriott-grosvenor-house-london-1532920",
"termsAndConditions" : "1.Offer valid until 31-12-2023\n2.Coupons can be used 5 times per email Id\n3.Offer is not valid in conjunction with any other offer, discount, and special promotion\n4.Offer is valid for ADIB card users only\n5.Offer is subject to merchant approval and till stock is available\n6.The offer is valid on bookings done on rehlat.ae website or app only \n7.Coupon code is valid on app & website\n8.Coupons are not transferable\n9.Customer is redirected to third party website - Terms of third-party website will be applicable on the shopping experience\n10.The offer is applicable at : 86-90 Park Lane, W1K 7TN, London, United Kingdom \n*The discount detailed above will be fully and solely borne by the merchant.\n**ADIB Covered Card Terms and Conditions and the General Terms and Conditions for Accounts and Islamic Banking Services shall apply which prohibit the Cardholder to use the ADIB Card to purchase any non-Shari'a compliant items as determined by the Internal Sharia Supervisory Committee of ADIB including but not limited to, alcohol, pork products, gambling, tobacco, casinos, bars, nightclubs, merchants selling and/or providing pornography related products and/or services.",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
} ],
"tags" : [ "suite", "front-desk", "banquet-hall", "king-room", "shopping-outlets", "non-smoking-room", "tv", "designated-smoking-area", "5-star", "landmark", "house-keeping", "hot-tub", "spa", "24-by-7-support", "sauna", "free-toiletries", "backpacker", "business-traveller", "family-room", "room-service", "bathrobe", "couple", "disabled-friendly", "free-parking", "concierge", "multilingual-staff", "photocopier", "kids-and-family", "parks-and-gardens", "currency-exchange", "restaurant", "laundry-service", "library", "business-centre", "dry-cleaning", "city-view", "airport-transportation", "tour-desk", "luggage-storage", "modern-design", "desk", "mini-bar", "ballroom", "shuttle-service", "security", "sofitel", "bar", "swimming-pool", "fitness-centre", "large-group", "atm", "free-internet", "air-conditioner", "hair-dryer", "large-beds", "hotel" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ]
},
"liked" : false,
"wishlisted" : false
}, {
"item" : {
"id" : "8a72244c-e903-33c3-a5cd-e19034a64949",
"name" : "Via.com",
"category" : "travel",
"itemType" : "MERCHANT",
"active" : true,
"properties" : {
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"dominantColorCode" : "#FFFFFF",
"externalId" : "HDFC15903",
"curatedImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"brandLogo" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"url" : "https://in.via.com/",
"tasteMatchScore" : 84,
"distance" : 0.0
},
"offers" : [ {
"id" : "178714",
"name" : "Use coupon code: FLYVIAHDFC, Get Flat 7% Instant Discount upto Rs 7000 on international fligts, minimum booking value should be Rs 10000",
"description" : "Flat Rs.500 off on One way and Flat Rs.1000 off on Round trip on Domestic Flights\nFlat Rs.300 on one way and Rs.600 on round trip on International Flights\nFlat 2% off on Hotel booking\nFlat 3% on Bus booking",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFC",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"payoutType" : "cpa_flat",
"offerVariant" : "Consumer Durable Loan (CDL)",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "1. Offer valid on HDFC Credit cards only \n\n2. Offer on all days\n\n3. This offer is funded by Via.com",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"offerSource" : "CARDS & EASYEMI",
"howToRedeem" : "use promo code VIAHDFC while checkout for Domestic flights\n\nuse promo code VIAHDFC while checkout for International flights\n\nuse promo code VIAHDFCHTL while checkout for Hotels\n\nuse promo code VIAHDFCBUS while checkout for Buses",
"currency" : "",
"payoutValue" : "500",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "TEST CARDS" ]
}, {
"id" : "287456",
"name" : "Rs. 500 off on Minimum Billing of Rs. 4500 on Domestic Flights.\nRs. 1000 off on Minimum Billing of Rs. 10,000 on International Flights.\nRs. 500 off on Minimum Billing of Rs. 4000 on Hotels Booking.\nRs. 100 off on Minimum Billing of Rs. 1200 on Bus Booking.",
"description" : "Rs. 500 off on Minimum Billing of Rs. 4500 on Domestic Flights.\nRs. 1000 off on Minimum Billing of Rs. 10,000 on International Flights.\nRs. 500 off on Minimum Billing of Rs. 4000 on Hotels Booking.\nRs. 100 off on Minimum Billing of Rs. 1200 on Bus Booking.",
"validFrom" : "2023-10-20T00:00:00.389Z",
"validTo" : "2026-11-30T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCities" : [ "all" ],
"offerCountries" : [ "India" ],
"offerGeoCodes" : [ {
"latitude" : null,
"longitude" : null
} ],
"properties" : {
"redemptionCode" : "VIATHRIWE",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via.webp",
"payoutType" : "cpa_flat",
"cashbackValue" : 0.0,
"offerVariant" : "EASY EMI",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "The Offer is valid till 30th November 2024\nUnder this Offer, Cardholders gets Up to 1000/- Rs. off\nOffer valid only on online orders placed via https://in.via.com/\nOffer is valid on flights/hotels/bus transactions only.\nOffer is valid on website/m-site/app transactions. \nOffer is valid once per user per product per month during offer duration.\nOther generic platform t&c's will be applicable.\nFlat discount starts from the minimum Billing as stated in the offer construct table. Flat discount remains the same for any value above minimum order for all the products.\nThe Exclusive offers/discounts under these Programs cannot be clubbed with any other offer.\nThe Offer is available only upon making full payment by a valid and unexpired Mastercard card issued in India.\nOffer is not valid for Cash on Delivery.\nTo redeem this offer, cardholders should login to their account or create an account, if they are not registered.\nThe Offer is non-transferable and cannot be exchanged for cash or cheque or any form of credit.\nTotal spends will be calculated on the basis of product cost only excluding all taxes, GST, delivery charges, etc. Any taxes or liabilities or charges payable to the Government or any other authority or body, if any, shall be borne directly by the cardholder and/ or billed to the account of the cardholder\nAny dispute regarding delivery, service, suitability, merchantability, availability or quality of the offer/or product/services availed under this offer must be addressed in writing, by the cardholder directly to info@thriwe.com. Mastercard or the issuing bank will not be liable for the same.\nCardholders are not bound in any way to participate in the Offer. Any participation shall be voluntary and all participants understand, acknowledge and agree that the Offer is purely on a best effort basis and Mastercard does not assume any liability whatsoever regarding the Offer, the delivery of services or any incidental matter.\nNo two offers can be clubbed together and no additional discount/offer will be applicable.\nAny cardholder who utilises, participates in, or attempts to utilise or participate in the Mastercard Card Offers programme, irrevocably agrees to the following: Mastercard will not be liable under contract, tort or any other theory of law for any claim regarding loss or damage howsoever incurred in relation to the use (or attempted use) of the Offer; and accordingly, the cardholder will not make any claim against Mastercard regarding the same.\nEach benefit/privilege may be subject to additional terms and conditions imposed by Via.com. Cardholders are solely responsible for checking and complying with the same.\nThese terms and conditions shall be governed by the laws of India and any dispute arising out of or in connection with these terms and conditions shall be subject to the exclusive jurisdiction of the courts in Mumbai.\nMastercard reserves the right to add, alter, modify, change or vary any of these terms and conditions or to replace, wholly or in part, this Offer by another offer, whether similar or not, or to withdraw it altogether at any point in time, without any prior notice.",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via.webp",
"offerType" : "online coupon",
"offerSource" : "CARDS & EASYEMI",
"howToRedeem" : "Get Specials offers at Via.com\n\nRs. 500 off on Minimum Billing of Rs. 4500 on Domestic Flights.\nRs. 1000 off on Minimum Billing of Rs. 10,000 on International Flights.\nRs. 500 off on Minimum Billing of Rs. 4000 on Hotels Booking.\nRs. 100 off on Minimum Billing of Rs. 1200 on Bus Booking.\nUse promocode VIATHRIWE at checkout and payment by Mastercard card.\n\nLink: https://in.via.com/\n\nOffer valid till 30th November 2024",
"currency" : "",
"payoutValue" : "500.0",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC"
}, {
"id" : "178727",
"name" : "Use coupon code: FLYVIAHDFC, Get Flat 7% Instant Discount upto Rs 7000 on international fligts, minimum booking value should be Rs 10000",
"description" : "Use coupon code: FLYVIAHDFC $ Get Flat 7% upto Rs 7000 Instant Discount oxn international flights $ minimum booking value should be Rs 10000",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFCHTL",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "SMARTBUY",
"howToRedeem" : "1. Log in to website\n\n2. Add products to your cart\n\n3. Pay using your HDFC Bank Cards to avail this offer",
"currency" : "",
"payoutValue" : "2",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "Applicable once per month",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "MILLENIA" ]
}, {
"id" : "178728",
"name" : "Using your HDFC Bank Card avail this offer",
"description" : "Flat 3% on Bus booking",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFCBUS",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"payoutType" : "cpa_percentage",
"offerSource" : "SMARTBUY",
"howToRedeem" : "use promo code VIAHDFCBUS while checkout?for Buses in https://in.via.com/",
"currency" : "",
"payoutValue" : "3",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "1. Offer valid on HDFC Credit cards only \n2. Offer on all days\n3. This offer is funded by Via.com",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "IRCTC" ]
}, {
"id" : "178726",
"name" : "Using your HDFC Bank Card avail this offer",
"description" : "Flat Rs.500 off on One way and Flat Rs.1000 off on Round trip on Domestic Flights\nFlat Rs.300 on one way and Rs.600 on round trip on International Flights\nFlat 2% off on Hotel booking\nFlat 3% on Bus booking",
"validFrom" : "2024-10-10T00:00:00.389Z",
"validTo" : "2026-12-01T23:59:59.389Z",
"partner" : true,
"isOnline" : true,
"sensitiveFlag" : false,
"offerActive" : true,
"offerCountries" : [ "India" ],
"properties" : {
"redemptionCode" : "VIAHDFC",
"curatedOfferImage" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"image" : "https://dpimages.crayondata.com/high-res-image/hdfc/1280x800/Via_com.webp",
"offerType" : "online coupon",
"payoutType" : "cpa_flat",
"offerSource" : "SMARTBUY",
"howToRedeem" : "use promo code VIAHDFC while checkout for International flights in https://in.via.com/",
"currency" : "",
"payoutValue" : "300",
"offerStatus" : "active",
"url" : "https://in.via.com/",
"termsAndConditions" : "1. Offer valid on HDFC Credit cards only \n2. Offer on all days\n3. This offer is funded by Via.com",
"claimed" : false,
"redeemed" : false
},
"appplicableForClients" : "CLIENT_SPECIFIC",
"applicableCards" : [ "REGALIA" ]
} ],
"tags" : [ "travel-agency", "travel-agencies-and-operators", "tour", "air-ticket-booking", "train-ticket-booking", "bus-ticket-booking", "hotel-booking" ],
"cities" : [ "all" ],
"isOnline" : true,
"merchantType" : [ "online" ],
"isHyperLocal" : false
},
"liked" : false,
"wishlisted" : false
} ],
"created" : "2026-04-21T05:36:53.74311755Z"
} ],
"city" : "Mumbai"
}
6.5.3. Example 3: Get user id map data for given mobile number hash id
In Swagger UI, Expand 'OBOP Choice API' and select '/api/v3/obop/user/lookUpId'
| Parameter | Description |
|---|---|
|
Hash identifier for user ID mapping lookup |
GET /api/v3/obop/user/lookUpId?hashId=2a77697015112da11e08660864cdd698563bdf6ff1218f840728c53cf9dba6e7 HTTP/1.1
Host: localhost:8080
And you should be getting output as below:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 194
{
"id" : null,
"uuid" : "5e419938-936a-468e-af44-c692dd48b84f",
"userId" : null,
"hashId" : "2a77697015112da11e08660864cdd698563bdf6ff1218f840728c53cf9dba6e7",
"createdByApp" : false
}
7. FAQs
7.1. I am getting '401 Unauthorized' error while hitting the Choice API from Swagger UI.
You may be missing the API key in the request to the Choice API. In Swagger UI, click on 'Authorize' button in the top right corner and enter the API key provided in the 'api_key' text box. Click on 'Authorize' button to confirm the API key.
7.2. How can I call the Choice API from curl?
The curl request for an API can be easily retrieved from Swagger UI. Make a request in Swagger UI and below the response, there is a curl section from where the actual curl request can be retrieved.
7.3. How would I use the API key in a REST call outside Swagger UI?
The API key would be sent in the header to the REST call. Please refer the curl request in Swagger UI to understand how to use it.
7.4. What is 'User-Access-Token'?
The user access token is what uniquely identifies a user in maya.ai. It is an anonymized user ID. It is required to provide accurate choices to the user based on their behaviour.
7.5. The Choice API request JSON is very large, is there an easy way to key it in Swagger UI?
Yes, it is large, because the Choice API is designed to be simple and easy to integrate. But you don’t need to type/copy-paste the entire JSON each time. Also, please read a little on Swagger UI to make the most out of our API during development.
7.6. Are all the fields in the request JSON required?
No, if you don’t have enough information for a field, it can be ignored. maya.ai will try its best to provide relevant choices based on the user’s past behaviour. However, it is recommended to provide all the available information to get choices more relevant to the actual context.
7.7. Can I use a different date format than given in the example?
Please use the same date format as in the example. It is the standardized ISO 8601 date-time format. We give you the option to use either UTC relative time or explicitly including the time zone information.