- Partner
- Genel Bakış
- Buy
- Customer - B2B2C
- Partner - B2B
- Card Payment
- Sell
- Customers
- Balances
- Card Storage
- Delivery
- Product PricesGET
- Get OrdersGET
- Get OrderGET
- Get Order (Alternative)POST
- Partner LegalPOST
- Order StatussesGET
- E-Commerce API
- Catalog
- Customers
- Customer Address
- Checkout
- Legal
- WS
- Minted PricesGET
Calculate Price
Testing
Testing Env
Testing Env
POST
https://api.staging.mintedconnect.com/partner/pricecalc
Last modified:2025-01-17 13:54:18
Maintainer:Not configured
Request
Authorization
Provide your encrypted digest scheme data in the
Authorization
header when making requests to protected resources.Example:
Authorization: Digest username=guest, realm="test", nonce="2", uri="/uri", response="***"
Header Params
api-version
string
required
Example:
3
x-client-id
string
required
Default:
web
Accept-Language
string
optional
Default:
tr
Body Params application/json
type
enum<string>
required
Allowed values:
buysell
price_token
string
required
sku
string
required
amount
number
required
Multiple of:
0.01
Example
{
"price_token": "{{price_token}}",
"type": "buy",
"sku": "GAU",
"amount": 1.23
}
Request 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.staging.mintedconnect.com/partner/pricecalc' \
--header 'api-version: 3' \
--header 'api-version;' \
--header 'x-client-id;' \
--header 'Accept-Language: tr' \
--header 'Content-Type: application/json' \
--data-raw '{
"price_token": "",
"type": "buy",
"sku": "GAU",
"amount": 1.23
}'
Responses
🟢200OK
application/json
Body
data
object
required
price
number
required
price_token
string
required
success
boolean
required
code
integer
required
message
string
required
Example
{
"data": {
"price": 3047.96,
"price_token": "5Kpg2ty1opOqn4MjFSIDwZJlkpGHoijz"
},
"success": true,
"code": 0,
"message": ""
}
🟠422Parameter Error
Modified at 2025-01-17 13:54:18