--- title: "Pricing list" source_url: https://dev.digicert.com/certcentral-apis/services-api/products/pricing-list.html api_method: GET api_endpoint: "/services/v2/product/pricing" api_url: "https://www.digicert.com/services/v2/product/pricing" --- **GET** `https://www.digicert.com/services/v2/product/pricing` Use this endpoint to retrieve a comprehensive list of product prices available under your account, including details such as product names, validity periods, costs, and additional Subject Alternative Names (SANs) pricing. ## Example requests and responses **cURL** ```bash curl -X GET \ https://www.digicert.com/services/v2/product/pricing \ -H 'Content-Type: application/json' \ -H 'X-DC-DEVKEY: {{api_key}}' ``` **Python** ```python import requests url = "https://www.digicert.com/services/v2/product/pricing" payload = "" headers = { 'X-DC-DEVKEY': "{{api_key}}", 'Content-Type': "application/json" } response = requests.request("GET", url, data=payload, headers=headers) print(response.text) ``` **Go** ```go package main import ( "fmt" "net/http" "io/ioutil" ) func main() { url := "https://www.digicert.com/services/v2/product/pricing" req, _ := http.NewRequest("GET", url, nil) req.Header.Add("X-DC-DEVKEY", "{{api_key}}") req.Header.Add("Content-Type", "application/json") res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := ioutil.ReadAll(res.Body) fmt.Println(res) fmt.Println(string(body)) } ``` **NodeJS** ```javascript var request = require("request"); var options = { method: 'GET', url: 'https://www.digicert.com/services/v2/product/pricing', headers: { 'Content-Type': 'application/json', 'X-DC-DEVKEY': '{{api_key}}' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); }); ``` ## 200 OK ```json { "standard_prices": [ { "group_name": "ssl_certificate", "name_id": "ssl_plus", "name": "Standard SSL", "prices": [ { "lifetime": 1, "cost": 198, "currency": "usd" }, { "lifetime": 2, "cost": 376, "currency": "usd" } ] }, { "group_name": "ssl_certificate", "name_id": "ssl_multi_domain", "name": "Multi-Domain SSL", "prices": [ { "lifetime": 1, "cost": 358, "additional_name_cost": 135, "currency": "usd" }, { "lifetime": 2, "cost": 680, "additional_name_cost": 257, "currency": "usd" } ] }, { "group_name": "ssl_certificate", "name_id": "ssl_wildcard", "name": "WildCard", "prices": [ { "lifetime": 1, "cost": 658, "additional_name_cost": 658, "currency": "usd" }, { "lifetime": 2, "cost": 1250, "additional_name_cost": 1250, "currency": "usd" } ] }, { "group_name": "ssl_certificate", "name_id": "ssl_ev_plus", "name": "EV SSL", "prices": [ { "lifetime": 1, "cost": 299, "currency": "usd" }, { "lifetime": 2, "cost": 568, "currency": "usd" } ] }, ... ] } ``` ## Response parameters
Name Type Description
standard_prices array List of product prices.
.. group_name string Product category name. See Glossary – Product Identifiers.
.. name_id string Product name ID. See Glossary – Product Identifiers.
.. name string Display name of the product.
.. prices array List of product prices.
.. .. lifetime int Validity duration in years.
.. .. cost int Product cost based on validity duration.
.. .. additional_name_cost int Cost of additional SANs.
.. .. currency string Currency unit.
Possible values: USD