--- title: "Services API" source_url: https://dev.digicert.com/certcentral-apis/services-api.html --- The DigiCert Services API is a powerful API that allows you to automate typical certificate processes to save time and streamline certificate management. The Services API uses modern RESTful conventions and is simple to use. The DigiCert CertCentral® Services API is a powerful, modern RESTful API designed to programmatically manage and streamline your certificate lifecycle processes. This page serves as the central hub for accessing, ordering, managing, and administrating all certificate types through DigiCert CertCentral®. Also, to understand the high-level integration flow, see [Integrate with CertCentral APIs](https://dev.digicert.com/md/certcentral-apis/integrate-with-certcentral-apis.md). ## Why use it? - Access all the features available in CertCentral without needing to log in to the platform. - Customize and automate virtually any workflow within the certificate management platform. - Create your own version of the platform with your organization's branding. - Seamlessly integrate with your existing tools. ## Base URL To construct API requests, use the base URL for your CertCentral instance . > **Info** > > Most accounts use the US instance of CertCentral. If your account uses the Europe instance, your CertCentral console displays **CertCentral Europe** in the top left corner.
| CertCentral instance | Base URL |
|---|---|
| CertCentral US | https://www.digicert.com/services/v2 |
| CertCentral Europe | https://certcentral.digicert.eu/services/v2 |
| Name | Description |
|---|---|
filters[{{property_name}}] |
Limits response to results where the chosen property_name contains a specific value. Replace {{property_name}} in your request with the property to use for filtering.If the value of the property is a date, you can filter by date range. To filter by date range, separate the start date and end date with an ellipsis ( ...). To return all results before or after a specific date, prefix the date with a less than (<) or greater than (>) symbol, respectively.Examples:
|
| filters[search] | Limits response to results where the value of a searched property matches or contains a specific string of characters. To see a list of the searched properties for an endpoint, check the reference documentation for the endpoint. To search for values that contain a specific string of characters, prefix the string with a URL encoded (percent-encoded) % character: %25. To search for values that are an exact match for a string of characters, omit the %25 from the request.Examples:
|
| sort | Sorts results by the value of one or more properties. By default, sorts results in ascending alphabetical order (0-9, A-Z). To sort in descending alphabetical order (9-0, Z-A), prefix the property name with a minus ( -). To sort by multiple properties, separate the name of each property with a comma. Sort hierarchy matches the order of properties in this list.Examples:
|
| offset | Index of the first result to return. |
| limit | Total number of results to include in the response. |