Skip to main content
Version: 1.1beta1

Version selection

Version selection of the currently viewed API version is done by adding the following HTTP header:

  • X-API-Version: 1.1beta1

If the version selection header is omitted, then the latest stable release will be selected.

Example

cURL
# BASIC_AUTH_USERNAME=<Username from Basic Auth credentials>
# BASIC_AUTH_PASSWORD=<Password from Basic Auth credentials>
curl -u "${BASIC_AUTH_USERNAME}:${BASIC_AUTH_PASSWORD}" \
--request POST \
--url https://api.clarify.io/v1/rpc \
--header 'Content-Type: application/json' \
--header 'X-API-Version: 1.1beta1' \
--data ...