SDSamtec Developer Portal
APIsPricingReference

Get customer-specific pricing for a part

Look up the price Samtec would quote your organization for a specific part and quantity. Provide `oemPart` or `customerName` (but not both) to check for contract pricing tied to a specific OEM customer relationship; without one, standard book pricing is returned. Prices are converted to the currency given in `isoCurrencyCode`.

GET
/v1/customerpricing/{part}
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"

In: header

Path Parameters

part*string

Query Parameters

oemPart?string
Default""
customerName?string
Default""
contractManufacturerName?string
Default""
quantity?integer
Formatint32
Default1
isoCurrencyCode?string
Default"USD"
email?string

Header Parameters

client-app-name?string

Name of the client application

Default"samtec-dev-portal"

Response Body

application/json

curl -X GET "https://example.com/v1/customerpricing/string"
{  "part": "TSW-110-08-T-D",  "fullIncrementsRequired": false,  "packagingQuantity": 100,  "isoCurrencyCode": "USD",  "customerInformation": {    "oemNameProvided": false,    "oemMatchFound": false,    "oemSamtecCustomerName": null,    "cmNameProvided": false,    "cmMatchFound": false,    "cmSamtecCustomerName": null  },  "bookPrice": {    "oem": 0.842,    "distributor": 0.913  },  "prices": [    {      "suggestedPrice": 0.842,      "contract": null,      "oemCustomer": null,      "minimumOrderQuantity": 100    }  ]}