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 List

Obsolete
OTE Environment
https://oteapi.webnic.cc
OTE Environment
https://oteapi.webnic.cc
GET
/ssl/v2/products/list/price
Last modified:2025-04-04 02:56:02
The endpoint retrieves a list of products with base price.
For Efficiency
Recommend to replace with GET Product List only endpoint which has much faster respond time (almost 11x faster!).
Price show is the product base price in USD.

Request

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

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://oteapi.webnic.cc/ssl/v2/products/list/price' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "code": "1000",
    "message": "Command completed successfully.",
    "data": [
        {
            "productKey": "AlphaSSL",
            "productName": "Alpha",
            "provider": "GlobalSign",
            "price": 23.6,
            "wildcard": true,
            "allowSan": false,
            "allowWsan": false,
            "freeSan": false,
            "certType": "DV"
        },
        {
            "productKey": "ComodoEVSSL",
            "productName": "Sectigo EV SSL",
            "provider": "Sectigo",
            "price": 20,
            "wildcard": false,
            "allowSan": false,
            "allowWsan": false,
            "freeSan": false,
            "certType": "EV"
        },
        {
            "productKey": "ComodoEVSSLMultiDomainCertificate",
            "productName": "Sectigo EV Multi-Domain SSL",
            "provider": "Sectigo",
            "price": 20,
            "wildcard": false,
            "allowSan": true,
            "allowWsan": false,
            "freeSan": false,
            "certType": "EV"
        },
        {
            "productKey": "ComodoSSL",
            "productName": "Sectigo SSL",
            "provider": "Sectigo",
            "price": 20,
            "wildcard": true,
            "allowSan": false,
            "allowWsan": false,
            "freeSan": false,
            "certType": "DV"
        }
    ]
}
Modified at 2025-04-04 02:56:02
Previous
GET Product List (new)
Next
Get SSL Rules
Built with