Benchmark Product API - V3.0.1 (5/6/2022)

Necessary Headers

The following headers should be sent with each request. Any headers specific to a single endpoint will be noted below.

api-token: '<your-token>'
accept-encoding: 'gzip, deflate, br'

https://api.benchmarkrings.com/v3/products

Returns all active products.

Any images not included in the array should be removed from the product. ring_<style_number>_<image_number> can be used as the image key. Images will not be renumbered upon deletion. e.g. Given the product response below, suppose image 1 had been deleted. The next response would return ring_CF98486CC_2, ring_CF98486CC_3, and ring_CF98486CC_4.

[ { "previewID": 6206, "sku": "CF98486CC06", "size": 6.0, "brand": "Forge", "collection": "Cobalt", "price": 1080.0, "style": "CF98486CC", "title": "THE CARTER", "video": "https://youtu.be/K9ByWfEJHTE", "width": 8.0, "family": 583, "images": [ { "url": "https://assets.benchmarkrings.com/benchmark_rings/ring_CF98486CC_1_original.jpg?1612808357", "updatedAt": "2021-02-08T18:19:17.268Z" }, { "url": "https://assets.benchmarkrings.com/benchmark_rings/ring_CF98486CC_2_original.jpg?1612808357", "updatedAt": "2021-02-08T18:19:17.815Z" }, { "url": "https://assets.benchmarkrings.com/benchmark_rings/ring_CF98486CC_3_original.jpg?1612808358", "updatedAt": "2021-02-08T18:19:18.575Z" }, { "url": "https://assets.benchmarkrings.com/benchmark_rings/ring_CF98486CC_4_original.jpg?1613154720", "updatedAt": "2021-02-12T18:32:00.429Z" } ], "gemStones": [ { "type": "Diamond", "count": 3, "properties": { "color": "GH", "weight": 0.18, "clarity": "SI1-2", "setting": "burnish" } } ], "metalTypes": [ "Cobalt" ], "description": "8mm, Comfort fit\nWhite Cobalt\nSatin finish center, polished bevel edges\n3 burnish set diamonds \nCarat weight is .18ct\nClarity SI1-2, Color GH\n", "isPreviewable": true, "isActive": true, "prices": [ { "price": 1840, "currencyCode": "CAD" }, { "price": 1080, "currencyCode": "USD" } ] } ]

https://api.benchmarkrings.com/v3/products/2022-03-20T0:00:00

Returns all products created/updated after the provided datetime.

Note that inactivated products will only have a SKU and isActive flag.

[ { "previewID": 6206, "sku": "CF98486CC06", "size": 6.0, "brand": "Forge", "collection": "Cobalt", "price": 1080.0, "style": "CF98486CC", "title": "THE CARTER", "video": "https://youtu.be/K9ByWfEJHTE", "width": 8.0, "family": 583, "images": [ { "url": "https://assets.benchmarkrings.com/benchmark_rings/ring_CF98486CC_1_original.jpg?1612808357", "updatedAt": "2021-02-08T18:19:17.268Z" }, { "url": "https://assets.benchmarkrings.com/benchmark_rings/ring_CF98486CC_2_original.jpg?1612808357", "updatedAt": "2021-02-08T18:19:17.815Z" }, { "url": "https://assets.benchmarkrings.com/benchmark_rings/ring_CF98486CC_3_original.jpg?1612808358", "updatedAt": "2021-02-08T18:19:18.575Z" }, { "url": "https://assets.benchmarkrings.com/benchmark_rings/ring_CF98486CC_4_original.jpg?1613154720", "updatedAt": "2021-02-12T18:32:00.429Z" } ], "gemStones": [ { "type": "Diamond", "count": 3, "properties": { "color": "GH", "weight": 0.18, "clarity": "SI1-2", "setting": "burnish" } } ], "metalTypes": [ "Cobalt" ], "description": "8mm, Comfort fit\nWhite Cobalt\nSatin finish center, polished bevel edges\n3 burnish set diamonds \nCarat weight is .18ct\nClarity SI1-2, Color GH\n", "isPreviewable": true, "isActive": true, "prices": [ { "price": 1840, "currencyCode": "CAD" }, { "price": 1080, "currencyCode": "USD" } ], }, { "sku": "CFBP846561314KW04", "isActive": false } ]

https://api.benchmarkrings.com/v3/brands

Returns each of the retailers (and their standard info) associated with your API token

[ { "name": "Test Store", "website": "teststore.com", "brands": ["Brand 1", "Brand 2"], "previewURLTemplate": "https://www.benchmarkrings.com/in-store-preview?ring_id=<ringPreviewID>&retailer_id=1234", "appointmentURL": "https://www.benchmarkrings.com/book-appointment?retailer_id=1234" }, { "name": "Test Store 2", "website": "teststore2.com", "brands": ["Brand 2"], "previewURLTemplate": null, "appointmentURL": "https://www.benchmarkrings.com/book-appointment?retailer_id=1235" } ]