Quick Start

Get your API keys

Your API requests are authenticated using API keys. Any request that does not include an API key will return an error. Sign up for Cooler today to get started and navigate to the Accounts tab to retrieve your test and production API keys.

Note: We limit test api key usage as means for you to explore the API

Make your first footprint request

Send an authenticated request to the products footprint endpoint.

Take a look at how you might call this method via curl:

curl -X 'POST' \
  'http://api.cooler.dev/v1/footprint/products' \
  -H 'accept: */*' \
  -H 'COOLER-API-KEY: YOUR_COOLER_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "automaticallyNeutralize": false,
  "processSyncronously": true,
  "items": [
    {
      "price": 999,
      "sku": "123",
      "store": "Apple - Legacy Place",
      "externalId": "456",
      "manufacturer": "Apple",
      "title": "iPhone X",
      "category": "consumer electronics",
      "zip": "02119",
      "isUsed": false
    }
  ],
  "currency": "USD"
}'

Make your first neutralization request

Take a look at how you might call this method via curl:

curl -X 'POST' \
  'http://api.cooler.dev/v1/neutralize/transactions/8a3c06b4-0840-46f2-9634-557ce041037a' \
  -H 'accept: */*' \
  -H 'COOLER-API-KEY: YOUR_COOLER_API_KEY'
}'

Last updated