Overview
The end-to-end process is very simple:1
Get the list of plans
Get the list of plans offered by Arlo -
GET /plans
2
Submit proposal information
Submit proposal information -
POST /proposal
3
Poll until the proposal is ready
Poll until the proposal is ready -
GET /proposal/<proposal_id>
4
Mark the proposal as sold
Mark the proposal as sold -
POST /proposal/<proposal_id>/mark-sold
Endpoints
You may find the OpenAPI docs here and the raw JSON specification here. The base API URL ishttps://underwriting-api.joinarlo.com/cpq
.
The OpenAPI documentation provides comprehensive details for each endpoint, including response types and sample responses. This resource helps streamline your development process while reducing the need for numerous test API requests to our testing environment.
Plans
A plan is defined by a unique combination of network, PBM, vendor stack, and benefit details (including accumulators and cost shares by benefit category). You can retrieve detailed breakdowns of all plans offered by Arlo through these endpoints. The responses provide comprehensive benefits information, including accumulators, cost share data by benefit category, and other plan specifications.Get all plans
Endpoint Documentation This endpoint returns all available plans that can be quoted and their detailed information.Get a specific plan
Endpoint Documentation This endpoint returns the detailed information of a specific plan. Theplan_id
can be retrieved from the bulk /plans
endpoint.
Proposals
To obtain quotes from Arlo, create a proposal for each new opportunity. A proposal represents a unique pairing of quoting broker and group. Note that any modification to group information—including name, effective date, headquarters state, or census data—requires creating a new proposal.Submit proposal information
Endpoint Documentationplan_ids
you wish to be quoted. Note that Arlo groups plans internally by “program”, so even when requesting a single plan_id
, the response may include all plans associated with that program. You can disregard any additional plans not relevant to your needs.
Proposal creation is “asynchronous”. In other words, you will receive a proposal_id
in the response.
Requesting broker and agency information
The request body must include complete broker and agency information: Required Broker Details:- Broker name
- Broker email
- Broker NPN (National Producer Number)
- Agency name
- Agency NPN
Retrieve proposal quotes
Endpoint Documentation- Fully underwritten quotes are typically available within 45 seconds.
- Illustrative quotes are typically available within 10 seconds.
Mark a proposal sold
Endpoint Documentationurl
and message
:
- Display the
message
to the broker after they’ve marked the group as sold - Redirect the broker to the provided
url
- Brokers who have never sold with Arlo before: Redirected to a calendar scheduling page where our sales team will promptly arrange a meeting to explain the implementation process
- Returning brokers: Directly routed to the Arlo quoting portal where they can navigate the implementation process independently
The Proposal Object
A single proposal can include quotes for multiple plans. Each plan quote provides not only rates but also detailed information about the funding structure, contract length, quote assessment type, and more.Fully Underwritten vs Illustrative Rates
Each plan quote includes aquote_assessment_type
field, which will be either FULLY_UNDERWRITTEN
or ILLUSTRATIVE
.
FULLY_UNDERWRITTEN
: Rates are generated through a comprehensive medical underwriting process.ILLUSTRATIVE
: Rates are based on a simplified assessment using only the group’s demographic information.
quote_assessment_type
for each plan quote and ensure the appropriate context is communicated to the broker.
Authentication
You will receive your testing API key separately in the formatarlo_test_*
. Production API keys follow the format arlo_live_*
.
API Versioning
The CPQ API implements versioning through theArlo-API-Version
header. The current version is 2025-04-01
. New API versions will be released only when introducing breaking changes.
Note: You can use the production URL for testing by simply using your test API key instead of your live key.
Testing
By default, the/proposal
endpoints return mock responses to simplify testing. Mock mode is automatically enabled when using test API keys.
Mock mode behavior:
- Request parameters are validated normally
- No actual quoting or processing is performed
- Mock rates and information are returned
- Response structure is identical to production responses
arlo-mock-response
header to false
for full integration testing. We recommend using this option sparingly and only as a final verification step before production, to minimize unnecessary load on the sandbox environment.
Request
Request IDs
All requests to the CPQ API will return ax-request_id
in the response headers. This ID can be used to correlate requests with responses and for debugging purposes. We recommend
logging these IDs if you ever need to reach out to us about an issue.
Response
Please reach out to karthik+cpq@joinarlo.com if you have any questions!