FW FinerWorks API
arrow_back Back to all endpoints
POST https://test-api.finerworks.com/v3/get_prices

Get Price List

Returns a list of prices and their breakdown based on a list of product codes or virtual inventory skus. Request as few as 1 or as many as 50 in the body of the request.

Body

Name Description Type Additional information
products List of products in which pricing is requested. array (pricing_item)

Required

account_key Optional - This will only be accepted for accounts with permission to utilize this parameter, otherwise it will be ignored and pricing will be retrieved based upon the user's api credentials. Leave as null if not authorized to use this parameter. text None.

Example JSON Body

application/json, text/json

{
  "products": [
    {
      "product_qty": 1,
      "product_sku": "sample string 2"
    },
    {
      "product_qty": 1,
      "product_sku": "sample string 2"
    }
  ],
  "account_key": "sample string 1"
}

Sample Code Library

curl --location --request POST 'https://test-api.finerworks.com/v3/get_prices' \
--header 'Content-Type: application/json' \
--header 'web_api_key: my-web-api-key-goes-here' \
--header 'app_key: my-app-key-goes-here' \
--data-raw '{
  "products": [
    {
      "product_qty": 1,
      "product_sku": "sample string 2"
    },
    {
      "product_qty": 1,
      "product_sku": "sample string 2"
    }
  ],
  "account_key": "sample string 1"
}'