website logo
WildlinkWildfire-corpFeaturesNetworkCompanyPricingResourcesContact us
⌘K
Wildfire Systems Knowledgebase
Partner Admin
Commission History
Performance Summary
Desktop Solutions
Browser Extension Authentication
Implementing Wildfire Coupons into an existing Chrome Extension
How to Implement OAuth in a Chrome Extension
Direct tracking code injection to extension
Mobile Solutions
Android MCA SDK Guide
Android MCA Permission Compliance
How to implement the Mobile Safari Extension
Wildfire APIs
Country filtering and multiple applications
Public Commission Sample Data
Getting to know the Wildfire JSON Data Feeds
Creating links
Commission History
Gift Card
Merchants and Domains
Merchant Images
Tracking Code (TC) Parameter
Syncing Commission Data via API and Callbacks
Working with Wildfire Coupon Data
Getting started with the Wildfire API Postman collection
FAQ and General Resources
Jump Track
Best Practices
6 Reasons Why a User Might Not Get Credit for Earning
FTC Compliance Overview
Stand-Down Policy Compliance
Docs powered by archbee 
4min

Merchant Images

Occasionally, you'll want to display images when displaying merchant programs to your users (for example, if you have a merchant directory where users can browse all the available programs).  While Wildfire Systems doesn't provide images for every program (as we have thousands of merchants) we do have images available for most of the large merchants in our system.  Currently, we have up to three image types available for merchants:

  • Featured Images
  • Logo Images
  • Rectangular Logo Images

A logo image is a square image that shows the logo of the merchant. A rectangular logo image is a rectangular image that shows the logo of the merchant. A featured image is a larger, rectangular image that you can use as a background or tile for a merchant list or for a merchant detail view.  You can see examples of these images on our demonstration site:

https://www.wildlink.me/stores

Example of a Featured image (660w x 380h)
Example of a Featured image (660w x 380h)

Example of a Logo image (200w x 200h)
Example of a Logo image (200w x 200h)

Example of a Rectangular Logo image (260w x 200h)
Example of a Rectangular Logo image (260w x 200h)


You can fetch a list of all available merchant images using the following URL:  where APPLICATION_ID is your application ID and VERSION is the version of the API you wish to invoke (at the time of this writing, the current version is 1).

The following is a sample of this data source (Note: we removed most of the merchant category data for this JSON sample to make it easier to see the image data):

JSON
|
{
  "ID": 5483936,
  "Name": "Walmart",
  "PaysNewCustomersOnly": false,
  "ShareAndEarnDisabled": false,
  "Categories": [
    {
      "ID": 138,
      "Name": "Televisions",
      "ParentID": 126
    }
  ],
  "Countries": [
    "US",
    "CA"
  ],
  "Images": [
    {
      "ID": 27,
      "Kind": "FEATURED",
      "Ordinal": 1,
      "ImageID": 27,
      "URL": "https://storage.googleapis.com/wl-image/14acf0ebb78de2a21a5b450c9b68e35984e7ba69",
      "Width": 660,
      "Height": 380
    },
    {
      "ID": 978,
      "Kind": "LOGO",
      "Ordinal": 1,
      "ImageID": 978,
      "URL": "https://storage.googleapis.com/wl-image/664da5944da1aba6080922c84d6098bd51eb2a5b",
      "Width": 200,
      "Height": 200
    },
    {
      "ID": 2706,
      "Kind": "LOGO",
      "Ordinal": 10,
      "ImageID": 2706,
      "URL": "https://storage.googleapis.com/wl-image/adbb0643ee3ca2ef769164be9f593d531df4615d",
      "Width": 200,
      "Height": 200
    },
    {
      "ID": 2415,
      "Kind": "LOGORECT",
      "Ordinal": 20,
      "ImageID": 2415,
      "URL": "https://storage.googleapis.com/wl-image/96c2e598c00ad7d8fcef2086cd155e83427437c3",
      "Width": 260,
      "Height": 200
    }
  ],
  "Score": 1
}




Updated 03 Mar 2023
Did this page help you?
Yes
No
UP NEXT
Tracking Code (TC) Parameter
Docs powered by archbee