WebNIC RESTFUL v2
Domain APISSL APIDNS APIUtility Endpoints
Domain APISSL APIDNS APIUtility Endpoints
WebNIC OST @ Github
WebNIC Partner Portal
  1. Product
  • 📝 Update History
  • 💡 Testing Flow
  • CSR
    • Generate CSR
      POST
    • Decode CSR
      POST
  • Certificate
    • Get Order Info
      GET
    • Order Statistics
      GET
    • Order Graph Statistics
      GET
    • Order Pagination Search
      POST
    • Download Cert
      POST
    • Place Order
      POST
    • Cancel Order
      POST
    • Renew Order
      POST
    • Reissue Order
      POST
  • Domain Validations
    • Check DCV Status
      GET
    • Change Auth Type
      PUT
    • Get Auth Info
      GET
    • Approver List
      GET
    • Update Email Approver
      PUT
    • Send Email Approver
      POST
  • Product
    • Linkage of Product informations
    • GET Product List (new)
      GET
    • Get Product List
      GET
    • Get SSL Rules
      GET
    • Get Product Info
      GET
    • Get Product Price
      GET
  • Organization
    • Create Organization
    • Search Organization
    • Get Organization Info
    • Update Organization Contact
    • Submit Validation
    • Get Validation Status
  • Contact
    • Get Contact Info
    • Create Contact
    • Delete Contact
Domain APISSL APIDNS APIUtility Endpoints
Domain APISSL APIDNS APIUtility Endpoints
WebNIC OST @ Github
WebNIC Partner Portal
  1. Product

Get Product Price

Testing
OTE Environment
https://oteapi.webnic.cc
OTE Environment
https://oteapi.webnic.cc
GET
/ssl/v2/products/pricing
Last modified:2025-05-27 01:35:23
This endpoint retrieves the pricing details for a specific configuration of an SSL product.
💡
The price table structure had been revamped:
Total price sum of priceBreakdown = price
baseCertPrice = 1st SAN/wSAN price.
commonSANPrice = Total SAN price.
wildcardSANPrice = Total Wildcard SAN price.
Key value for price query
Endpoint: Get Product Info
bundle not empty if it is a Multi Domain Certificate Product.
wildcard is true for a Wildcard CN Product.
allowSan & allowWSan hints for a SAN supported product.

Samples to get complete Price Table (1st Year Term)#

Example 1: Common Cert Products
Example 2: Wildcard Cert Products
Example 3: No SAN Supported Products
Example 4: Common Multi Domain Cert Products
Example 5: Wildcard Multi Domain Cert Products
The important of SSL Rules
Always check the SSL Product specifications with Get SSL Rules endpoint, and use on this price query.
When posting query with not supported specification
If the query post with SAN params but the product didn't support, you will get a respond of Error 400.
Example: AlphaSSL.
Limitation
It didn't validate the total number of SAN in configuration that could have exists Max Allowed SAN of such product. Please verify it prior to perform Get Product Price.

Request

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

Responses

🟢200Success
application/json
Body

🟠400Bad Request
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://oteapi.webnic.cc/ssl/v2/products/pricing?productKey=ssl123&term=1&commonSAN=2&wildcardSAN=1' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "code": "1000",
    "message": "Command completed successfully.",
    "data": {
        "price": 50.0,
        "currency": "USD",
        "term": 1,
        "termType": "year",
        "priceBreakdown": {
            "baseCertPrice": 10.0,
            "commonSANPrice": 20.0,
            "wildcardSANPrice": 20.0
        }
    }
}
Modified at 2025-05-27 01:35:23
Previous
Get Product Info
Next
Create Organization
Built with