Skip to content

Latest commit

 

History

History
159 lines (111 loc) · 4.31 KB

productapi.rst

File metadata and controls

159 lines (111 loc) · 4.31 KB

Product API

Overview

By providing us a payload with certain product descriptors, we will return a set of monetizable ClickMate <clickmate_overview> links, along with our point-in-time estimate of the CPC for each product in the result set.

Your account must be a member of our LinkMate program to use this feature. For more information about this program, feel free to contact us.

Request

GET /api/v1/product_match/clickmate/exclusive_links/
Query Param Type Description
publisher_slug string(64) (Required) The slug provided by your Narrativ account rep.
gtin string(14) Product descriptor (Optional): the GTIN of the product to be wrapped in a ClickMate link
sku string(255) Product descriptor (Optional): the SKU of the product to be wrapped in a ClickMate link
product_url string(2048) Product descriptor (Optional): the URL of the product to be wrapped in a ClickMate link (must be URL encoded!)
article_url string(2048) Article info (Optional): The URL of the article your link is coming from (must be URL encoded!)
article_name string(100) Article info (Optional): The name or title of the article your link is coming from

Required Parameters

  • Option 1: Provide at least one product descriptor in your request (gtin, sku, product_url) and at least one article_info (article_url, article_name)
  • Option 2: Provide at least one product descriptor in your request (gtin, sku, product_url) and zero article_info (article_url, article_name). In this case, you will need to append at least one article_info (article_url, article_name) as query parameters to the resulting ClickMate link. See the ClickMate documentation <clickmate_overview> for more information.

Response

The response data consists of the list data, with each entry having the following structure:

Field Name Type Description
best_effort_cpc float Point in time prediction of the CPC for the merchant publisher pairing in USD
clickmate_link string The ClickMate <clickmate_overview> URL which monetizes the retrieved product
product_information json
Product details
  • brand
    • string
    • The retrieved product's brand
  • gtin
    • string
    • The retrieved product's GTIN
  • image_url
    • string
    • The retrieved product's image URL
  • in_stock
    • boolean
    • If the product is currently in stock or not
  • price
    • string
    • The price of the retrieved product in USD
  • product_name
    • string
    • The retrieved product's name

URL Encoding

All parameters must be URL encoded. See URL Encoder.

Example Requests

GET /api/v1/product_match/clickmate/exclusive_links/?publisher_slug=myacct&gtin=77777777777

GET /api/v1/product_match/clickmate/exclusive_links/?publisher_slug=myacct&sku=00000000&&gtin=88888888888888

GET /api/v1/product_match/clickmate/exclusive_links/?publisher_slug=myacct&sku=00000000&&gtin=99999999999999&product_url=https%3A%2F%2Fwww.merchant.example%2Fproduct%2F123%0A

Example Response

{
    "data": [
        {
            "product_information": {
                "price": "15.99",
                "product_name": "Example Product",
                "in_stock": true,
                "gtin": "55555555555555",
                "image_url": "https://merchant.example/path/to/image_url",
                "brand": "Example Brand"
            },
            "clickmate_link": "https://shop-links.co/link/?url=https%3A%2F%2Fwww.merchant.example%2Fproduct%2F123%0Aexclusive=1&publisher_slug=myacct",
            "best_effort_cpc": 0.50,
        }
    ]
}