Skip to content

Get Started

Cloud Endpoints

Novo Partner API supports multiple environments to ensure smooth development, testing, and production operations.
Below are the available endpoints for each environment:

Environment Endpoint Description
Prod https://insurance-api.novo.us The production environment for live API requests. Use this for real user data and transactions.
UAT https://insurance-api.uat.novo.us The UAT environment for testing integrations and validating functionality before production deployment.

Use the appropriate endpoint based on your environment needs.

Authentication

Authentication is required to access the Novo Partner API.

To access Novo Partner API, your application must include an API Key in the the x-api-key header for each request.

Example

1
2
3
curl -X POST 'https://insurance-api.novo.us/partner/v2/policy/quote' \
-H 'x-api-key: {x_api_key}' \
-d '{...}'
Replace {x_api_key} with your actual API Key. Make sure the key remains confidential to ensure secure API access.