FastPOD
  1. Orders
FastPOD
  • Getting Started
  • Orders
    • List Orders
      GET
    • Get Order
      GET
    • Create Order
      POST
    • Cancel Order
      POST
    • Estimate Order Price
      POST
    • Estimate Item Price
      POST
    • Update Order
      PUT
    • Update Status
      PUT
  • Catalog
    • List Catalogs
      GET
  • Webhook
    • List Webhooks
      GET
    • Subscribe
      POST
    • Unsubcribe
      DELETE
  1. Orders

Estimate Item Price

POST
/v1/orders/estimate-price/line-item
The API responds with the price of the order and the number of points you can receive if you subscribe to the Rocket Fuel program.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Example
{
    "quantity": 1,
    "print_areas": {
        "front": "url",
        "back": "url"
    },
    "sku": "UAGHTBRRYEXL"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-v2.fastpod.net/v1/orders/estimate-price/line-item' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
    "quantity": 1,
    "print_areas": {
        "front": "url",
        "back": "url"
    },
    "sku": "UAGHTBRRYEXL"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "sku": "UAGHTBRRYEXL",
    "quantity": 1,
    "print_areas": {
        "front": "url",
        "back": "url"
    },
    "unit_price": 14.8,
    "price": 14.8,
    "point_earned": 0,
    "surcharge_total": 1
}
Modified at 2023-12-18 03:12:34
Previous
Estimate Order Price
Next
Update Order
Built with