The Momentum AMS REST API allows you to search for and retrieve insured records directly from your AMS. This is useful for building integrations, reporting tools, or external applications that need insured data.
Base Endpoint
You will need an API access token (see the API Authentication Guide for details) and must include it in your request headers:
1. Get All Insureds
Returns a complete list of insured records.
Note: Include the ()
after InsuredList
—it is required.
2. Get a Single Insured by ID
Returns details for one insured by GUID (no quotes inside the parentheses).
Example:
3. Select Specific Fields
Retrieve only certain properties from the insured record.
View all available properties in the metadata model:
https://api.nowcerts.com/api/$metadata#InsuredList
4. Filter Results
Use $filter
to return only insureds that match specific criteria.
Other examples:
5. Order Results
Sort results by a specific field.
For descending order:
6. Paging Results
Use $skip
and $top
to paginate results (always combine with $orderby
).
7. Combine Parameters
You can combine $select
, $filter
, $orderby
, $skip
, and $top
by joining them with &
.
8. Select Specific Fields for a Single Insured
When querying a single insured by ID, you can still limit the returned properties:
9. View Metadata
The metadata endpoint provides the full model description in XML format:
Developer Reference
A working example of building insured search URLs is available in our sample application here:
SearchInsureds.aspx on GitHub
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article