Use the getAds POST call to return Ads for a given Customer
Use the getAdsPOST call to return Ads for a given Customer which are appropriate for a particular Ad Channel and Inputs.
POST /v2/ads/getAdsRequest
| Property | Type | Required | Description |
|---|---|---|---|
| channel | Channel | Yes | Filters results by ad channel |
| sections | Section[] | No | Array of sections (FI-specific) |
| categoryIds | string[] | No | Value from Ad Category list |
| curationIds | string[] | No | Value from predefined value for a specific campaign list |
| activationStates | AdActivationState[] | No | Limit ads by activation state. If not supplied then NEW, SERVED and ACTIVATED ads will all be returned |
| visibilityStates | AdVisibilityState[] | No | Default is to return only ads with visibilityStatus of VISIBLE, this field can be used to also return PARKED ads |
| redemptionStates | AdRedemptionState[] | No | Use to limit ads returned to ones that are redeemed, for example |
| maxAdLimit | int | No | The maximum number of ads to be returned. If not set, then return all available ads in all states (including expired). If set, and the returned ads exceeds the amount requested, pagination will be used. |
| returnMetadata | boolean | No | If supplied, assets such as logo images and AdCopy will be returned |
| includeExpiredAds | boolean | No | If enabled, ended ads will be included in the results. Note: The default lookback period is 120 days. |
| customerLocation | CustomerLocation | No | When requesting store locations with GetAds, you must provide the customer’s location, using either latitude/longitude (lat/long) or a postal code. If both lat/long and postal code are provided, only lat/long will be used for greater accuracy. Valid input requires either lat/long or a postal code. If neither is provided, the system will default to using the user’s billing postal code. In the future, frequently used shopping postal codes may also be used as a fallback for better targeting. |
| returnStoreLocationsWithinRadius | boolean | No | If returnStoreLocationWithinRadius is true and storeLocationRadiusInMeters is set, only store locations within the given radius will be returned otherwise we return store locations within 10 miles radius (approx. 16093m) |
| storeLocationRadiusInMeters | int | No | If a value greater than 48,000 meters is provided for storeLocationsRadiusInMeters, the API will only return stores within a 30-mile (48,000 meters) radius. The maximum number of store locations returned within this radius is 25. For example, if there are 35 Starbucks locations within 30 miles, only the 25 closest locations will be returned. |
| expiredAdsLookBackWindow | int | No | Limit the expired ads being returned based on the specified lookback period. If not supplied, all served, activated, or redeemed ads that expired in the past 120 days will be returned. Values: a positive number between 0 and 120 (inclusive). |
Response
| Property | Type | Description |
|---|---|---|
| ads | Map<string, Ad> | A Map of ads data, keyed by adId |
| rankings | AdRankings | See the AdRankings page for more information. |
| categories | Map<string, CategoryGroup> | A Map of ad categories, keyed by adId. See the CategoryGroup page for more information. |
| adStoreLocations | Map<string,AdstoreLocations> | This object will store pairs of AdId and their corresponding lists of store locations. The adStoreLocations object will return merchant information for stores located within the specified radius. |
Ad Rankings
The ordering for a given section can be found in the rankings object of the response.
The rankings object will always include a catch-all ranking type titled all, which provides a general, overall ranking of ads.
In the future, Cardlytics will support other ranking types by section, category, and curation.
Note: The Ad object is a map, not an array, so it will not necessarily be returned in ranking order.
To display ads in the correct order, iterate over therankingsarray and look up eachadIdin the ads map.
Example:
const data = /* your JSON object */;
// Extract rankings and ads
const rankings = data.rankings.all;
const adsMap = data.ads;
// Create an ordered array of ads based on rankings
const orderedAds = rankings
.map(adId => adsMap[adId])
.filter(ad => ad !== undefined); // Remove any missing ad IDs
// Example: Log merchant names in ranking order
orderedAds.forEach((ad, index) => {
console.log(`${index + 1}. ${ad.merchantName}`);
});Ad Assets
Ads and creatives are available as optional objects in the response.
Progression of Ad States
Ads have three stateful properties:
Activation State
Activation state transitions in the following order.
NEWSERVEDACTIVATED
These states are mutually exclusive to each other.
Redemption State
Once an ad is activated, it can be redeemed. AdRedemptionState can progress through these states:
FULLY_REDEEMED
Important
The PROCESSING redemption state only applies for FIs which have enabled RTM. In this case, an auth transaction is present that would redeem this offer once processed.
Visibility State
AdVisibilityState is VISIBLE (default) which indicates whether the Ad should be visible to the customer.
Ad Serve Token
Each returned ad will include a unique AdServeToken. This token encodes metadata about each ad and must therefore be included in events sent to Cardlytics servers. Note that AdServeToken token will change each time an ad is returned by Cardlytics in a /getAds response, so make sure to always use the latest one in events.
Important
Serve tokens expire after one hour.
Examples
Request a max of 50VISIBLE Ads for the "EMAIL" advertising channel
POST /v2/ads/getAds{
"channel": "Email",
"sections": ["Landing", "Summary"],
"maxAdLimit": 50,
"visibilityStates": ["VISIBLE"]
}{
"customerLocation": {
"latlong": {
"latitude": 40.734293607,
"longitude": -73.991043025
}
},
"returnStoreLocationsWithinRadius": "true",
"storeLocationRadiusInMeters": 5000,
"sections": [
"Map"
],
"maxAdLimit": 50,
"visibilityStates": [
"VISIBLE"
]
}{
"channel": "Email",
"sections": ["Landing", "Summary"],
"maxAdLimit": 50,
"visibilityStates": ["VISIBLE"],
"includeExpiredAds":true,
"expiredAdsLookBackWindow":120
}
Response
200 OK{
"requestId": "9ee07670-7dcf-4036-a912-1228278286fc",
"ads": {
"1000219623": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMjE5NjIzIgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-02-01T04:59:59Z",
"merchantName": "Turo",
"reward": {
"rewardType": "FIXED_AMOUNT_PURCHASE",
"rewardAmount": 10.0,
"maxRewardAmount": 10.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 100.0,
"purchaseChannels": [
"Online"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": ["WELCOME_BASKET", "PUBLISHER_FUNDED"]
},
"activationState": "NEW",
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/96e02bdee9d24ff2860bf4a352a85565.png",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/d459a5012c0d412380a667bcda6dd8dc.png",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/6cb83f15d9e94ab4a5f252c3e78c0f62.jpg",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/420193f078bc4dffa10e4e232678a2dd.jpg",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/420193f078bc4dffa10e4e232678a2dd.jpg",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "Turo is the world’s largest car sharing marketplace, where you can book the perfect vehicle for any occasion from a trusted Turo host. Whether you're flying in for vacation or looking for a car in your neighborhood to get away for the weekend, you can choose from a totally unique selection of nearby cars — from the everyday to the extraordinary.",
"preMessage": "Earn $10 CASH on your Turo purchase!",
"rewardCopy": "Earn $10 CASH on your Turo purchase, <b>when you spend $100 or more. Offer valid online only.</b>",
"postMessage": "Earn $10 CASH on your Turo purchase, <b>when you spend $100 or more. Offer valid online only.</b><br/><br/>Turo is the world’s largest car sharing marketplace, where you can book the perfect vehicle for any occasion from a trusted Turo host. Whether you're flying in for vacation or looking for a car in your neighborhood to get away for the weekend, you can choose from a totally unique selection of nearby cars — from the everyday to the extraordinary.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6LOxx&xt=dgsq+a7wrljsFmf/0cYcwGRwcvAYgUQkmttLBjow/HRS3LjaKIBOsa0z5Hx76TF0' aria-label='Book Now'>Book Now</a><br/><br/>Offer expires Jan 31, 2026. Offer valid online only at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=VJNE2&xt=dgsq+a7wrljsFmf/0cYcwGRwcvAYgUQkmttLBjow/HRS3LjaKIBOsa0z5Hx76TF0' aria-label='turo.com'>turo.com</a>. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date. Offer valid one time only.",
"thankYouMessage": "Thank you for your Turo purchase.",
"headline": "$10 CASH",
"shortPreMessage": "Earn $10 CASH!",
"termsAndConditions": "Offer expires Jan 31, 2026. Offer valid online only at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=VJNE2&xt=dgsq+a7wrljsFmf/0cYcwGRwcvAYgUQkmttLBjow/HRS3LjaKIBOsa0z5Hx76TF0' aria-label='turo.com'>turo.com</a>. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date. Offer valid one time only."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"bookNow": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=6LOxx&xt=dgsq+a7wrljsFmf/0cYcwGRwcvAYgUQkmttLBjow/HRS3LjaKIBOsa0z5Hx76TF0"
}
}
}
},
"isAffiliateMarketing": false
},
"1000227403": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMjI3NDAzIgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-02-02T04:59:59Z",
"merchantName": "eBay",
"reward": {
"rewardType": "PERCENT_AMOUNT_PURCHASE",
"rewardAmount": 2.0,
"maxRewardAmount": 10.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 0.2,
"purchaseChannels": [
"Online"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"activationState": "SERVED",
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/6185e1e99cc0474c87ea09f3d17f3e00.png",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/2d9aecd3182e40869f687fdae561532b.png",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/dd6a564d253b46c0867068eccd11265a.jpg",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/ac3194eb88664a5a8976cfdd5525347a.jpg",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/ac3194eb88664a5a8976cfdd5525347a.jpg",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "At eBay, we connect people & build communities to create economic opportunity for all. Buy & sell electronics, cars, clothes, collectibles & more!",
"preMessage": "Earn 2% CASH on your eBay purchase!",
"rewardCopy": "Earn 2% CASH on your eBay purchase, with a $10 CASH maximum.",
"postMessage": "Earn 2% CASH on your eBay purchase, with a $10 CASH maximum.<br/><br/>At eBay, we connect people & build communities to create economic opportunity for all. Buy & sell electronics, cars, clothes, collectibles & more!<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6eRNO&xt=k7rJP5hez7IuKNn8KatCOkqTijbM11LpBhVt2zj75XLFhyjrrfgGgtxA5H2vqtln' aria-label='Shop Now'>Shop Now</a><br/><br/>Offer expires Feb 1, 2026. Offer valid online only at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=V5kaM&xt=k7rJP5hez7IuKNn8KatCOkqTijbM11LpBhVt2zj75XLFhyjrrfgGgtxA5H2vqtln' aria-label='ebay.com'>ebay.com</a>. Not valid on orders shipped outside of the US. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date. Offer valid one time only. Offer can't be combined w/ any other promotional offers or voucher codes. Offer not valid on Daily Deals, Bullions/Coins, Coins & Paper Money, eBay gift cards & Charity items.",
"thankYouMessage": "Thank you for your eBay purchase.",
"headline": "2% CASH",
"shortPreMessage": "Earn 2% CASH!",
"termsAndConditions": "Offer expires Feb 1, 2026. Offer valid online only at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=V5kaM&xt=k7rJP5hez7IuKNn8KatCOkqTijbM11LpBhVt2zj75XLFhyjrrfgGgtxA5H2vqtln' aria-label='ebay.com'>ebay.com</a>. Not valid on orders shipped outside of the US. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date. Offer valid one time only. Offer can't be combined w/ any other promotional offers or voucher codes. Offer not valid on Daily Deals, Bullions/Coins, Coins & Paper Money, eBay gift cards & Charity items."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"shopNow": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=6eRNO&xt=k7rJP5hez7IuKNn8KatCOkqTijbM11LpBhVt2zj75XLFhyjrrfgGgtxA5H2vqtln"
}
}
}
},
"isAffiliateMarketing": false
},
"1000222764": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMjIyNzY0IgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-02-01T04:59:59Z",
"merchantName": "AT&T Fiber",
"reward": {
"rewardType": "FIXED_AMOUNT_PURCHASE",
"rewardAmount": 50.0,
"maxRewardAmount": 50.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 75.0,
"purchaseChannels": [
"Online",
"InStore"
],
"purchaseTypes": [
"Subscription"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": ["PUBLISHER_FUNDED"]
},
"activationState": "SERVED",
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/deec9ea585704a4ea75ff51b070ea845.png",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/f3e2d79d00d94b66baff9f1e3f98fced.png",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/96dbe306417c4756a36864305d6d4196.png",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/5a41071b0481407b97db60b9557872b3.png",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/5a41071b0481407b97db60b9557872b3.png",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "AT&T Fiber is available in select areas only. Visit <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6r3Gq&xt=CQGDZR+UGmHCxH7keAELqYKU1gpw05dW+W384IEhlnKq362DyWv0Xq2rEwTlslzM' aria-label='www.att.com/internet/fiber/'>www.att.com/internet/fiber/</a> to see the AT&T Fiber plans in your area.",
"preMessage": "Earn $50 CASH on your AT&T Fiber purchase!",
"rewardCopy": "Earn $50 CASH when you sign up with AT&T Fiber by making a new, qualifying plan payment of at least $75.",
"postMessage": "Earn $50 CASH when you sign up with AT&T Fiber by making a new, qualifying plan payment of at least $75.<br/><br/>AT&T Fiber is available in select areas only. Visit <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6r3Gq&xt=CQGDZR+UGmHCxH7keAELqYKU1gpw05dW+W384IEhlnKq362DyWv0Xq2rEwTlslzM' aria-label='www.att.com/internet/fiber/'>www.att.com/internet/fiber/</a> to see the AT&T Fiber plans in your area.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6Q8na&xt=CQGDZR+UGmHCxH7keAELqYKU1gpw05dW+W384IEhlnKq362DyWv0Xq2rEwTlslzM' aria-label='Get Started'>Get Started</a><br/><br/>O\ufb00er expires Jan 31, 2026. O\ufb00er valid one time only for new AT&T Fiber customers. O\ufb00er not valid on accessories or equipment purchases. Payment must be made directly with the merchant. O\ufb00er not valid on third-party services.<br><br>Ltd. avail/areas. Sign up for 500M for $65/mo +taxes. Price after $5/mo Autopay & Paperless bill discount (w/in 2 bills). Monthly State Cost Recovery Charge in TX, OH, NV applies. One time install charge may apply. Subject to change. For plan cost and to cancel plan, <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=VG25K&xt=CQGDZR+UGmHCxH7keAELqYKU1gpw05dW+W384IEhlnKq362DyWv0Xq2rEwTlslzM' aria-label='please visit att.com/internet/fiber for details'>please visit att.com/internet/fiber for details</a>.",
"thankYouMessage": "Thank you for your AT&T Fiber purchase.",
"headline": "$50 CASH",
"shortPreMessage": "Earn $50 CASH!",
"termsAndConditions": "O\ufb00er expires Jan 31, 2026. O\ufb00er valid one time only for new AT&T Fiber customers. O\ufb00er not valid on accessories or equipment purchases. Payment must be made directly with the merchant. O\ufb00er not valid on third-party services.<br><br>Ltd. avail/areas. Sign up for 500M for $65/mo +taxes. Price after $5/mo Autopay & Paperless bill discount (w/in 2 bills). Monthly State Cost Recovery Charge in TX, OH, NV applies. One time install charge may apply. Subject to change. For plan cost and to cancel plan, <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=VG25K&xt=CQGDZR+UGmHCxH7keAELqYKU1gpw05dW+W384IEhlnKq362DyWv0Xq2rEwTlslzM' aria-label='please visit att.com/internet/fiber for details'>please visit att.com/internet/fiber for details</a>."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"getStarted": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=6Q8na&xt=CQGDZR+UGmHCxH7keAELqYKU1gpw05dW+W384IEhlnKq362DyWv0Xq2rEwTlslzM"
}
}
}
},
"isAffiliateMarketing": false
},
"1000211313": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMjExMzEzIgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-02-01T04:59:59Z",
"merchantName": "Big O Tires",
"reward": {
"rewardType": "PERCENT_AMOUNT_PURCHASE",
"rewardAmount": 10.0,
"maxRewardAmount": 60.0,
"isMultiRedemption": true,
"maxNumRedemptions": null,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 0.2,
"purchaseChannels": [
"Online",
"InStore"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"activationState": "NEW",
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/3f7152bc6e09402f9ba02245af9148fa.png",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/4609813ddb34439d95fe44e204b61521.png",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/61ade3e6afc54b8c90937de66a9b3c5c.png",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/35e327d1998e4f3584bbb49fb47b35cd.png",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/35e327d1998e4f3584bbb49fb47b35cd.png",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "At Big O Tires, we offer expert service that goes the extra mile (or two)! Our certified technicians provide written quotes and prompt service that's done when promised. Shop for tires and wheels or choose one of our services, including alignment, oil change, and battery replacement. When you choose Big O Tires, the service for your car or truck is done right the first time. No hassles.",
"preMessage": "Earn 10% CASH on your Big O Tires purchases!",
"rewardCopy": "Earn 10% CASH on all of your Big O Tires purchases, until a $60 CASH maximum is reached.",
"postMessage": "Earn 10% CASH on all of your Big O Tires purchases, until a $60 CASH maximum is reached.<br/><br/>At Big O Tires, we offer expert service that goes the extra mile (or two)! Our certified technicians provide written quotes and prompt service that's done when promised. Shop for tires and wheels or choose one of our services, including alignment, oil change, and battery replacement. When you choose Big O Tires, the service for your car or truck is done right the first time. No hassles.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=bWlJm&xt=c/75UYPzQH781BJyQ0M9QSscXBJDIWjm/Wq63K5WnT0UFjhoMqPxcc8kYbNV6Lrt' aria-label='Find Locations'>Find Locations</a><br/><br/>Offer expires Jan 31, 2026. Payment must be made directly with the merchant. Offer only valid at Northern California, Reno and Sparks, Nevada locations. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date.",
"thankYouMessage": "Thank you for your Big O Tires purchase.",
"headline": "10% CASH",
"shortPreMessage": "Earn 10% CASH!",
"termsAndConditions": "Offer expires Jan 31, 2026. Payment must be made directly with the merchant. Offer only valid at Northern California, Reno and Sparks, Nevada locations. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"findLocations": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=bWlJm&xt=c/75UYPzQH781BJyQ0M9QSscXBJDIWjm/Wq63K5WnT0UFjhoMqPxcc8kYbNV6Lrt"
}
}
}
},
"isAffiliateMarketing": false
},
"1000227948": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMjI3OTQ4IgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-02-20T04:59:59Z",
"merchantName": "Mountain Mike's Pizza",
"reward": {
"rewardType": "PERCENT_AMOUNT_PURCHASE",
"rewardAmount": 15.0,
"maxRewardAmount": 9.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 0.2,
"purchaseChannels": [
"Online",
"InStore"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"activationState": "NEW",
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/d756f6a495c140eea968462c75275787.jpg",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/d5a71bacc1694b258893df4348e93077.jpg",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/fedbe94bd39c4cd689d4d2d2246e2d1d.jpg",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/41d7779ec67b489da0b96ad549e8bd2e.jpg",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/41d7779ec67b489da0b96ad549e8bd2e.jpg",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "Home of the legendary crispy, curly pepperoni. At Mountain Mike’s, we make Pizza the way it oughta be\u00ae! Handmade dough made fresh daily, real 100% whole milk mozzarella cheese, fresh vegetables and meats, and toppings edge to edge. Order online or give us a call for carry out.",
"preMessage": "Earn 15% CASH on your Mountain Mike's Pizza purchase!",
"rewardCopy": "Earn 15% CASH on your Mountain Mike's Pizza purchase, with a $9 CASH maximum.",
"postMessage": "Earn 15% CASH on your Mountain Mike's Pizza purchase, with a $9 CASH maximum.<br/><br/>Home of the legendary crispy, curly pepperoni. At Mountain Mike’s, we make Pizza the way it oughta be\u00ae! Handmade dough made fresh daily, real 100% whole milk mozzarella cheese, fresh vegetables and meats, and toppings edge to edge. Order online or give us a call for carry out.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6Y2GP&xt=XYJ8X2HRb5E197b3Dxf4+Jy7PVVtVoCktdIno1LE/33UpuNgRnNurBvezb7cMPeq' aria-label='Find Locations'>Find Locations</a><br/><br/>Offer expires Feb 19, 2026. Offer valid in-restaurant and for food purchases made online at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=bO3L0&xt=XYJ8X2HRb5E197b3Dxf4+Jy7PVVtVoCktdIno1LE/33UpuNgRnNurBvezb7cMPeq' aria-label='mountainmikespizza.com'>mountainmikespizza.com</a> and through the merchant mobile app. Dining or takeout/delivery orders must be processed directly by the merchant. Valid in the US only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date. Offer valid one time only.",
"thankYouMessage": "Thank you for your Mountain Mike's Pizza purchase.",
"headline": "15% CASH",
"shortPreMessage": "Earn 15% CASH!",
"termsAndConditions": "Offer expires Feb 19, 2026. Offer valid in-restaurant and for food purchases made online at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=bO3L0&xt=XYJ8X2HRb5E197b3Dxf4+Jy7PVVtVoCktdIno1LE/33UpuNgRnNurBvezb7cMPeq' aria-label='mountainmikespizza.com'>mountainmikespizza.com</a> and through the merchant mobile app. Dining or takeout/delivery orders must be processed directly by the merchant. Valid in the US only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date. Offer valid one time only."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"findLocations": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=6Y2GP&xt=XYJ8X2HRb5E197b3Dxf4+Jy7PVVtVoCktdIno1LE/33UpuNgRnNurBvezb7cMPeq"
}
}
}
},
"isAffiliateMarketing": false
},
"1000228200": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMjI4MjAwIgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-03-01T04:59:59Z",
"merchantName": "Disney+",
"reward": {
"rewardType": "PERCENT_AMOUNT_PURCHASE",
"rewardAmount": 15.0,
"maxRewardAmount": 24.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 0.2,
"purchaseChannels": [
"Online"
],
"purchaseTypes": [
"Subscription"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"activationState": "NEW",
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/654fcc73895d4baaa17cf6705bacac7b.png",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/5f3cc7ef34a547119bc1d841e6e25026.png",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/e6b2febb6dfb45d4a678e4de2ffe26ce.jpg",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/a349d72c4e024b38a40717878586b8bc.jpg",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/a349d72c4e024b38a40717878586b8bc.jpg",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "Disney+ is the streaming home of Disney, Pixar, Marvel, Star Wars, and National Geographic. And now, you can bundle premium content from brands you love, starting at $9.99. Choose the Disney Bundle that works for you and change it any time - your bundle, your terms.",
"preMessage": "Earn 15% CASH on your Disney+ purchase!",
"rewardCopy": "Earn 15% CASH on your first payment of a Disney+ or Disney Bundle subscription, with a $24 CASH maximum.",
"postMessage": "Earn 15% CASH on your first payment of a Disney+ or Disney Bundle subscription, with a $24 CASH maximum.<br/><br/>Disney+ is the streaming home of Disney, Pixar, Marvel, Star Wars, and National Geographic. And now, you can bundle premium content from brands you love, starting at $9.99. Choose the Disney Bundle that works for you and change it any time - your bundle, your terms.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=b9keA&xt=wS1/KC89znmTD7TNz8V9CNqVo6QhVUdM3+CO4gAEmfaSxDyxIhUdboGv5djtb3hr' aria-label='Visit Site'>Visit Site</a><br/><br/>Offer expires Feb 28, 2026. Offer valid on first payment only. Offer valid only for new subscribers or eligible returning subscribers with no current active subscription, who are 18 years of age or older. Offer only valid on Disney+ and The Disney Bundle subscription purchases made through disneyplus.com after offer is activated and linked to your card. Not valid on subscriptions purchased through other providers. Payment must be made on or before offer expiration date. Subject to <b><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=gMBNq&xt=wS1/KC89znmTD7TNz8V9CNqVo6QhVUdM3+CO4gAEmfaSxDyxIhUdboGv5djtb3hr' aria-label='Disney+ and ESPN+ Subscriber Agreement.'>Disney+ and ESPN+ Subscriber Agreement.</a></b><b> </b>For subscription cost and to cancel,<b> </b><b><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=bROpE&xt=wS1/KC89znmTD7TNz8V9CNqVo6QhVUdM3+CO4gAEmfaSxDyxIhUdboGv5djtb3hr' aria-label='visit Disney+'>visit Disney+</a></b><b> </b>for details.",
"thankYouMessage": "Thank you for your Disney+ purchase.",
"headline": "15% CASH",
"shortPreMessage": "Earn 15% CASH!",
"termsAndConditions": "Offer expires Feb 28, 2026. Offer valid on first payment only. Offer valid only for new subscribers or eligible returning subscribers with no current active subscription, who are 18 years of age or older. Offer only valid on Disney+ and The Disney Bundle subscription purchases made through disneyplus.com after offer is activated and linked to your card. Not valid on subscriptions purchased through other providers. Payment must be made on or before offer expiration date. Subject to <b><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=gMBNq&xt=wS1/KC89znmTD7TNz8V9CNqVo6QhVUdM3+CO4gAEmfaSxDyxIhUdboGv5djtb3hr' aria-label='Disney+ and ESPN+ Subscriber Agreement.'>Disney+ and ESPN+ Subscriber Agreement.</a></b><b> </b>For subscription cost and to cancel,<b> </b><b><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=bROpE&xt=wS1/KC89znmTD7TNz8V9CNqVo6QhVUdM3+CO4gAEmfaSxDyxIhUdboGv5djtb3hr' aria-label='visit Disney+'>visit Disney+</a></b><b> </b>for details."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"visitSite": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=b9keA&xt=wS1/KC89znmTD7TNz8V9CNqVo6QhVUdM3+CO4gAEmfaSxDyxIhUdboGv5djtb3hr"
}
}
}
},
"isAffiliateMarketing": false
},
"1000197901": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMTk3OTAxIgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-02-12T04:59:59Z",
"merchantName": "AG1",
"reward": {
"rewardType": "FIXED_AMOUNT_PURCHASE",
"rewardAmount": 20.0,
"maxRewardAmount": 20.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 20.0,
"purchaseTypes": [
"Subscription"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"activationState": "NEW",
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/5a22525941a24fd1838c44cc3c62a860.jpg",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/efd36a155fe1495381ee1d135b51363a.jpg",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/f230dbde69a34eec97046493cc19a9fa.jpg",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/877bd71d206447d5a029a7693e15bc81.jpg",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/877bd71d206447d5a029a7693e15bc81.jpg",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "AG1 is a research-backed Daily Health Drink that combines a multivitamin, probiotic, and blend of superfoods into one scoop. Get a FREE bottle of AG Vitamin D3+K2 drops and three AG1 Travel Packs with your first purchase when you buy a subscription of AG1!",
"preMessage": "Earn $20 CASH on your AG1 purchase!",
"rewardCopy": "Earn $20 CASH on your first payment of an AG1 subscription, <b>when you spend $20.00 or more.</b>",
"postMessage": "Earn $20 CASH on your first payment of an AG1 subscription, <b>when you spend $20.00 or more.</b><br/><br/>AG1 is a research-backed Daily Health Drink that combines a multivitamin, probiotic, and blend of superfoods into one scoop. Get a FREE bottle of AG Vitamin D3+K2 drops and three AG1 Travel Packs with your first purchase when you buy a subscription of AG1!<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6ZZ82&xt=oQWjLUFQiGtfgbmmRLbkzgur5gjbvRbuSJ8KEBlp8knBuBu60vAxP3T0j+LU/oNt' aria-label='Shop Now'>Shop Now</a><br/><br/>Offer expires Feb 11, 2026. Offer valid on first payment only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Recurring subscription payments begin after trial. For subscription cost and to cancel subscription, <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=V5kAw&xt=oQWjLUFQiGtfgbmmRLbkzgur5gjbvRbuSJ8KEBlp8knBuBu60vAxP3T0j+LU/oNt' aria-label='please visit merchant website for details'>please visit merchant website for details</a>. Must make first recurring payment by Feb 11, 2026.",
"thankYouMessage": "Thank you for your AG1 purchase.",
"headline": "$20 CASH",
"shortPreMessage": "Earn $20 CASH!",
"termsAndConditions": "Offer expires Feb 11, 2026. Offer valid on first payment only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Recurring subscription payments begin after trial. For subscription cost and to cancel subscription, <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=V5kAw&xt=oQWjLUFQiGtfgbmmRLbkzgur5gjbvRbuSJ8KEBlp8knBuBu60vAxP3T0j+LU/oNt' aria-label='please visit merchant website for details'>please visit merchant website for details</a>. Must make first recurring payment by Feb 11, 2026."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"shopNow": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=6ZZ82&xt=oQWjLUFQiGtfgbmmRLbkzgur5gjbvRbuSJ8KEBlp8knBuBu60vAxP3T0j+LU/oNt"
}
}
}
},
"isAffiliateMarketing": false
},
"1000199341": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMTk5MzQxIgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-02-01T04:59:59Z",
"merchantName": "fuboTV",
"reward": {
"rewardType": "FIXED_AMOUNT_PURCHASE",
"rewardAmount": 20.0,
"maxRewardAmount": 20.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 32.99,
"purchaseChannels": [
"Online"
],
"purchaseTypes": [
"Subscription"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"activationState": "NEW",
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/e19b915ab43049cc936ecfd4489bc1e7.png",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/2ebd43100b264c0290f464e19d20ffff.png",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/d00cd390a0e34384987790a96272e041.png",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/5654af53c3194449b81b876f5a2af4fa.png",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/5654af53c3194449b81b876f5a2af4fa.png",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "fuboTV offers live TV on the go with major sports, top movies, hit shows and breaking news. No cable needed. No contract. Stream popular channels like ABC, CBS, FOX, NBC, ESPN, NFL Network, HGTV, MSNBC and more from a phone, laptop, tablet or TV. Plus, you take local channels with you and have an included Cloud DVR to watch the shows and games you can’t see live.",
"preMessage": "Earn $20 CASH on your fuboTV purchase!",
"rewardCopy": "Earn $20 CASH on your first payment of a fuboTV subscription <b>when you spend $32.99 or more.</b>",
"postMessage": "Earn $20 CASH on your first payment of a fuboTV subscription <b>when you spend $32.99 or more.</b><br/><br/>fuboTV offers live TV on the go with major sports, top movies, hit shows and breaking news. No cable needed. No contract. Stream popular channels like ABC, CBS, FOX, NBC, ESPN, NFL Network, HGTV, MSNBC and more from a phone, laptop, tablet or TV. Plus, you take local channels with you and have an included Cloud DVR to watch the shows and games you can’t see live.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=VGdkA&xt=Jcx0zIn3gzh5xn2UHlXVIuFCG2i5sp3sug0M/ZTRs0K98uDyjOuaYvhycpQiLc/X' aria-label='Learn More'>Learn More</a><br/><br/>Offer expires Jan 31, 2026. Offer valid on first payment only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Recurring subscription payments begin after trial. For subscription cost and to cancel subscription, please visit <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=VXQ7d&xt=Jcx0zIn3gzh5xn2UHlXVIuFCG2i5sp3sug0M/ZTRs0K98uDyjOuaYvhycpQiLc/X' aria-label='merchant website'>merchant website</a> for details. Must make first recurring payment by 2/7/26.",
"thankYouMessage": "Thank you for your fuboTV purchase.",
"headline": "$20 CASH",
"shortPreMessage": "Earn $20 CASH!",
"termsAndConditions": "Offer expires Jan 31, 2026. Offer valid on first payment only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Recurring subscription payments begin after trial. For subscription cost and to cancel subscription, please visit <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=VXQ7d&xt=Jcx0zIn3gzh5xn2UHlXVIuFCG2i5sp3sug0M/ZTRs0K98uDyjOuaYvhycpQiLc/X' aria-label='merchant website'>merchant website</a> for details. Must make first recurring payment by 2/7/26."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"learnMore": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=VGdkA&xt=Jcx0zIn3gzh5xn2UHlXVIuFCG2i5sp3sug0M/ZTRs0K98uDyjOuaYvhycpQiLc/X"
}
}
}
},
"isAffiliateMarketing": false
},
"1000211492": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMjExNDkyIgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-02-01T04:59:59Z",
"merchantName": "Stitch Fix",
"reward": {
"rewardType": "FIXED_AMOUNT_PURCHASE",
"rewardAmount": 12.0,
"maxRewardAmount": 12.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 25.0,
"purchaseChannels": [
"Online"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"activationState": "SERVED",
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/a645eb9ed2cf4c51b07e12e9c625432c.jpg",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/ad84a7f7e4ca4436a2d96942ca698a02.jpg",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/9206e11d7d4640a286e4085ceca9b9be.jpg",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/297681a07fc8419c938d46c2eab89ded.jpg",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/297681a07fc8419c938d46c2eab89ded.jpg",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "Now there's a better way to shop. Say hello to Stitch Fix, an online personal styling service where an expert stylist finds clothes that match your style, fit & budget. Get the season's latest pieces for Women, Men, and Kids delivered to your door with free shipping and returns and no subscription required. Take your style quiz at <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=b90qQ&xt=BeLJvzlgq/h50QJna+Tz+hO9KQXRcipqbqZbQT+E/ow68bR12MFBFUO+Yupx8ngG' aria-label='stitchfix.com'>stitchfix.com</a>",
"preMessage": "Earn $12 CASH on your Stitch Fix purchase!",
"rewardCopy": "Earn $12 CASH on your Stitch Fix purchase, <b>when you spend $25 or more.</b>",
"postMessage": "Earn $12 CASH on your Stitch Fix purchase, <b>when you spend $25 or more.</b><br/><br/>Now there's a better way to shop. Say hello to Stitch Fix, an online personal styling service where an expert stylist finds clothes that match your style, fit & budget. Get the season's latest pieces for Women, Men, and Kids delivered to your door with free shipping and returns and no subscription required. Take your style quiz at <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=b90qQ&xt=BeLJvzlgq/h50QJna+Tz+hO9KQXRcipqbqZbQT+E/ow68bR12MFBFUO+Yupx8ngG' aria-label='stitchfix.com'>stitchfix.com</a><br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=bWE37&xt=BeLJvzlgq/h50QJna+Tz+hO9KQXRcipqbqZbQT+E/ow68bR12MFBFUO+Yupx8ngG' aria-label='Get Started'>Get Started</a><br/><br/>Offer expires Jan 31, 2026. Must make first payment by 2/14/26. Offer valid on first payment only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). For cost and to cancel, please visit <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6aBOw&xt=BeLJvzlgq/h50QJna+Tz+hO9KQXRcipqbqZbQT+E/ow68bR12MFBFUO+Yupx8ngG' aria-label='merchant website'>merchant website</a> for details.",
"thankYouMessage": "Thank you for your Stitch Fix purchase.",
"headline": "$12 CASH",
"shortPreMessage": "Earn $12 CASH!",
"termsAndConditions": "Offer expires Jan 31, 2026. Must make first payment by 2/14/26. Offer valid on first payment only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). For cost and to cancel, please visit <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6aBOw&xt=BeLJvzlgq/h50QJna+Tz+hO9KQXRcipqbqZbQT+E/ow68bR12MFBFUO+Yupx8ngG' aria-label='merchant website'>merchant website</a> for details."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"getStarted": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=bWE37&xt=BeLJvzlgq/h50QJna+Tz+hO9KQXRcipqbqZbQT+E/ow68bR12MFBFUO+Yupx8ngG"
}
}
}
},
"isAffiliateMarketing": false
},
"1000218042": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMjE4MDQyIgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-03-01T04:59:59Z",
"merchantName": "Liquid I.V.",
"reward": {
"rewardType": "PERCENT_AMOUNT_PURCHASE",
"rewardAmount": 15.0,
"maxRewardAmount": 13.5,
"isMultiRedemption": true,
"maxNumRedemptions": null,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 0.2,
"purchaseChannels": [
"Online"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"activationState": "SERVED",
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/94bacec672f64a3cb29afcebf5cfa58a.png",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/1947fe3daffb42eeab6fe07c4a7e51b6.png",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/eb1c57390dc24eadaad93241a8dbb504.png",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/1b6e5ff6c47443279840299049d396a8.png",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/1b6e5ff6c47443279840299049d396a8.png",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "Liquid I.V. is the #1 powdered hydration brand in America, delivering superior hydration than water alone. Liquid I.V. utilizes LIV HYDRASCIENCE\u2122, a science-backed formula designed with an optimized ratio of electrolytes, essential vitamins, and clinically tested nutrients to turn ordinary water into extraordinary hydration.",
"preMessage": "Earn 15% CASH on your Liquid I.V. purchases!",
"rewardCopy": "Earn 15% CASH on all of your Liquid I.V. purchases, until a $13.50 CASH maximum is reached.<b> Offer valid online only.</b>",
"postMessage": "Earn 15% CASH on all of your Liquid I.V. purchases, until a $13.50 CASH maximum is reached.<b> Offer valid online only.</b><br/><br/>Liquid I.V. is the #1 powdered hydration brand in America, delivering superior hydration than water alone. Liquid I.V. utilizes LIV HYDRASCIENCE\u2122, a science-backed formula designed with an optimized ratio of electrolytes, essential vitamins, and clinically tested nutrients to turn ordinary water into extraordinary hydration.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=b0n1l&xt=YmpO9h8IycTzTphKo570HEkPeAO3BQYxVeB7bGFoWT/iEtIDgQ9Wk3KMtyqlGdHZ' aria-label='Shop Now'>Shop Now</a><br/><br/>Offer expires Feb 28, 2026. Offer valid online only at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=VyGwE&xt=YmpO9h8IycTzTphKo570HEkPeAO3BQYxVeB7bGFoWT/iEtIDgQ9Wk3KMtyqlGdHZ' aria-label='liquid-iv.com'>liquid-iv.com</a>. Not valid on orders shipped outside of the US. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date.",
"thankYouMessage": "Thank you for your Liquid I.V. purchase.",
"headline": "15% CASH",
"shortPreMessage": "Earn 15% CASH!",
"termsAndConditions": "Offer expires Feb 28, 2026. Offer valid online only at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=VyGwE&xt=YmpO9h8IycTzTphKo570HEkPeAO3BQYxVeB7bGFoWT/iEtIDgQ9Wk3KMtyqlGdHZ' aria-label='liquid-iv.com'>liquid-iv.com</a>. Not valid on orders shipped outside of the US. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"shopNow": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=b0n1l&xt=YmpO9h8IycTzTphKo570HEkPeAO3BQYxVeB7bGFoWT/iEtIDgQ9Wk3KMtyqlGdHZ"
}
}
}
},
"isAffiliateMarketing": false
},
"1000211310": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMjExMzEwIgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-01-30T04:59:59Z",
"merchantName": "Gr\u00fcns",
"reward": {
"rewardType": "PERCENT_AMOUNT_PURCHASE",
"rewardAmount": 15.0,
"maxRewardAmount": 18.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 0.2,
"purchaseTypes": [
"Subscription"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"activationState": "NEW",
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/0cc4ba6ea6ce48a1bbbb66720704dc76.png",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/18c81f0322f147379ef737ee6f1fcb85.png",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/5ed5daf517404e6c960386d6defd5ebf.png",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/603ff7c33b91437eadd52b15d2b7a20c.png",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/603ff7c33b91437eadd52b15d2b7a20c.png",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "You have nutrition gaps. Gr\u00fcns fills them. Greens, prebiotics, multivitamins, and more, all in one delicious, convenient daily pack of gummy bears for you and the whole family.",
"preMessage": "Earn 15% CASH on your Gr\u00fcns purchase!",
"rewardCopy": "Earn 15% CASH on your first payment of a Gr\u00fcns subscription, with an $18 CASH maximum.",
"postMessage": "Earn 15% CASH on your first payment of a Gr\u00fcns subscription, with an $18 CASH maximum.<br/><br/>You have nutrition gaps. Gr\u00fcns fills them. Greens, prebiotics, multivitamins, and more, all in one delicious, convenient daily pack of gummy bears for you and the whole family.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=goyqj&xt=uWCWvS3JKh1NRbkhkiGYTfxRhRf6r7P/EPesPak4WDTkuXVJxp4xGRcf6r1ESqiT' aria-label='Shop Now'>Shop Now</a><br/><br/>Offer expires Jan 29, 2026. Offer valid on first payment only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Recurring subscription payments begin after trial. For subscription cost and to cancel subscription, please visit <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6kx0X&xt=uWCWvS3JKh1NRbkhkiGYTfxRhRf6r7P/EPesPak4WDTkuXVJxp4xGRcf6r1ESqiT' aria-label='merchant website'>merchant website</a> for details. Must make first recurring payment by Jan 29, 2026.",
"thankYouMessage": "Thank you for your Gr\u00fcns purchase.",
"headline": "15% CASH",
"shortPreMessage": "Earn 15% CASH!",
"termsAndConditions": "Offer expires Jan 29, 2026. Offer valid on first payment only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Recurring subscription payments begin after trial. For subscription cost and to cancel subscription, please visit <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6kx0X&xt=uWCWvS3JKh1NRbkhkiGYTfxRhRf6r7P/EPesPak4WDTkuXVJxp4xGRcf6r1ESqiT' aria-label='merchant website'>merchant website</a> for details. Must make first recurring payment by Jan 29, 2026."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"shopNow": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=goyqj&xt=uWCWvS3JKh1NRbkhkiGYTfxRhRf6r7P/EPesPak4WDTkuXVJxp4xGRcf6r1ESqiT"
}
}
}
},
"isAffiliateMarketing": false
},
"1000199304": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMTk5MzA0IgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-02-01T04:59:59Z",
"merchantName": "Factor",
"reward": {
"rewardType": "FIXED_AMOUNT_PURCHASE",
"rewardAmount": 6.0,
"maxRewardAmount": 6.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 6.0,
"purchaseTypes": [
"Subscription"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"activationState": "SERVED",
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/e12ea311e37c4ae896f8d00418bc51b9.jpg",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/80787e62589c490b86ac468e9ae19af1.jpg",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/5f35f34124654a99b053672cca9e5bfb.jpg",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/ae3c564a735342c3bbd7634d8236b8f8.jpg",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/ae3c564a735342c3bbd7634d8236b8f8.jpg",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "Factor provides fresh, ready-prepared meals that support even the busiest of lifestyles! We shop, prep, cook, and deliver to your door for you so you can experience the benefits of clean eating without the hassle.",
"preMessage": "Earn $6 CASH on your Factor purchase!",
"rewardCopy": "Earn $6 CASH on your first payment of a Factor subscription, <b>when you spend $6 or more.</b>",
"postMessage": "Earn $6 CASH on your first payment of a Factor subscription, <b>when you spend $6 or more.</b><br/><br/>Factor provides fresh, ready-prepared meals that support even the busiest of lifestyles! We shop, prep, cook, and deliver to your door for you so you can experience the benefits of clean eating without the hassle.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6K3do&xt=MvJdDxOA8GoLuFFYOXLyPfu0xMjFWmDuxIhJOeUszHICl702BfTDU7Rg9YdWgflL' aria-label='Order Now'>Order Now</a><br/><br/>Offer expires Jan 31, 2026. Offer valid on first payment only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Recurring subscription payments begin after trial.<b> For subscription</b> <b>cost and to cancel subscription, please visit</b> <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=bWao4&xt=MvJdDxOA8GoLuFFYOXLyPfu0xMjFWmDuxIhJOeUszHICl702BfTDU7Rg9YdWgflL' aria-label='merchant website'>merchant website</a> <b>for details. Must make first recurring payment by </b><b>Jan 31, 2026</b><b>. </b>*Offer not available to residents of Alaska or Hawaii.",
"thankYouMessage": "Thank you for your Factor purchase.",
"headline": "$6 CASH",
"shortPreMessage": "Earn $6 CASH!",
"termsAndConditions": "Offer expires Jan 31, 2026. Offer valid on first payment only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Recurring subscription payments begin after trial.<b> For subscription</b> <b>cost and to cancel subscription, please visit</b> <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=bWao4&xt=MvJdDxOA8GoLuFFYOXLyPfu0xMjFWmDuxIhJOeUszHICl702BfTDU7Rg9YdWgflL' aria-label='merchant website'>merchant website</a> <b>for details. Must make first recurring payment by </b><b>Jan 31, 2026</b><b>. </b>*Offer not available to residents of Alaska or Hawaii."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"orderNow": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=6K3do&xt=MvJdDxOA8GoLuFFYOXLyPfu0xMjFWmDuxIhJOeUszHICl702BfTDU7Rg9YdWgflL"
}
}
}
},
"isAffiliateMarketing": false
},
"1000214226": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMjE0MjI2IgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-02-17T04:59:59Z",
"merchantName": "ESPN",
"reward": {
"rewardType": "PERCENT_AMOUNT_PURCHASE",
"rewardAmount": 15.0,
"maxRewardAmount": 45.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 0.2,
"purchaseChannels": [
"Online"
],
"purchaseTypes": [
"Subscription"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"activationState": "SERVED",
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/59ea6862a33d4dbca9bdb94d8a433eb0.png",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/b5eadba9e2ee41c7b71b379f0b93b11b.png",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/863e42a4340346a0a243a3a4dee2d209.jpg",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/dae925d6cd8e452793cc8859d1ee1267.jpg",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/dae925d6cd8e452793cc8859d1ee1267.jpg",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "ESPN is your home for the most and best live sports. Watch 47,000 live events, studio shows, ESPN Originals, and more.",
"preMessage": "Earn 15% CASH on your ESPN purchase!",
"rewardCopy": "Earn 15% CASH on your first payment of an ESPN subscription, with a $45 CASH maximum.",
"postMessage": "Earn 15% CASH on your first payment of an ESPN subscription, with a $45 CASH maximum.<br/><br/>ESPN is your home for the most and best live sports. Watch 47,000 live events, studio shows, ESPN Originals, and more.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=VxkBk&xt=CpiJmMR3eirltsWh+ETCBAt97Tquo/1uVq2ghFNj3jQ/wn8bKIqaenHj4VWCA2um' aria-label='Visit Site'>Visit Site</a><br/><br/>Offer expires Feb 16, 2026. Offer valid on first payment only. Offer valid only for new subscribers or eligible returning subscribers with no current active subscription, who are 16 years of age or older. Offer only valid on ESPN subscription purchases made on plus.espn.com. Offer not valid with Disney Bundle, pay-per-view events, or other add-ons. Offer not valid on subscriptions through other providers. Payment must be made on or before expiration date. Subject to <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=b30m4&xt=CpiJmMR3eirltsWh+ETCBAt97Tquo/1uVq2ghFNj3jQ/wn8bKIqaenHj4VWCA2um' aria-label='Disney+ and ESPN Subscriber Agreement'>Disney+ and ESPN Subscriber Agreement</a>. For subscription cost and to cancel subscription, visit <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=Vp3Rl&xt=CpiJmMR3eirltsWh+ETCBAt97Tquo/1uVq2ghFNj3jQ/wn8bKIqaenHj4VWCA2um' aria-label='ESPN'>ESPN</a> for details.",
"thankYouMessage": "Thank you for your ESPN purchase.",
"headline": "15% CASH",
"shortPreMessage": "Earn 15% CASH!",
"termsAndConditions": "Offer expires Feb 16, 2026. Offer valid on first payment only. Offer valid only for new subscribers or eligible returning subscribers with no current active subscription, who are 16 years of age or older. Offer only valid on ESPN subscription purchases made on plus.espn.com. Offer not valid with Disney Bundle, pay-per-view events, or other add-ons. Offer not valid on subscriptions through other providers. Payment must be made on or before expiration date. Subject to <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=b30m4&xt=CpiJmMR3eirltsWh+ETCBAt97Tquo/1uVq2ghFNj3jQ/wn8bKIqaenHj4VWCA2um' aria-label='Disney+ and ESPN Subscriber Agreement'>Disney+ and ESPN Subscriber Agreement</a>. For subscription cost and to cancel subscription, visit <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=Vp3Rl&xt=CpiJmMR3eirltsWh+ETCBAt97Tquo/1uVq2ghFNj3jQ/wn8bKIqaenHj4VWCA2um' aria-label='ESPN'>ESPN</a> for details."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"visitSite": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=VxkBk&xt=CpiJmMR3eirltsWh+ETCBAt97Tquo/1uVq2ghFNj3jQ/wn8bKIqaenHj4VWCA2um"
}
}
}
},
"isAffiliateMarketing": false
},
"1000219124": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMjE5MTI0IgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-02-15T04:59:59Z",
"activationDate": "2026-01-14T04:02:55Z",
"merchantName": "Shake Shack",
"reward": {
"rewardType": "PERCENT_AMOUNT_PURCHASE",
"rewardAmount": 15.0,
"maxRewardAmount": 6.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 0.2,
"purchaseChannels": [
"Online",
"InStore"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"activationState": "ACTIVATED",
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/ed9a50a4563b499a8ca9516444346086.jpg",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/0cf380a5e399457b81b70ce8d90b2f0a.jpg",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/ede90ef81e094dce982628b345cc1b0f.jpg",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/370d19c5f7784441872dbadf06c924a8.jpg",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/370d19c5f7784441872dbadf06c924a8.jpg",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "Since 2004, people from all over the world have lined up to grab our high-quality takes on the classics: Angus beef burgers, crispy chicken, crinkle cut fries, shakes + way more. <br><br>Order now to skip the wait — we'll have your Shack ready when you walk in.",
"preMessage": "Earn 15% CASH on your Shake Shack purchase!",
"rewardCopy": "Earn 15% CASH on your Shake Shack purchase, with a $6 CASH maximum.",
"postMessage": "Earn 15% CASH on your Shake Shack purchase, with a $6 CASH maximum.<br/><br/>Since 2004, people from all over the world have lined up to grab our high-quality takes on the classics: Angus beef burgers, crispy chicken, crinkle cut fries, shakes + way more. <br><br>Order now to skip the wait — we'll have your Shack ready when you walk in.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=bWanm&xt=bXCEv9NJskrH3BoEbCvc4wItAP3V62BAz9UpQw9aHo0NGmTA/GjRFODYMKcrpXwN' aria-label='Order Now'>Order Now</a><br/><br/>Offer expires Feb 14, 2026. Offer valid in-restaurant and for food purchases made online at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6K3o0&xt=bXCEv9NJskrH3BoEbCvc4wItAP3V62BAz9UpQw9aHo0NGmTA/GjRFODYMKcrpXwN' aria-label='shakeshack.com'>shakeshack.com</a> and through the merchant mobile app. Dining or takeout/delivery orders must be processed directly by the merchant. Valid in the US only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date. Offer valid one time only.",
"thankYouMessage": "Thank you for your Shake Shack purchase.",
"headline": "15% CASH",
"shortPreMessage": "Earn 15% CASH!",
"termsAndConditions": "Offer expires Feb 14, 2026. Offer valid in-restaurant and for food purchases made online at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6K3o0&xt=bXCEv9NJskrH3BoEbCvc4wItAP3V62BAz9UpQw9aHo0NGmTA/GjRFODYMKcrpXwN' aria-label='shakeshack.com'>shakeshack.com</a> and through the merchant mobile app. Dining or takeout/delivery orders must be processed directly by the merchant. Valid in the US only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date. Offer valid one time only."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"orderNow": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=bWanm&xt=bXCEv9NJskrH3BoEbCvc4wItAP3V62BAz9UpQw9aHo0NGmTA/GjRFODYMKcrpXwN"
}
}
}
},
"isAffiliateMarketing": false
},
"1000199298": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMTk5Mjk4IgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-02-01T04:59:59Z",
"activationDate": "2025-12-05T01:25:12Z",
"merchantName": "HelloFresh.com",
"reward": {
"rewardType": "FIXED_AMOUNT_PURCHASE",
"rewardAmount": 6.0,
"maxRewardAmount": 6.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 6.0,
"purchaseTypes": [
"Subscription"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"activationState": "ACTIVATED",
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/4c4c0aa3eb6c48559bbac8d1efe62369.png",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/5b702841ed604995998a60005b484614.png",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/8414b6a6f90b4abface573a9737fbc96.png",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/f4a52cc728cb460fad86f3f3b2444009.png",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/f4a52cc728cb460fad86f3f3b2444009.png",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "HelloFresh is America's #1 meal kit that delivers fresh, pre-measured ingredients and delicious recipes to your doorstep. With over 100+ weekly recipes, from global flavors to family favorites, HelloFresh makes it easier to fit quick, home-cooked meals into your schedule every week.",
"preMessage": "Earn $6 CASH on your HelloFresh.com purchase!",
"rewardCopy": "Earn $6 CASH on your first payment of a HelloFresh.com subscription, <b>when you spend $6 or more.</b>",
"postMessage": "Earn $6 CASH on your first payment of a HelloFresh.com subscription, <b>when you spend $6 or more.</b><br/><br/>HelloFresh is America's #1 meal kit that delivers fresh, pre-measured ingredients and delicious recipes to your doorstep. With over 100+ weekly recipes, from global flavors to family favorites, HelloFresh makes it easier to fit quick, home-cooked meals into your schedule every week.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=VNDnP&xt=rYMrNrDIZRa+YcGz96+9MfM7PgU9aUSw3gxRQ/teKI+fjtk5YeoZ3VKFQ6IPdvJw' aria-label='Shop Now'>Shop Now</a><br/><br/>Offer expires Jan 31, 2026. Offer valid on first payment only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Recurring subscription payments begin after trial. For subscription cost and to cancel subscription, please visit <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=b2kaP&xt=rYMrNrDIZRa+YcGz96+9MfM7PgU9aUSw3gxRQ/teKI+fjtk5YeoZ3VKFQ6IPdvJw' aria-label='merchant website'>merchant website</a> for details. Must make first recurring payment by Jan 31, 2026.",
"thankYouMessage": "Thank you for your HelloFresh.com purchase.",
"headline": "$6 CASH",
"shortPreMessage": "Earn $6 CASH!",
"termsAndConditions": "Offer expires Jan 31, 2026. Offer valid on first payment only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Recurring subscription payments begin after trial. For subscription cost and to cancel subscription, please visit <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=b2kaP&xt=rYMrNrDIZRa+YcGz96+9MfM7PgU9aUSw3gxRQ/teKI+fjtk5YeoZ3VKFQ6IPdvJw' aria-label='merchant website'>merchant website</a> for details. Must make first recurring payment by Jan 31, 2026."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"shopNow": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=VNDnP&xt=rYMrNrDIZRa+YcGz96+9MfM7PgU9aUSw3gxRQ/teKI+fjtk5YeoZ3VKFQ6IPdvJw"
}
}
}
},
"isAffiliateMarketing": false
},
"1000199311": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMTk5MzExIgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2026-01-01T04:59:59Z",
"activationDate": "2025-11-22T00:12:50Z",
"merchantName": "Chevron",
"reward": {
"rewardType": "PERCENT_AMOUNT_PURCHASE",
"rewardAmount": 3.0,
"maxRewardAmount": 2.1,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 0.2,
"purchaseChannels": [
"PayAtPump"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"activationState": "ACTIVATED",
"visibilityState": "VISIBLE",
"redemptionState": "FULLY_REDEEMED",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/e0c0c29c6afc4bb1baa1c1cfa6cb8bcf.png",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/d6d06c81c6fa4897ac98cfedb405fd9a.png",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/6e2d9192fecc4036a746d07373d6353e.jpg",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/4ce284f84e8946c1bced1f45bfdf5ada.jpg",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/4ce284f84e8946c1bced1f45bfdf5ada.jpg",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "Get 25\u00a2 off per gallon on your next five visits when you complete registration of Chevron Rewards!<br><br>Choose gas that helps your car perform its best. Chevron with Techron gasoline delivers both unbeatable cleaning power and unbeatable mileage.<br><br>Save on every fuel up with Chevron Rewards.",
"preMessage": "Earn 3% CASH on your Chevron purchase!",
"rewardCopy": "Earn 3% CASH on your Chevron purchase, with a $2.10 CASH maximum. <b>Offer only valid on purchases made at the pump.</b>",
"postMessage": "Earn 3% CASH on your Chevron purchase, with a $2.10 CASH maximum. <b>Offer only valid on purchases made at the pump.</b><br/><br/>Get 25\u00a2 off per gallon on your next five visits when you complete registration of Chevron Rewards!<br><br>Choose gas that helps your car perform its best. Chevron with Techron gasoline delivers both unbeatable cleaning power and unbeatable mileage.<br><br>Save on every fuel up with Chevron Rewards.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=VG2xK&xt=zYq7GBB4/B8luSmwKQsQxXjQEbYeYsYch169LUQjdRFCixLi1NYJF+mnqJxAboum' aria-label='Learn More'>Learn More</a><br/><br/>Offer expires Dec 31, 2025. Offer valid on fuel purchases paid for at the pump only. Valid in the US only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Offer not valid on in-store, convenience, tobacco, alcohol, or lottery purchases. Payment must be made on or before offer expiration date. Offer valid one time only.",
"thankYouMessage": "Thank you for your Chevron purchase.",
"headline": "3% CASH",
"shortPreMessage": "Earn 3% CASH!",
"termsAndConditions": "Offer expires Dec 31, 2025. Offer valid on fuel purchases paid for at the pump only. Valid in the US only. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Offer not valid on in-store, convenience, tobacco, alcohol, or lottery purchases. Payment must be made on or before offer expiration date. Offer valid one time only."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"learnMore": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=VG2xK&xt=zYq7GBB4/B8luSmwKQsQxXjQEbYeYsYch169LUQjdRFCixLi1NYJF+mnqJxAboum"
}
}
}
},
"isAffiliateMarketing": false
},
"1000202500": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMjAyNTAwIgNPTEI=",
"startDate": "2026-01-21T17:35:21Z",
"endDate": "2025-12-16T04:59:59Z",
"activationDate": "2025-12-08T20:13:07Z",
"merchantName": "Turo",
"reward": {
"rewardType": "FIXED_AMOUNT_PURCHASE",
"rewardAmount": 10.0,
"maxRewardAmount": 10.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 100.0,
"purchaseChannels": [
"Online"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"activationState": "ACTIVATED",
"visibilityState": "VISIBLE",
"redemptionState": "FULLY_REDEEMED",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/96e02bdee9d24ff2860bf4a352a85565.png",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/d459a5012c0d412380a667bcda6dd8dc.png",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/6cb83f15d9e94ab4a5f252c3e78c0f62.jpg",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/420193f078bc4dffa10e4e232678a2dd.jpg",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/420193f078bc4dffa10e4e232678a2dd.jpg",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "Turo is the world’s largest car sharing marketplace, where you can book the perfect vehicle for any occasion from a trusted Turo host. Whether you're flying in for vacation or looking for a car in your neighborhood to get away for the weekend, you can choose from a totally unique selection of nearby cars — from the everyday to the extraordinary.",
"preMessage": "Earn $10 CASH on your Turo purchase!",
"rewardCopy": "Earn $10 CASH on your Turo purchase, <b>when you spend $100 or more. Offer valid online only.</b>",
"postMessage": "Earn $10 CASH on your Turo purchase, <b>when you spend $100 or more. Offer valid online only.</b><br/><br/>Turo is the world’s largest car sharing marketplace, where you can book the perfect vehicle for any occasion from a trusted Turo host. Whether you're flying in for vacation or looking for a car in your neighborhood to get away for the weekend, you can choose from a totally unique selection of nearby cars — from the everyday to the extraordinary.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6LOxx&xt=MtgHhgPTpEeAlygBT8frd2/YnGLawKzIdxWKiGPCcvmFTwS1m65hTuB7n9+/fdFr' aria-label='Book Now'>Book Now</a><br/><br/>Offer expires Dec 15, 2025. Offer valid online only at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=gBJ9l&xt=MtgHhgPTpEeAlygBT8frd2/YnGLawKzIdxWKiGPCcvmFTwS1m65hTuB7n9+/fdFr' aria-label='turo.com'>turo.com</a>. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date. Offer valid one time only.",
"thankYouMessage": "Thank you for your Turo purchase.",
"headline": "$10 CASH",
"shortPreMessage": "Earn $10 CASH!",
"termsAndConditions": "Offer expires Dec 15, 2025. Offer valid online only at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=gBJ9l&xt=MtgHhgPTpEeAlygBT8frd2/YnGLawKzIdxWKiGPCcvmFTwS1m65hTuB7n9+/fdFr' aria-label='turo.com'>turo.com</a>. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date. Offer valid one time only."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"bookNow": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=6LOxx&xt=MtgHhgPTpEeAlygBT8frd2/YnGLawKzIdxWKiGPCcvmFTwS1m65hTuB7n9+/fdFr"
}
}
}
},
"isAffiliateMarketing": false
},
"1000213852": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMjEzODUyIgNPTEI=",
"startDate": "2026-01-01T05:00:00Z",
"endDate": "2026-01-22T04:59:59Z",
"merchantName": "Kohl's",
"reward": {
"rewardType": "PERCENT_AMOUNT_PURCHASE",
"rewardAmount": 3.0,
"maxRewardAmount": 4.0,
"isMultiRedemption": true,
"maxNumRedemptions": null,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 0.2,
"purchaseChannels": [
"Online",
"InStore"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/9d83934d0bb04115bc2d6d8979450545.png",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/b4ae8870173443138b53ecb93cac2baa.png",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/6b58e08ac26b4d1ebf2dd07ede486559.jpg",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/e9c27a7b44cf4379a84cc5a9eaced40d.jpg",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/e9c27a7b44cf4379a84cc5a9eaced40d.jpg",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "Discover unbeatable style and value at Kohl’s—where great product meets great value and a great experience. Browse everything from fashion and home to beauty and gear, both in-store and online. With smart prices, top brands, and a seamless shopping experience, Kohl’s makes it easy to look fabulous and feel confident—every day.",
"preMessage": "Earn 3% CASH on your Kohl's purchases!",
"rewardCopy": "Earn 3% CASH on all of your Kohl's purchases, until a $4 CASH maximum is reached.",
"postMessage": "Earn 3% CASH on all of your Kohl's purchases, until a $4 CASH maximum is reached.<br/><br/>Discover unbeatable style and value at Kohl’s—where great product meets great value and a great experience. Browse everything from fashion and home to beauty and gear, both in-store and online. With smart prices, top brands, and a seamless shopping experience, Kohl’s makes it easy to look fabulous and feel confident—every day.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=b9ROp&xt=hRQX0nrOsl+4lW/RkSEzirC41HhyJBK9511b4g9h5ZIKcCQ/NGHeCbe3rgN76Jff' aria-label='Shop Now'>Shop Now</a><br/><br/>Offer expires Jan 21, 2026. Offer valid in-store in the US and online at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=VJNld&xt=hRQX0nrOsl+4lW/RkSEzirC41HhyJBK9511b4g9h5ZIKcCQ/NGHeCbe3rgN76Jff' aria-label='kohls.com'>kohls.com</a> only. Not valid for online orders shipped outside of the US. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date.",
"thankYouMessage": "Thank you for your Kohl's purchase.",
"headline": "3% CASH",
"shortPreMessage": "Earn 3% CASH!",
"termsAndConditions": "Offer expires Jan 21, 2026. Offer valid in-store in the US and online at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=VJNld&xt=hRQX0nrOsl+4lW/RkSEzirC41HhyJBK9511b4g9h5ZIKcCQ/NGHeCbe3rgN76Jff' aria-label='kohls.com'>kohls.com</a> only. Not valid for online orders shipped outside of the US. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"shopNow": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=b9ROp&xt=hRQX0nrOsl+4lW/RkSEzirC41HhyJBK9511b4g9h5ZIKcCQ/NGHeCbe3rgN76Jff"
}
}
}
},
"isAffiliateMarketing": false
},
"1000136765": {
"adType": "CASH_BACK_OFFER",
"adServeToken": "CiQ5ZWUwNzY3MC03ZGNmLTQwMzYtYTkxMi0xMjI4Mjc4Mjg2ZmMQzNOZtr4zGgoxMDAwMTM2NzY1IgNPTEI=",
"startDate": "2025-07-21T04:00:00Z",
"endDate": "2025-10-02T03:59:59Z",
"merchantName": "Hallmark Gold Crown",
"reward": {
"rewardType": "PERCENT_AMOUNT_PURCHASE",
"rewardAmount": 15.0,
"maxRewardAmount": 12.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 0.2,
"purchaseChannels": [
"Online",
"InStore"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": []
},
"visibilityState": "VISIBLE",
"assets": {
"logo": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/1ffafcc8828b4e1ead6b2c3d49368f21.jpg",
"width": 627,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/non-annotated-logo/410a4262858b4a6aa81a834ab9348c71.jpg",
"width": 128,
"height": 128
}
}
},
"largeRectangle": {
"type": "IMAGE_URL",
"value": {
"large": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/0597375bd6634646b52f1354cf5e906a.jpg",
"width": 1200,
"height": 627
},
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/140cb02886ef4d8a98649019064fc2de.jpg",
"width": 600,
"height": 314
}
}
},
"smallRectangle": {
"type": "IMAGE_URL",
"value": {
"small": {
"url": "https://publisher-cdn-us.cardlytics.com/images/hero/140cb02886ef4d8a98649019064fc2de.jpg",
"width": 600,
"height": 314
}
}
},
"copy": {
"type": "AD_COPY",
"value": {
"marketingCopy": "Step into Hallmark Gold Crown, where the smallest gesture can become the grandest memory. More than just a store, it's a place to celebrate life's everyday magic — with beautifully crafted cards, thoughtful gifts, and exclusive keepsakes that help you say what words alone never could. Every visit to Hallmark Gold Crown is a journey into connection, creativity, and joy, with caring staff here to help you create a meaningful moment.",
"preMessage": "Earn 15% CASH on your Hallmark Gold Crown purchase!",
"rewardCopy": "Earn 15% CASH on your Hallmark Gold Crown purchase, with a $12 CASH maximum.",
"postMessage": "Earn 15% CASH on your Hallmark Gold Crown purchase, with a $12 CASH maximum.<br/><br/>Step into Hallmark Gold Crown, where the smallest gesture can become the grandest memory. More than just a store, it's a place to celebrate life's everyday magic — with beautifully crafted cards, thoughtful gifts, and exclusive keepsakes that help you say what words alone never could. Every visit to Hallmark Gold Crown is a journey into connection, creativity, and joy, with caring staff here to help you create a meaningful moment.<br/><br/><a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=b2kRy&xt=SWJ7OGLkS40q+dI8ojfwZiz2ES4V4rfRLQXqRjY69C8AN5aaNiqBl72TipT7aAJH' aria-label='Find Locations'>Find Locations</a><br/><br/>Offer expires Oct 1, 2025. Offer valid in-store in the US and online at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6LN1x&xt=SWJ7OGLkS40q+dI8ojfwZiz2ES4V4rfRLQXqRjY69C8AN5aaNiqBl72TipT7aAJH' aria-label='hallmark.com'>hallmark.com</a> only. Not valid for online orders shipped outside of the US. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date. Offer valid one time only.",
"thankYouMessage": "Thank you for your Hallmark Gold Crown purchase.",
"headline": "15% CASH",
"shortPreMessage": "Earn 15% CASH!",
"termsAndConditions": "Offer expires Oct 1, 2025. Offer valid in-store in the US and online at US website <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='https://l.cardlytics.com?r=6LN1x&xt=SWJ7OGLkS40q+dI8ojfwZiz2ES4V4rfRLQXqRjY69C8AN5aaNiqBl72TipT7aAJH' aria-label='hallmark.com'>hallmark.com</a> only. Not valid for online orders shipped outside of the US. Payment must be made directly with the merchant. Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date. Offer valid one time only."
}
},
"callsToAction": {
"type": "CALL_TO_ACTION_LINKS",
"value": {
"findLocations": {
"type": "WEB_LINK",
"value": "https://l.cardlytics.com?r=b2kRy&xt=SWJ7OGLkS40q+dI8ojfwZiz2ES4V4rfRLQXqRjY69C8AN5aaNiqBl72TipT7aAJH"
}
}
}
},
"isAffiliateMarketing": false
}
},
"rankings": {
"all": [
"1000219623",
"1000227403",
"1000222764",
"1000211313",
"1000227948",
"1000228200",
"1000197901",
"1000199341",
"1000211492",
"1000218042",
"1000211310",
"1000199304",
"1000214226",
"1000219124",
"1000199298",
"1000199311",
"1000202500",
"1000213852",
"1000136765"
]
},
"categories": {
"1000199298": {
"name": "Food & Drink",
"id": "2"
},
"1000227948": {
"name": "Food & Drink",
"id": "2"
},
"1000211492": {
"name": "Shopping",
"id": "3"
},
"1000197901": {
"name": "Health & Beauty",
"id": "10"
},
"1000227403": {
"name": "Shopping",
"id": "3"
},
"1000199304": {
"name": "Food & Drink",
"id": "2"
},
"1000199311": {
"name": "Gas & Auto",
"id": "8"
},
"1000218042": {
"name": "Food & Drink",
"id": "2"
},
"1000214226": {
"name": "Entertainment",
"id": "1"
},
"1000136765": {
"name": "Shopping",
"id": "3"
},
"1000222764": {
"name": "Entertainment",
"id": "1"
},
"1000219124": {
"name": "Food & Drink",
"id": "2"
},
"1000199341": {
"name": "Entertainment",
"id": "1"
},
"1000219623": {
"name": "Travel & Vacation",
"id": "5"
},
"1000228200": {
"name": "Entertainment",
"id": "1"
},
"1000202500": {
"name": "Travel & Vacation",
"id": "5"
},
"1000211313": {
"name": "Gas & Auto",
"id": "8"
},
"1000213852": {
"name": "Shopping",
"id": "3"
},
"1000211310": {
"name": "Health & Beauty",
"id": "10"
}
},
"adStoreLocations": {}
}