API Reference
Introduction
Fundamental concepts of ActiveCalculator’s API.
ActiveCalculator’s API is now available for use. Integrate powerful calculation capabilities into your applications.
Base URL
ActiveCalculator’s API is built on REST principles and is served over HTTPS. To ensure data privacy, unencrypted HTTP is not supported.
The Base URL for all API endpoints is:
Terminal
Authentication
Authentication to ActiveCalculator’s API is performed via the x-ac-api-key
header. To authenticate, you need to include this header with your API key in your requests like so:
Terminal
Learn more about how to get your API key.
Response Codes
The API returns standard HTTP response codes to indicate the success or failure of an API request. Here are a few examples:
HTTP Code | Error Code | Description |
---|---|---|
200 | - | The request was successful. |
400 | bad_request | The request was invalid or cannot be served. |
401 | not_authenticated | The request lacks valid authentication credentials. |
401 | unauthorized | The request is not authorized to access the resource. |
404 | not_found | The requested resource could not be found. |
405 | method_not_allowed | The HTTP method is not supported for this endpoint. |
500 | internal_server_error | The server encountered an unexpected condition. |
Was this page helpful?