Mastodon (1.0)

Download OpenAPI specification:Download

Mastodon logo

Authentication

Bearer

Bearer authentication (also called token authentication) is an HTTP authentication scheme that involves security tokens called bearer tokens. The name “Bearer authentication” can be understood as “give access to the bearer of this token.” The bearer token is a cryptic string, usually generated by the server in response to a login request. The client must send this token in the Authorization header when making requests to protected resources. Example

  POST /ping HTTP/1.1
  Authorization: Bearer lYyEtRnwZKuKxIxrFCAOVB
  Content-Type: application/json; charset=utf-8
  ...
Security Scheme Type HTTP
HTTP Authorization Scheme bearer

Introduction

Getting Started

This document covers Version 2 of the Mastodon API. We use built-in HTTP features, like HTTP authentication, HTTP verbs (ie, POST) and standard response codes to simplify integrations into the API. JSON will be returned in all responses from the API, including errors.

Security

Basic Security Information

  • We require SSL Connection.
    • You must only post us PII under the agreed upon terms
    • You may not attempt to match or sell leads that you do not own.
    • All requests require Authentication

Clicks

Click Resource allows publishers to offer customer information and receive a click feed with tailored offers for that consumer.

Ping

The Ping resource is a secure way to offer up lead properties needed to match to our advertisers, but do not need to include contact or PII information for that customer.

This is used only to find demand for that consumer and return a bid or no match response.

No Match responses should not be interpreted as errors or that anything was sent incorrectly in regards to structure or syntax.

The ping is considered the first of two parts that make up sale and should not be considered a complete transaction. Leads & Calls require a pingpost for a complete transaction. Clicks require a click from a user :-)

Authorizations:
Bearer (write:auctionsread:auctions)
Request Body schema: application/json

Match Request

One of
source_token
required
string (Source Token)

Given Source Token for your Traffic.

required
object

Responses

Request samples

Content type
application/json
Example
{
  • "source_token": "ecb41e5c-963d-4da3-bb31-a83b69682aa8",
  • "data": {
    }
}

Response samples

Content type
application/json
Example
{
  • "auction_id": "string",
  • "visitor_id": "string",
  • "bids": [
    ],
  • "expires_at": "string",
  • "payout": null,
  • "sold": true,
  • "matched": true,
  • "bid_amount": null,
  • "default_accepted_bid_ids": [ ],
  • "time_ms": 0
}

Calls

Calls Resource allows publishers to offer customer information and receive a potential advertiser that is ready to receive an inbound call from the consumer.

You can either use our Auctions Resource or the Ping and Post Resources in order to find potential offers for consumers

In the response, you will receive a transfer number with expiration time that the number will be available to receive a call from that expected consumer.

Ping

The Ping resource is a secure way to offer up lead properties needed to match to our advertisers, but do not need to include contact or PII information for that customer.

This is used only to find demand for that consumer and return a bid or no match response.

No Match responses should not be interpreted as errors or that anything was sent incorrectly in regards to structure or syntax.

The ping is considered the first of two parts that make up sale and should not be considered a complete transaction. Leads & Calls require a pingpost for a complete transaction. Clicks require a click from a user :-)

Authorizations:
Bearer (write:auctionsread:auctions)
Request Body schema: application/json

Match Request

One of
source_token
required
string (Source Token)

Given Source Token for your Traffic.

required
object

Responses

Request samples

Content type
application/json
Example
{
  • "source_token": "ecb41e5c-963d-4da3-bb31-a83b69682aa8",
  • "data": {
    }
}

Response samples

Content type
application/json
Example
{
  • "auction_id": "string",
  • "visitor_id": "string",
  • "bids": [
    ],
  • "expires_at": "string",
  • "payout": null,
  • "sold": true,
  • "matched": true,
  • "bid_amount": null,
  • "default_accepted_bid_ids": [ ],
  • "time_ms": 0
}

Ping Post

A Ping Post is the completion and final agreement of the sale. Here you send the remaining Contact and/or PII information for a consumer. You should expect the information to be delivered to the end buyer in near realtime, but this is not always required.

Authorizations:
Bearer (write:pingpostread:pingpost)
Request Body schema: application/json

Product Matching Request

auction_id
string
object
accepted_bid_ids
Array of integers

Responses

Request samples

Content type
application/json
{
  • "auction_id": "string",
  • "data": {
    },
  • "accepted_bid_ids": [
    ]
}

Response samples

Content type
application/json
{
  • "auction_id": "string",
  • "bids": [
    ],
  • "expires_at": "string",
  • "payout": "string",
  • "sold": true,
  • "matched": true,
  • "bid_amount": "string",
  • "default_accepted_bid_ids": [
    ],
  • "time_ms": 0,
  • "data_issues": [ ]
}

Post

A Post is sending a full lead to be sold immediately.

Authorizations:
Bearer (write:postread:post)
Request Body schema: application/json

Match Request

One of
source_token
required
string (Source Token)

Given Source Token for your Traffic.

required
object

Responses

Request samples

Content type
application/json
Example
{
  • "source_token": "ecb41e5c-963d-4da3-bb31-a83b69682aa8",
  • "data": {
    }
}

Response samples

Content type
application/json
{
  • "auction_id": null,
  • "bids": [ ],
  • "expires_at": "string",
  • "payout": "string",
  • "sold": true,
  • "matched": true,
  • "bid_amount": "string",
  • "default_accepted_bid_ids": [
    ],
  • "time_ms": 0,
  • "data_issues": [ ]
}

Leads

Leads Resource allows publishers to use our Ping Post API to request a bid for offered lead information.

In order for us to find the best or multiple matching buyers for a lead and return a bid with a unique temporary id. If you would like to sell that lead for that price, you must post the remaining information to the Post resource. Once you receive a successful response, the sale is completed. Authentication

Ping

The Ping resource is a secure way to offer up lead properties needed to match to our advertisers, but do not need to include contact or PII information for that customer.

This is used only to find demand for that consumer and return a bid or no match response.

No Match responses should not be interpreted as errors or that anything was sent incorrectly in regards to structure or syntax.

The ping is considered the first of two parts that make up sale and should not be considered a complete transaction. Leads & Calls require a pingpost for a complete transaction. Clicks require a click from a user :-)

Authorizations:
Bearer (write:auctionsread:auctions)
Request Body schema: application/json

Match Request

One of
source_token
required
string (Source Token)

Given Source Token for your Traffic.

required
object

Responses

Request samples

Content type
application/json
Example
{
  • "source_token": "ecb41e5c-963d-4da3-bb31-a83b69682aa8",
  • "data": {
    }
}

Response samples

Content type
application/json
Example
{
  • "auction_id": "string",
  • "visitor_id": "string",
  • "bids": [
    ],
  • "expires_at": "string",
  • "payout": null,
  • "sold": true,
  • "matched": true,
  • "bid_amount": null,
  • "default_accepted_bid_ids": [ ],
  • "time_ms": 0
}

Ping Post

A Ping Post is the completion and final agreement of the sale. Here you send the remaining Contact and/or PII information for a consumer. You should expect the information to be delivered to the end buyer in near realtime, but this is not always required.

Authorizations:
Bearer (write:pingpostread:pingpost)
Request Body schema: application/json

Product Matching Request

auction_id
string
object
accepted_bid_ids
Array of integers

Responses

Request samples

Content type
application/json
{
  • "auction_id": "string",
  • "data": {
    },
  • "accepted_bid_ids": [
    ]
}

Response samples

Content type
application/json
{
  • "auction_id": "string",
  • "bids": [
    ],
  • "expires_at": "string",
  • "payout": "string",
  • "sold": true,
  • "matched": true,
  • "bid_amount": "string",
  • "default_accepted_bid_ids": [
    ],
  • "time_ms": 0,
  • "data_issues": [ ]
}

Post

A Post is sending a full lead to be sold immediately.

Authorizations:
Bearer (write:postread:post)
Request Body schema: application/json

Match Request

One of
source_token
required
string (Source Token)

Given Source Token for your Traffic.

required
object

Responses

Request samples

Content type
application/json
Example
{
  • "source_token": "ecb41e5c-963d-4da3-bb31-a83b69682aa8",
  • "data": {
    }
}

Response samples

Content type
application/json
{
  • "auction_id": null,
  • "bids": [ ],
  • "expires_at": "string",
  • "payout": "string",
  • "sold": true,
  • "matched": true,
  • "bid_amount": "string",
  • "default_accepted_bid_ids": [
    ],
  • "time_ms": 0,
  • "data_issues": [ ]
}

Auto Insurance

first_name
string (First Name) [ 2 .. 255 ] characters

First Name of Primary Lead

last_name
string (Last Name) [ 2 .. 255 ] characters

Last Name of Primary Lead

address
string (Address) <= 255 characters

Address of Primary Lead

address2
string (Secondary Address) <= 255 characters

Additional Address Information of Primary Lead

phone
string (Telelphone Number) [ 10 .. 15 ] characters

The phone number to contact the lead (numbers only, no formatting)

email
string (Email Address) [ 3 .. 255 ] characters

Best Email Address to contact consumer

zipcode
string (Zip Code (Postal Code)) [ 5 .. 10 ] characters ^[0-9]{5}$

Zipcode of Primary Lead

ip_address
string (IP Address) [ 16 .. 45 ] characters

IPv4 or IPv6 Address of Consumer when information was collected

phone_suffix
string (Phone Suffix) 4 characters

Last 4 Digits of Consumer Phone if Available

user_agent
string (User Agent) <= 1024 characters

User Agent of Consumer when information was collected

utm_source
string

Use utm_source to identify a search engine, newsletter name, or other source.

utm_campaign
string

Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.

utm_medium
string

Use utm_medium to identify a medium such as email or cost-per- click.

utm_content
string

Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL.

utm_term
string

Used for paid search. Use utm_term to note the keywords for this ad.

external_id
string (External ID) <= 255 characters

Unique ID for Lead from Publisher

tcpa_call_consent
boolean (TCPA Call Consent)
Default: false
Enum: true false

Indicates whether the user has consented to a call.

tcpa_sms_consent
boolean (TCPA SMS Consent)
Default: false
Enum: true false

Indicates whether the user has consented to SMS/MMS.

tcpa_disclosure
string (TCPA Disclosure) <= 255 characters

Text displaying TCPA disclosure

tcpa_url
string (TCPA Link Url) <= 255 characters

Link to TCPA text.

source_url
string (Source URL) <= 255 characters

The URL of the web page the lead was generated on.

trusted_form_certificate_id
string (Trusted Form Certificate Id) <= 255 characters

40+ character Trusted Form Certificate ID (path portion of their URL) Link

universal_lead_id
string (Jornaya Lead ID) <= 36 characters

Jornaya Lead ID for this lead Link

form_begin
string <date-time> (Form Started Timestamp)

Date and time that user starts form. Value must include a time zone.

form_submit
string <date-time> (Form Submit Timestamp)

Date and time that user submits form. Value must include a time zone.

coreg
boolean (Is Co-Registration Lead)
Default: false
Enum: true false

This Lead was generated using Co-Registration flows or techniques that may not have been the consumers original intent but may still be insterested in hearing about this vertical.

sub_1
string
sub_2
string
sub_3
string
object
currently_insured
boolean (Currently Insured)
Default: false
Enum: true false

Whether the primary consumer has a current valid policy (true) or not (false)

continuous_coverage
integer (Continuos Coverage)
Default: 0

How long has current Customer been continuously insured in months?

current_customer
integer (Current Customer)
Default: 0

How long has current Customer been Insured in Months?

current_policy_started
integer (Days Since Policy Started)

How Many Days Since Current Policy Started?

current_policy_expires
integer (Days Until Policy Expires)

How Many Days Until Current Policy Expires?

current_company
any

Names of Available Company

bundle_insurance
boolean
bi_per_incident
integer (Bodily Injury Coverage Limit Per Incident)
Enum: 20000 15000 30000 40000 50000 60000

The Amount of Bodily Injury Coverage Limit the primary has requested

bi_per_person
integer (Bodily Injury Coverage Limit Per Person)
Enum: 10000 12500 15000 20000 25000 30000

The Amount of Bodily Injury Coverage Limit Per Person Limit the primary has requested

coverage_type
string (Coverage Type)
Enum: "State Minimum" "Standard Protection" "Superior Protection" "Basic"

Requested coverage type.

property_damage
integer (Property Damage)

Desired property damage coverage.

military_affiliation
boolean
Default: false
Enum: true false

Indicates whether the primary driver is military affiliation.

home_length
integer
Default: 0

Number of months the user lived in the current home (in months).

home_ownership
boolean (Home Ownership)
Default: false
Enum: true false

Whether the primary residence is owned by primary (true) or is not (false)

home_garage
boolean (Home Garage)
Default: false
Enum: true false

Whether the primary residence has a garage (true) or does not (false)

current_employer
string (Current Employer)
Array of objects (Drivers)

Array of drivers requesting to be included in policy

Array of objects (Vehicles)

Array of vehicles requesting to be included in policy

Array of objects (Incident)

Array of incidents occurred in the past three years.

{
  • "first_name": "Clark",
  • "last_name": "Kent",
  • "address": "123 Main St",
  • "address2": "Apt 4",
  • "phone": "6195551212",
  • "email": "clark.kent@fakemail.com",
  • "zipcode": "92101",
  • "ip_address": "68.139.206.214",
  • "phone_suffix": 1234,
  • "user_agent": "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1",
  • "utm_source": "google",
  • "utm_campaign": "string",
  • "utm_medium": "string",
  • "utm_content": "logolink or textlink",
  • "utm_term": "running+shoes",
  • "external_id": "123456789",
  • "tcpa_call_consent": true,
  • "tcpa_sms_consent": true,
  • "tcpa_disclosure": "By submitting your quote request, you represent that you are at least 18 and agree to our Privacy Policy and Terms of Use. You also authorize UE.co and/or its marketing partners to contact you for marketing/telemarketing purposes at the number and address provided above, including your wireless number, if provided, using live operators, automated telephone dialing systems, pre-recorded messages, text messages and/or emails. You are not required to consent as a condition of purchasing goods or services and may revoke consent at anytime.",
  • "tcpa_url": "example.com",
  • "source_url": "example.com",
  • "trusted_form_certificate_id": "433cb911f1698abec3a8c3514fad789c2541e823",
  • "universal_lead_id": "e8959414-ba71-400a-b5d7-5cd3abede139",
  • "form_begin": "2019-03-18T09:23:43.000Z",
  • "form_submit": "2019-03-18T09:23:43.000Z",
  • "coreg": false,
  • "sub_1": "string",
  • "sub_2": "string",
  • "sub_3": "string",
  • "custom": {
    },
  • "currently_insured": false,
  • "continuous_coverage": 48,
  • "current_customer": 48,
  • "current_policy_started": 90,
  • "current_policy_expires": 30,
  • "current_company": null,
  • "bundle_insurance": true,
  • "bi_per_incident": 20000,
  • "bi_per_person": 10000,
  • "coverage_type": "Standard Protection",
  • "property_damage": 100000,
  • "military_affiliation": false,
  • "home_length": 121,
  • "home_ownership": false,
  • "home_garage": false,
  • "current_employer": "string",
  • "drivers": [
    ],
  • "vehicles": [
    ],
  • "incidents": [
    ]
}

Home Insurance

first_name
string (First Name) [ 2 .. 255 ] characters

First Name of Primary Lead

last_name
string (Last Name) [ 2 .. 255 ] characters

Last Name of Primary Lead

address
string (Address) <= 255 characters

Address of Primary Lead

address2
string (Secondary Address) <= 255 characters

Additional Address Information of Primary Lead

phone
string (Telelphone Number) [ 10 .. 15 ] characters

The phone number to contact the lead (numbers only, no formatting)

email
string (Email Address) [ 3 .. 255 ] characters

Best Email Address to contact consumer

zipcode
string (Zip Code (Postal Code)) [ 5 .. 10 ] characters ^[0-9]{5}$

Zipcode of Primary Lead

ip_address
string (IP Address) [ 16 .. 45 ] characters

IPv4 or IPv6 Address of Consumer when information was collected

phone_suffix
string (Phone Suffix) 4 characters

Last 4 Digits of Consumer Phone if Available

user_agent
string (User Agent) <= 1024 characters

User Agent of Consumer when information was collected

utm_source
string

Use utm_source to identify a search engine, newsletter name, or other source.

utm_campaign
string

Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.

utm_medium
string

Use utm_medium to identify a medium such as email or cost-per- click.

utm_content
string

Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL.

utm_term
string

Used for paid search. Use utm_term to note the keywords for this ad.

external_id
string (External ID) <= 255 characters

Unique ID for Lead from Publisher

tcpa_call_consent
boolean (TCPA Call Consent)
Default: false
Enum: true false

Indicates whether the user has consented to a call.

tcpa_sms_consent
boolean (TCPA SMS Consent)
Default: false
Enum: true false

Indicates whether the user has consented to SMS/MMS.

tcpa_disclosure
string (TCPA Disclosure) <= 255 characters

Text displaying TCPA disclosure

tcpa_url
string (TCPA Link Url) <= 255 characters

Link to TCPA text.

source_url
string (Source URL) <= 255 characters

The URL of the web page the lead was generated on.

trusted_form_certificate_id
string (Trusted Form Certificate Id) <= 255 characters

40+ character Trusted Form Certificate ID (path portion of their URL) Link

universal_lead_id
string (Jornaya Lead ID) <= 36 characters

Jornaya Lead ID for this lead Link

form_begin
string <date-time> (Form Started Timestamp)

Date and time that user starts form. Value must include a time zone.

form_submit
string <date-time> (Form Submit Timestamp)

Date and time that user submits form. Value must include a time zone.

coreg
boolean (Is Co-Registration Lead)
Default: false
Enum: true false

This Lead was generated using Co-Registration flows or techniques that may not have been the consumers original intent but may still be insterested in hearing about this vertical.

sub_1
string
sub_2
string
sub_3
string
object
currently_insured
boolean (Currently Insured)
Default: false
Enum: true false

Whether the primary consumer has a current valid policy (true) or not (false)

continuous_coverage
integer (Continuos Coverage)
Default: 0

How long has current Customer been continuously insured in months?

current_customer
integer (Current Customer)
Default: 0

How long has current Customer been Insured in Months?

current_policy_started
integer (Days Since Policy Started)

How Many Days Since Current Policy Started?

current_policy_expires
integer (Days Until Policy Expires)

How Many Days Until Current Policy Expires?

current_company
string

Names of Available Company

bundle_insurance
boolean
date_of_birth
string <date> (Date of birth) ^([12]\d{3}-(0[1-9]|1[0-2])-(0[1-9]|[12]\d|3[...

Date of birth of the driver. (YYYY-MM-DD)

credit_rating
string (Credit Rating)
Enum: "Excellent" "Good" "Average" "Below average" "Poor"
gender
string (Gender)
Enum: "M" "F" "X"

The gender of the consumer

marital_status
string (Marital Status)
Enum: "Single" "Married" "Divorced" "Separated" "Widowed" "Domestic Partner" "Unknown"

The marital status of the consumer

num_claims
integer (Number of claims)

The Number of claims the consumer has had

Array of Property (object) (Properties)

The list of consumer's properties

{
  • "first_name": "Clark",
  • "last_name": "Kent",
  • "address": "123 Main St",
  • "address2": "Apt 4",
  • "phone": "6195551212",
  • "email": "clark.kent@fakemail.com",
  • "zipcode": "92101",
  • "ip_address": "68.139.206.214",
  • "phone_suffix": 1234,
  • "user_agent": "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1",
  • "utm_source": "google",
  • "utm_campaign": "string",
  • "utm_medium": "string",
  • "utm_content": "logolink or textlink",
  • "utm_term": "running+shoes",
  • "external_id": "123456789",
  • "tcpa_call_consent": true,
  • "tcpa_sms_consent": true,
  • "tcpa_disclosure": "By submitting your quote request, you represent that you are at least 18 and agree to our Privacy Policy and Terms of Use. You also authorize UE.co and/or its marketing partners to contact you for marketing/telemarketing purposes at the number and address provided above, including your wireless number, if provided, using live operators, automated telephone dialing systems, pre-recorded messages, text messages and/or emails. You are not required to consent as a condition of purchasing goods or services and may revoke consent at anytime.",
  • "tcpa_url": "example.com",
  • "source_url": "example.com",
  • "trusted_form_certificate_id": "433cb911f1698abec3a8c3514fad789c2541e823",
  • "universal_lead_id": "e8959414-ba71-400a-b5d7-5cd3abede139",
  • "form_begin": "2019-03-18T09:23:43.000Z",
  • "form_submit": "2019-03-18T09:23:43.000Z",
  • "coreg": false,
  • "sub_1": "string",
  • "sub_2": "string",
  • "sub_3": "string",
  • "custom": {
    },
  • "currently_insured": false,
  • "continuous_coverage": 48,
  • "current_customer": 48,
  • "current_policy_started": 90,
  • "current_policy_expires": 30,
  • "current_company": "Acme Insurance",
  • "bundle_insurance": true,
  • "date_of_birth": "1984-01-01T00:00:00.000Z",
  • "credit_rating": "Excellent",
  • "gender": "F",
  • "marital_status": "Married",
  • "num_claims": 0,
  • "properties": [
    ]
}

Health Insurance

first_name
string (First Name) [ 2 .. 255 ] characters

First Name of Primary Lead

last_name
string (Last Name) [ 2 .. 255 ] characters

Last Name of Primary Lead

address
string (Address) <= 255 characters

Address of Primary Lead

address2
string (Secondary Address) <= 255 characters

Additional Address Information of Primary Lead

phone
string (Telelphone Number) [ 10 .. 15 ] characters

The phone number to contact the lead (numbers only, no formatting)

email
string (Email Address) [ 3 .. 255 ] characters

Best Email Address to contact consumer

zipcode
string (Zip Code (Postal Code)) [ 5 .. 10 ] characters ^[0-9]{5}$

Zipcode of Primary Lead

ip_address
string (IP Address) [ 16 .. 45 ] characters

IPv4 or IPv6 Address of Consumer when information was collected

phone_suffix
string (Phone Suffix) 4 characters

Last 4 Digits of Consumer Phone if Available

user_agent
string (User Agent) <= 1024 characters

User Agent of Consumer when information was collected

utm_source
string

Use utm_source to identify a search engine, newsletter name, or other source.

utm_campaign
string

Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.

utm_medium
string

Use utm_medium to identify a medium such as email or cost-per- click.

utm_content
string

Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL.

utm_term
string

Used for paid search. Use utm_term to note the keywords for this ad.

external_id
string (External ID) <= 255 characters

Unique ID for Lead from Publisher

tcpa_call_consent
boolean (TCPA Call Consent)
Default: false
Enum: true false

Indicates whether the user has consented to a call.

tcpa_sms_consent
boolean (TCPA SMS Consent)
Default: false
Enum: true false

Indicates whether the user has consented to SMS/MMS.

tcpa_disclosure
string (TCPA Disclosure) <= 255 characters

Text displaying TCPA disclosure

tcpa_url
string (TCPA Link Url) <= 255 characters

Link to TCPA text.

source_url
string (Source URL) <= 255 characters

The URL of the web page the lead was generated on.

trusted_form_certificate_id
string (Trusted Form Certificate Id) <= 255 characters

40+ character Trusted Form Certificate ID (path portion of their URL) Link

universal_lead_id
string (Jornaya Lead ID) <= 36 characters

Jornaya Lead ID for this lead Link

form_begin
string <date-time> (Form Started Timestamp)

Date and time that user starts form. Value must include a time zone.

form_submit
string <date-time> (Form Submit Timestamp)

Date and time that user submits form. Value must include a time zone.

coreg
boolean (Is Co-Registration Lead)
Default: false
Enum: true false

This Lead was generated using Co-Registration flows or techniques that may not have been the consumers original intent but may still be insterested in hearing about this vertical.

sub_1
string
sub_2
string
sub_3
string
object
currently_insured
boolean (Currently Insured)
Default: false
Enum: true false

Whether the primary consumer has a current valid policy (true) or not (false)

continuous_coverage
integer (Continuos Coverage)
Default: 0

How long has current Customer been continuously insured in months?

current_customer
integer (Current Customer)
Default: 0

How long has current Customer been Insured in Months?

current_policy_started
integer (Days Since Policy Started)

How Many Days Since Current Policy Started?

current_policy_expires
integer (Days Until Policy Expires)

How Many Days Until Current Policy Expires?

current_company
any

Names of Available Company

bundle_insurance
boolean
gender
string (Gender)
Enum: "M" "F" "X"

The gender of the consumer

date_of_birth
string <date>
height_inches
integer
weight_pounds
integer
household_size
integer
pregnant
boolean
Enum: true false
tobacco_user
boolean
Enum: true false
preexisting_conditions
boolean
Enum: true false
denied_coverage
boolean
Enum: true false
social_security
boolean
Enum: true false
income
string
aca_interest
boolean
Enum: true false
medicare_type
string
{
  • "first_name": "Clark",
  • "last_name": "Kent",
  • "address": "123 Main St",
  • "address2": "Apt 4",
  • "phone": "6195551212",
  • "email": "clark.kent@fakemail.com",
  • "zipcode": "92101",
  • "ip_address": "68.139.206.214",
  • "phone_suffix": 1234,
  • "user_agent": "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1",
  • "utm_source": "google",
  • "utm_campaign": "string",
  • "utm_medium": "string",
  • "utm_content": "logolink or textlink",
  • "utm_term": "running+shoes",
  • "external_id": "123456789",
  • "tcpa_call_consent": true,
  • "tcpa_sms_consent": true,
  • "tcpa_disclosure": "By submitting your quote request, you represent that you are at least 18 and agree to our Privacy Policy and Terms of Use. You also authorize UE.co and/or its marketing partners to contact you for marketing/telemarketing purposes at the number and address provided above, including your wireless number, if provided, using live operators, automated telephone dialing systems, pre-recorded messages, text messages and/or emails. You are not required to consent as a condition of purchasing goods or services and may revoke consent at anytime.",
  • "tcpa_url": "example.com",
  • "source_url": "example.com",
  • "trusted_form_certificate_id": "433cb911f1698abec3a8c3514fad789c2541e823",
  • "universal_lead_id": "e8959414-ba71-400a-b5d7-5cd3abede139",
  • "form_begin": "2019-03-18T09:23:43.000Z",
  • "form_submit": "2019-03-18T09:23:43.000Z",
  • "coreg": false,
  • "sub_1": "string",
  • "sub_2": "string",
  • "sub_3": "string",
  • "custom": {
    },
  • "currently_insured": false,
  • "continuous_coverage": 48,
  • "current_customer": 48,
  • "current_policy_started": 90,
  • "current_policy_expires": 30,
  • "current_company": null,
  • "bundle_insurance": true,
  • "gender": "F",
  • "date_of_birth": "2019-08-24",
  • "height_inches": 0,
  • "weight_pounds": 0,
  • "household_size": 0,
  • "pregnant": true,
  • "tobacco_user": true,
  • "preexisting_conditions": true,
  • "denied_coverage": true,
  • "social_security": true,
  • "income": "string",
  • "aca_interest": true,
  • "medicare_type": "string"
}

Auto Warranty

first_name
string (First Name) [ 2 .. 255 ] characters

First Name of Primary Lead

last_name
string (Last Name) [ 2 .. 255 ] characters

Last Name of Primary Lead

address
string (Address) <= 255 characters

Address of Primary Lead

address2
string (Secondary Address) <= 255 characters

Additional Address Information of Primary Lead

phone
string (Telelphone Number) [ 10 .. 15 ] characters

The phone number to contact the lead (numbers only, no formatting)

email
string (Email Address) [ 3 .. 255 ] characters

Best Email Address to contact consumer

zipcode
string (Zip Code (Postal Code)) [ 5 .. 10 ] characters ^[0-9]{5}$

Zipcode of Primary Lead

ip_address
string (IP Address) [ 16 .. 45 ] characters

IPv4 or IPv6 Address of Consumer when information was collected

phone_suffix
string (Phone Suffix) 4 characters

Last 4 Digits of Consumer Phone if Available

user_agent
string (User Agent) <= 1024 characters

User Agent of Consumer when information was collected

utm_source
string

Use utm_source to identify a search engine, newsletter name, or other source.

utm_campaign
string

Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.

utm_medium
string

Use utm_medium to identify a medium such as email or cost-per- click.

utm_content
string

Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL.

utm_term
string

Used for paid search. Use utm_term to note the keywords for this ad.

external_id
string (External ID) <= 255 characters

Unique ID for Lead from Publisher

tcpa_call_consent
boolean (TCPA Call Consent)
Default: false
Enum: true false

Indicates whether the user has consented to a call.

tcpa_sms_consent
boolean (TCPA SMS Consent)
Default: false
Enum: true false

Indicates whether the user has consented to SMS/MMS.

tcpa_disclosure
string (TCPA Disclosure) <= 255 characters

Text displaying TCPA disclosure

tcpa_url
string (TCPA Link Url) <= 255 characters

Link to TCPA text.

source_url
string (Source URL) <= 255 characters

The URL of the web page the lead was generated on.

trusted_form_certificate_id
string (Trusted Form Certificate Id) <= 255 characters

40+ character Trusted Form Certificate ID (path portion of their URL) Link

universal_lead_id
string (Jornaya Lead ID) <= 36 characters

Jornaya Lead ID for this lead Link

form_begin
string <date-time> (Form Started Timestamp)

Date and time that user starts form. Value must include a time zone.

form_submit
string <date-time> (Form Submit Timestamp)

Date and time that user submits form. Value must include a time zone.

coreg
boolean (Is Co-Registration Lead)
Default: false
Enum: true false

This Lead was generated using Co-Registration flows or techniques that may not have been the consumers original intent but may still be insterested in hearing about this vertical.

sub_1
string
sub_2
string
sub_3
string
object
date_of_birth
string <date> (Date of Birth)
home_ownership
boolean (Home Ownership)
Default: false
Enum: true false

Whether the primary residence is owned by primary (true) or is not (false)

Array of objects (Vehicle)
{
  • "first_name": "Clark",
  • "last_name": "Kent",
  • "address": "123 Main St",
  • "address2": "Apt 4",
  • "phone": "6195551212",
  • "email": "clark.kent@fakemail.com",
  • "zipcode": "92101",
  • "ip_address": "68.139.206.214",
  • "phone_suffix": 1234,
  • "user_agent": "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1",
  • "utm_source": "google",
  • "utm_campaign": "string",
  • "utm_medium": "string",
  • "utm_content": "logolink or textlink",
  • "utm_term": "running+shoes",
  • "external_id": "123456789",
  • "tcpa_call_consent": true,
  • "tcpa_sms_consent": true,
  • "tcpa_disclosure": "By submitting your quote request, you represent that you are at least 18 and agree to our Privacy Policy and Terms of Use. You also authorize UE.co and/or its marketing partners to contact you for marketing/telemarketing purposes at the number and address provided above, including your wireless number, if provided, using live operators, automated telephone dialing systems, pre-recorded messages, text messages and/or emails. You are not required to consent as a condition of purchasing goods or services and may revoke consent at anytime.",
  • "tcpa_url": "example.com",
  • "source_url": "example.com",
  • "trusted_form_certificate_id": "433cb911f1698abec3a8c3514fad789c2541e823",
  • "universal_lead_id": "e8959414-ba71-400a-b5d7-5cd3abede139",
  • "form_begin": "2019-03-18T09:23:43.000Z",
  • "form_submit": "2019-03-18T09:23:43.000Z",
  • "coreg": false,
  • "sub_1": "string",
  • "sub_2": "string",
  • "sub_3": "string",
  • "custom": {
    },
  • "date_of_birth": "2019-08-24",
  • "home_ownership": false,
  • "vehicles": [
    ]
}

Jobs

first_name
string (First Name) [ 2 .. 255 ] characters

First Name of Primary Lead

last_name
string (Last Name) [ 2 .. 255 ] characters

Last Name of Primary Lead

address
string (Address) <= 255 characters

Address of Primary Lead

address2
string (Secondary Address) <= 255 characters

Additional Address Information of Primary Lead

phone
string (Telelphone Number) [ 10 .. 15 ] characters

The phone number to contact the lead (numbers only, no formatting)

email
string (Email Address) [ 3 .. 255 ] characters

Best Email Address to contact consumer

zipcode
string (Zip Code (Postal Code)) [ 5 .. 10 ] characters ^[0-9]{5}$

Zipcode of Primary Lead

ip_address
string (IP Address) [ 16 .. 45 ] characters

IPv4 or IPv6 Address of Consumer when information was collected

phone_suffix
string (Phone Suffix) 4 characters

Last 4 Digits of Consumer Phone if Available

user_agent
string (User Agent) <= 1024 characters

User Agent of Consumer when information was collected

utm_source
string

Use utm_source to identify a search engine, newsletter name, or other source.

utm_campaign
string

Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.

utm_medium
string

Use utm_medium to identify a medium such as email or cost-per- click.

utm_content
string

Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL.

utm_term
string

Used for paid search. Use utm_term to note the keywords for this ad.

external_id
string (External ID) <= 255 characters

Unique ID for Lead from Publisher

tcpa_call_consent
boolean (TCPA Call Consent)
Default: false
Enum: true false

Indicates whether the user has consented to a call.

tcpa_sms_consent
boolean (TCPA SMS Consent)
Default: false
Enum: true false

Indicates whether the user has consented to SMS/MMS.

tcpa_disclosure
string (TCPA Disclosure) <= 255 characters

Text displaying TCPA disclosure

tcpa_url
string (TCPA Link Url) <= 255 characters

Link to TCPA text.

source_url
string (Source URL) <= 255 characters

The URL of the web page the lead was generated on.

trusted_form_certificate_id
string (Trusted Form Certificate Id) <= 255 characters

40+ character Trusted Form Certificate ID (path portion of their URL) Link

universal_lead_id
string (Jornaya Lead ID) <= 36 characters

Jornaya Lead ID for this lead Link

form_begin
string <date-time> (Form Started Timestamp)

Date and time that user starts form. Value must include a time zone.

form_submit
string <date-time> (Form Submit Timestamp)

Date and time that user submits form. Value must include a time zone.

coreg
boolean (Is Co-Registration Lead)
Default: false
Enum: true false

This Lead was generated using Co-Registration flows or techniques that may not have been the consumers original intent but may still be insterested in hearing about this vertical.

sub_1
string
sub_2
string
sub_3
string
object
education
string
Enum: "None" "Some High School" "High School" "GED" "Incomplete" "Some College" "Vocational" "Associate" "Bachelor" "Master" "PhD" "Law" "Unknown" "Other Nonprofessional Degree" "Other Professional Degree"
job_category
string
Enum: "Delivery Driver" "Cashier" "Stocker" "Sales" "Customer Service" "Clerical or Admin" "Package Handler" "IT" "Accounting" "Other"
employment_status
string
Enum: "Full Time" "Part Time" "Not Employed" "Self Employed"
hs_graduation_year
integer
interests_career
string

Name of Career consumer is interested in being matched with

military_affiliation
boolean
Enum: true false
interested_education
boolean
Enum: true false
interested_auto_repair
boolean
Enum: true false
interested_debt_consolidation
boolean
Enum: true false
Array of objects (Vehicles)

Array of vehicles requesting to be included

{
  • "first_name": "Clark",
  • "last_name": "Kent",
  • "address": "123 Main St",
  • "address2": "Apt 4",
  • "phone": "6195551212",
  • "email": "clark.kent@fakemail.com",
  • "zipcode": "92101",
  • "ip_address": "68.139.206.214",
  • "phone_suffix": 1234,
  • "user_agent": "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1",
  • "utm_source": "google",
  • "utm_campaign": "string",
  • "utm_medium": "string",
  • "utm_content": "logolink or textlink",
  • "utm_term": "running+shoes",
  • "external_id": "123456789",
  • "tcpa_call_consent": true,
  • "tcpa_sms_consent": true,
  • "tcpa_disclosure": "By submitting your quote request, you represent that you are at least 18 and agree to our Privacy Policy and Terms of Use. You also authorize UE.co and/or its marketing partners to contact you for marketing/telemarketing purposes at the number and address provided above, including your wireless number, if provided, using live operators, automated telephone dialing systems, pre-recorded messages, text messages and/or emails. You are not required to consent as a condition of purchasing goods or services and may revoke consent at anytime.",
  • "tcpa_url": "example.com",
  • "source_url": "example.com",
  • "trusted_form_certificate_id": "433cb911f1698abec3a8c3514fad789c2541e823",
  • "universal_lead_id": "e8959414-ba71-400a-b5d7-5cd3abede139",
  • "form_begin": "2019-03-18T09:23:43.000Z",
  • "form_submit": "2019-03-18T09:23:43.000Z",
  • "coreg": false,
  • "sub_1": "string",
  • "sub_2": "string",
  • "sub_3": "string",
  • "custom": {
    },
  • "education": "None",
  • "job_category": "Delivery Driver",
  • "employment_status": "Full Time",
  • "hs_graduation_year": 0,
  • "interests_career": "Cashier",
  • "military_affiliation": true,
  • "interested_education": true,
  • "interested_auto_repair": true,
  • "interested_debt_consolidation": true,
  • "vehicles": [
    ]
}

Education

first_name
string (First Name) [ 2 .. 255 ] characters

First Name of Primary Lead

last_name
string (Last Name) [ 2 .. 255 ] characters

Last Name of Primary Lead

address
string (Address) <= 255 characters

Address of Primary Lead

address2
string (Secondary Address) <= 255 characters

Additional Address Information of Primary Lead

phone
string (Telelphone Number) [ 10 .. 15 ] characters

The phone number to contact the lead (numbers only, no formatting)

email
string (Email Address) [ 3 .. 255 ] characters

Best Email Address to contact consumer

zipcode
string (Zip Code (Postal Code)) [ 5 .. 10 ] characters ^[0-9]{5}$

Zipcode of Primary Lead

ip_address
string (IP Address) [ 16 .. 45 ] characters

IPv4 or IPv6 Address of Consumer when information was collected

phone_suffix
string (Phone Suffix) 4 characters

Last 4 Digits of Consumer Phone if Available

user_agent
string (User Agent) <= 1024 characters

User Agent of Consumer when information was collected

utm_source
string

Use utm_source to identify a search engine, newsletter name, or other source.

utm_campaign
string

Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.

utm_medium
string

Use utm_medium to identify a medium such as email or cost-per- click.

utm_content
string

Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL.

utm_term
string

Used for paid search. Use utm_term to note the keywords for this ad.

external_id
string (External ID) <= 255 characters

Unique ID for Lead from Publisher

tcpa_call_consent
boolean (TCPA Call Consent)
Default: false
Enum: true false

Indicates whether the user has consented to a call.

tcpa_sms_consent
boolean (TCPA SMS Consent)
Default: false
Enum: true false

Indicates whether the user has consented to SMS/MMS.

tcpa_disclosure
string (TCPA Disclosure) <= 255 characters

Text displaying TCPA disclosure

tcpa_url
string (TCPA Link Url) <= 255 characters

Link to TCPA text.

source_url
string (Source URL) <= 255 characters

The URL of the web page the lead was generated on.

trusted_form_certificate_id
string (Trusted Form Certificate Id) <= 255 characters

40+ character Trusted Form Certificate ID (path portion of their URL) Link

universal_lead_id
string (Jornaya Lead ID) <= 36 characters

Jornaya Lead ID for this lead Link

form_begin
string <date-time> (Form Started Timestamp)

Date and time that user starts form. Value must include a time zone.

form_submit
string <date-time> (Form Submit Timestamp)

Date and time that user submits form. Value must include a time zone.

coreg
boolean (Is Co-Registration Lead)
Default: false
Enum: true false

This Lead was generated using Co-Registration flows or techniques that may not have been the consumers original intent but may still be insterested in hearing about this vertical.

sub_1
string
sub_2
string
sub_3
string
object
gender
string
date_of_birth
string <date>
military_branch
string
Enum: "None" "Air Force" "Army" "Coast Guard" "Marine Corps" "Navy"
military_affiliation
string
Enum: "None" "Active Duty(AD)" "Civilian" "Selective Reserve(SR)" "Spouse of AD or SR" "Veteran"
high_school_graduation_year
integer
high_school_gpa
float [ 0.1 .. 4 ]
education_level
string
Enum: "Haven't completed High School" "GED" "High School" "Some College" "Associate" "Bachelor" "Master" "Doctorate"
college_credits
integer
registered_nurse
boolean
Enum: true false
teaching_certificate
boolean
Enum: true false
us_citizen
boolean
Enum: true false
income
integer
degree_level
string
Enum: "Certificate / Diploma" "Associate" "Bachelor" "Master" "Doctorate"
area_of_study
Array of strings
Items Enum: "Art & Architecture" "Biological & Life Sciences" "Business" "Business & Communications" "Computers & Technology" "Criminal Justice & Legal" "Education" "Education & Teaching" "Engineering" "Fine Arts & Design" "Health & Medicine" "Health, Nursing, Medicine" "Humanities, Cultures & Languages" "Law, Military, Criminal Justice" "Liberal Arts & Humanities" "Math, Science & Engineering" "Mathematics, Earth & Physical Sciences" "Psychology" "Public Affairs & Social Sciences" "Religious Studies" "Social and Behavioral Sciences" "Technology" "Undecided" "Vocational Training"
specialty
string
planned_start_date
string <date>
learning_preference
string
Enum: "Campus Only" "Campus or Online" "Online Only"
{
  • "first_name": "Clark",
  • "last_name": "Kent",
  • "address": "123 Main St",
  • "address2": "Apt 4",
  • "phone": "6195551212",
  • "email": "clark.kent@fakemail.com",
  • "zipcode": "92101",
  • "ip_address": "68.139.206.214",
  • "phone_suffix": 1234,
  • "user_agent": "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1",
  • "utm_source": "google",
  • "utm_campaign": "string",
  • "utm_medium": "string",
  • "utm_content": "logolink or textlink",
  • "utm_term": "running+shoes",
  • "external_id": "123456789",
  • "tcpa_call_consent": true,
  • "tcpa_sms_consent": true,
  • "tcpa_disclosure": "By submitting your quote request, you represent that you are at least 18 and agree to our Privacy Policy and Terms of Use. You also authorize UE.co and/or its marketing partners to contact you for marketing/telemarketing purposes at the number and address provided above, including your wireless number, if provided, using live operators, automated telephone dialing systems, pre-recorded messages, text messages and/or emails. You are not required to consent as a condition of purchasing goods or services and may revoke consent at anytime.",
  • "tcpa_url": "example.com",
  • "source_url": "example.com",
  • "trusted_form_certificate_id": "433cb911f1698abec3a8c3514fad789c2541e823",
  • "universal_lead_id": "e8959414-ba71-400a-b5d7-5cd3abede139",
  • "form_begin": "2019-03-18T09:23:43.000Z",
  • "form_submit": "2019-03-18T09:23:43.000Z",
  • "coreg": false,
  • "sub_1": "string",
  • "sub_2": "string",
  • "sub_3": "string",
  • "custom": {
    },
  • "gender": "string",
  • "date_of_birth": "2019-08-24",
  • "military_branch": "None",
  • "military_affiliation": "None",
  • "high_school_graduation_year": 0,
  • "high_school_gpa": null,
  • "education_level": "Haven't completed High School",
  • "college_credits": 0,
  • "registered_nurse": true,
  • "teaching_certificate": true,
  • "us_citizen": true,
  • "income": 0,
  • "degree_level": "Certificate / Diploma",
  • "area_of_study": [
    ],
  • "specialty": "string",
  • "planned_start_date": "2019-08-24",
  • "learning_preference": "Campus Only"
}

Medicare

first_name
string (First Name) [ 2 .. 255 ] characters

First Name of Primary Lead

last_name
string (Last Name) [ 2 .. 255 ] characters

Last Name of Primary Lead

address
string (Address) <= 255 characters

Address of Primary Lead

address2
string (Secondary Address) <= 255 characters

Additional Address Information of Primary Lead

phone
string (Telelphone Number) [ 10 .. 15 ] characters

The phone number to contact the lead (numbers only, no formatting)

email
string (Email Address) [ 3 .. 255 ] characters

Best Email Address to contact consumer

zipcode
string (Zip Code (Postal Code)) [ 5 .. 10 ] characters ^[0-9]{5}$

Zipcode of Primary Lead

ip_address
string (IP Address) [ 16 .. 45 ] characters

IPv4 or IPv6 Address of Consumer when information was collected

phone_suffix
string (Phone Suffix) 4 characters

Last 4 Digits of Consumer Phone if Available

user_agent
string (User Agent) <= 1024 characters

User Agent of Consumer when information was collected

utm_source
string

Use utm_source to identify a search engine, newsletter name, or other source.

utm_campaign
string

Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.

utm_medium
string

Use utm_medium to identify a medium such as email or cost-per- click.

utm_content
string

Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL.

utm_term
string

Used for paid search. Use utm_term to note the keywords for this ad.

external_id
string (External ID) <= 255 characters

Unique ID for Lead from Publisher

tcpa_call_consent
boolean (TCPA Call Consent)
Default: false
Enum: true false

Indicates whether the user has consented to a call.

tcpa_sms_consent
boolean (TCPA SMS Consent)
Default: false
Enum: true false

Indicates whether the user has consented to SMS/MMS.

tcpa_disclosure
string (TCPA Disclosure) <= 255 characters

Text displaying TCPA disclosure

tcpa_url
string (TCPA Link Url) <= 255 characters

Link to TCPA text.

source_url
string (Source URL) <= 255 characters

The URL of the web page the lead was generated on.

trusted_form_certificate_id
string (Trusted Form Certificate Id) <= 255 characters

40+ character Trusted Form Certificate ID (path portion of their URL) Link

universal_lead_id
string (Jornaya Lead ID) <= 36 characters

Jornaya Lead ID for this lead Link

form_begin
string <date-time> (Form Started Timestamp)

Date and time that user starts form. Value must include a time zone.

form_submit
string <date-time> (Form Submit Timestamp)

Date and time that user submits form. Value must include a time zone.

coreg
boolean (Is Co-Registration Lead)
Default: false
Enum: true false

This Lead was generated using Co-Registration flows or techniques that may not have been the consumers original intent but may still be insterested in hearing about this vertical.

sub_1
string
sub_2
string
sub_3
string
object
currently_insured
boolean (Currently Insured)
Default: false
Enum: true false

Whether the primary consumer has a current valid policy (true) or not (false)

continuous_coverage
integer (Continuos Coverage)
Default: 0

How long has current Customer been continuously insured in months?

current_customer
integer (Current Customer)
Default: 0

How long has current Customer been Insured in Months?

current_policy_started
integer (Days Since Policy Started)

How Many Days Since Current Policy Started?

current_policy_expires
integer (Days Until Policy Expires)

How Many Days Until Current Policy Expires?

current_company
any

Names of Available Company

bundle_insurance
boolean
gender
string (Gender)
Enum: "M" "F" "X"

The gender of the consumer

date_of_birth
string <date>
height_inches
integer
weight_pounds
integer
household_size
integer
pregnant
boolean
Enum: true false
tobacco_user
boolean
Enum: true false
preexisting_conditions
boolean
Enum: true false
denied_coverage
boolean
Enum: true false
social_security
boolean
Enum: true false
income
string
aca_interest
boolean
Enum: true false
medicare_type
string
Default: "None"
Enum: "Medicare Supplement" "Medicare Advantage" "Medicare Part D" "Unspecified" "None"
{
  • "first_name": "Clark",
  • "last_name": "Kent",
  • "address": "123 Main St",
  • "address2": "Apt 4",
  • "phone": "6195551212",
  • "email": "clark.kent@fakemail.com",
  • "zipcode": "92101",
  • "ip_address": "68.139.206.214",
  • "phone_suffix": 1234,
  • "user_agent": "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1",
  • "utm_source": "google",
  • "utm_campaign": "string",
  • "utm_medium": "string",
  • "utm_content": "logolink or textlink",
  • "utm_term": "running+shoes",
  • "external_id": "123456789",
  • "tcpa_call_consent": true,
  • "tcpa_sms_consent": true,
  • "tcpa_disclosure": "By submitting your quote request, you represent that you are at least 18 and agree to our Privacy Policy and Terms of Use. You also authorize UE.co and/or its marketing partners to contact you for marketing/telemarketing purposes at the number and address provided above, including your wireless number, if provided, using live operators, automated telephone dialing systems, pre-recorded messages, text messages and/or emails. You are not required to consent as a condition of purchasing goods or services and may revoke consent at anytime.",
  • "tcpa_url": "example.com",
  • "source_url": "example.com",
  • "trusted_form_certificate_id": "433cb911f1698abec3a8c3514fad789c2541e823",
  • "universal_lead_id": "e8959414-ba71-400a-b5d7-5cd3abede139",
  • "form_begin": "2019-03-18T09:23:43.000Z",
  • "form_submit": "2019-03-18T09:23:43.000Z",
  • "coreg": false,
  • "sub_1": "string",
  • "sub_2": "string",
  • "sub_3": "string",
  • "custom": {
    },
  • "currently_insured": false,
  • "continuous_coverage": 48,
  • "current_customer": 48,
  • "current_policy_started": 90,
  • "current_policy_expires": 30,
  • "current_company": null,
  • "bundle_insurance": true,
  • "gender": "F",
  • "date_of_birth": "2019-08-24",
  • "height_inches": 0,
  • "weight_pounds": 0,
  • "household_size": 0,
  • "pregnant": true,
  • "tobacco_user": true,
  • "preexisting_conditions": true,
  • "denied_coverage": true,
  • "social_security": true,
  • "income": "string",
  • "aca_interest": true,
  • "medicare_type": "None"
}

Mortgage

first_name
string (First Name) [ 2 .. 255 ] characters

First Name of Primary Lead

last_name
string (Last Name) [ 2 .. 255 ] characters

Last Name of Primary Lead

address
string (Address) <= 255 characters

Address of Primary Lead

address2
string (Secondary Address) <= 255 characters

Additional Address Information of Primary Lead

phone
string (Telelphone Number) [ 10 .. 15 ] characters

The phone number to contact the lead (numbers only, no formatting)

email
string (Email Address) [ 3 .. 255 ] characters

Best Email Address to contact consumer

zipcode
string (Zip Code (Postal Code)) [ 5 .. 10 ] characters ^[0-9]{5}$

Zipcode of Primary Lead

ip_address
string (IP Address) [ 16 .. 45 ] characters

IPv4 or IPv6 Address of Consumer when information was collected

phone_suffix
string (Phone Suffix) 4 characters

Last 4 Digits of Consumer Phone if Available

user_agent
string (User Agent) <= 1024 characters

User Agent of Consumer when information was collected

utm_source
string

Use utm_source to identify a search engine, newsletter name, or other source.

utm_campaign
string

Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.

utm_medium
string

Use utm_medium to identify a medium such as email or cost-per- click.

utm_content
string

Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL.

utm_term
string

Used for paid search. Use utm_term to note the keywords for this ad.

external_id
string (External ID) <= 255 characters

Unique ID for Lead from Publisher

tcpa_call_consent
boolean (TCPA Call Consent)
Default: false
Enum: true false

Indicates whether the user has consented to a call.

tcpa_sms_consent
boolean (TCPA SMS Consent)
Default: false
Enum: true false

Indicates whether the user has consented to SMS/MMS.

tcpa_disclosure
string (TCPA Disclosure) <= 255 characters

Text displaying TCPA disclosure

tcpa_url
string (TCPA Link Url) <= 255 characters

Link to TCPA text.

source_url
string (Source URL) <= 255 characters

The URL of the web page the lead was generated on.

trusted_form_certificate_id
string (Trusted Form Certificate Id) <= 255 characters

40+ character Trusted Form Certificate ID (path portion of their URL) Link

universal_lead_id
string (Jornaya Lead ID) <= 36 characters

Jornaya Lead ID for this lead Link

form_begin
string <date-time> (Form Started Timestamp)

Date and time that user starts form. Value must include a time zone.

form_submit
string <date-time> (Form Submit Timestamp)

Date and time that user submits form. Value must include a time zone.

coreg
boolean (Is Co-Registration Lead)
Default: false
Enum: true false

This Lead was generated using Co-Registration flows or techniques that may not have been the consumers original intent but may still be insterested in hearing about this vertical.

sub_1
string
sub_2
string
sub_3
string
object
credit_rating
string (Credit Rating)
Enum: "Excellent" "Good" "Average" "Below average" "Poor"
military_affiliation
string
Enum: "None" "Active Duty(AD)" "Civilian" "Selective Reserve(SR)" "Spouse of AD or SR" "Veteran"
property_foreclosure
boolean
loan_interest_rate
float
loan_type
string
Enum: "Refinance" "Purchase"
loan_amount
integer
cash_out_amount
integer
property_value
integer
property_type
string
Enum: "Condo" "Townhome" "Single Family" "Multi-Unit" "Mobile"
property_use
string
Enum: "Primary Residence" "Vacation Home" "Investment"
current_va
boolean
current_fha
boolean
{
  • "first_name": "Clark",
  • "last_name": "Kent",
  • "address": "123 Main St",
  • "address2": "Apt 4",
  • "phone": "6195551212",
  • "email": "clark.kent@fakemail.com",
  • "zipcode": "92101",
  • "ip_address": "68.139.206.214",
  • "phone_suffix": 1234,
  • "user_agent": "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1",
  • "utm_source": "google",
  • "utm_campaign": "string",
  • "utm_medium": "string",
  • "utm_content": "logolink or textlink",
  • "utm_term": "running+shoes",
  • "external_id": "123456789",
  • "tcpa_call_consent": true,
  • "tcpa_sms_consent": true,
  • "tcpa_disclosure": "By submitting your quote request, you represent that you are at least 18 and agree to our Privacy Policy and Terms of Use. You also authorize UE.co and/or its marketing partners to contact you for marketing/telemarketing purposes at the number and address provided above, including your wireless number, if provided, using live operators, automated telephone dialing systems, pre-recorded messages, text messages and/or emails. You are not required to consent as a condition of purchasing goods or services and may revoke consent at anytime.",
  • "tcpa_url": "example.com",
  • "source_url": "example.com",
  • "trusted_form_certificate_id": "433cb911f1698abec3a8c3514fad789c2541e823",
  • "universal_lead_id": "e8959414-ba71-400a-b5d7-5cd3abede139",
  • "form_begin": "2019-03-18T09:23:43.000Z",
  • "form_submit": "2019-03-18T09:23:43.000Z",
  • "coreg": false,
  • "sub_1": "string",
  • "sub_2": "string",
  • "sub_3": "string",
  • "custom": {
    },
  • "credit_rating": "Excellent",
  • "military_affiliation": "None",
  • "property_foreclosure": true,
  • "loan_interest_rate": null,
  • "loan_type": "Refinance",
  • "loan_amount": 0,
  • "cash_out_amount": 0,
  • "property_value": 0,
  • "property_type": "Condo",
  • "property_use": "Primary Residence",
  • "current_va": true,
  • "current_fha": true
}

Home Services

first_name
string (First Name) [ 2 .. 255 ] characters

First Name of Primary Lead

last_name
string (Last Name) [ 2 .. 255 ] characters

Last Name of Primary Lead

address
string (Address) <= 255 characters

Address of Primary Lead

address2
string (Secondary Address) <= 255 characters

Additional Address Information of Primary Lead

phone
string (Telelphone Number) [ 10 .. 15 ] characters

The phone number to contact the lead (numbers only, no formatting)

email
string (Email Address) [ 3 .. 255 ] characters

Best Email Address to contact consumer

zipcode
string (Zip Code (Postal Code)) [ 5 .. 10 ] characters ^[0-9]{5}$

Zipcode of Primary Lead

ip_address
string (IP Address) [ 16 .. 45 ] characters

IPv4 or IPv6 Address of Consumer when information was collected

phone_suffix
string (Phone Suffix) 4 characters

Last 4 Digits of Consumer Phone if Available

user_agent
string (User Agent) <= 1024 characters

User Agent of Consumer when information was collected

utm_source
string

Use utm_source to identify a search engine, newsletter name, or other source.

utm_campaign
string

Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.

utm_medium
string

Use utm_medium to identify a medium such as email or cost-per- click.

utm_content
string

Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL.

utm_term
string

Used for paid search. Use utm_term to note the keywords for this ad.

external_id
string (External ID) <= 255 characters

Unique ID for Lead from Publisher

tcpa_call_consent
boolean (TCPA Call Consent)
Default: false
Enum: true false

Indicates whether the user has consented to a call.

tcpa_sms_consent
boolean (TCPA SMS Consent)
Default: false
Enum: true false

Indicates whether the user has consented to SMS/MMS.

tcpa_disclosure
string (TCPA Disclosure) <= 255 characters

Text displaying TCPA disclosure

tcpa_url
string (TCPA Link Url) <= 255 characters

Link to TCPA text.

source_url
string (Source URL) <= 255 characters

The URL of the web page the lead was generated on.

trusted_form_certificate_id
string (Trusted Form Certificate Id) <= 255 characters

40+ character Trusted Form Certificate ID (path portion of their URL) Link

universal_lead_id
string (Jornaya Lead ID) <= 36 characters

Jornaya Lead ID for this lead Link

form_begin
string <date-time> (Form Started Timestamp)

Date and time that user starts form. Value must include a time zone.

form_submit
string <date-time> (Form Submit Timestamp)

Date and time that user submits form. Value must include a time zone.

coreg
boolean (Is Co-Registration Lead)
Default: false
Enum: true false

This Lead was generated using Co-Registration flows or techniques that may not have been the consumers original intent but may still be insterested in hearing about this vertical.

sub_1
string
sub_2
string
sub_3
string
object
gender
string (Gender)
Enum: "M" "F" "X"

Gender

marital_status
string (Marital Status)
Enum: "Married" "Single"

Marital Status

date_of_birth
string <date> (Date of Birth)

Date of birth of the driver. (YYYY-MM-DD)

best_time_to_contact
string (Best Time to Contact)
Enum: "Morning" "Afternoon" "Evening" "Anytime"

Best time to be contacted

time_frame
string
Enum: "Immediately" "1 to 6 months" "Not Sure"

Start time frame of the project

sub_vertical
string (Sub Vertical)
Enum: "windows" "gutter" "roofing" "hvac" "solar" "bathroom" "flooring" "siding" "kitchen" "walk-in tubs" "plumbing" "home warranty"
home_ownership
boolean (Home Ownership)
Enum: true false

Whether the primary residence is owned by primary (true) or is not (false)

property_type
string (Property Type)
Enum: "Single Family Home" "Multi Family Home" "Duplex" "Townhome" "Condominium" "Mobile Home"

The building type of property

project_type
string (Project Type)
Enum: "Repair" "Replace" "New Installation" "Refinish"

The project type of home service

number_of_windows
integer (Number of Windows)

Number of windows at property

interested_gutter_covers
boolean (Interested Gutter Covers)
Enum: true false

Interested in gutter covers

roof_material
string (Roof Material)
Enum: "Asphalt Shingle" "Wood Shingle" "Tile" "Metal" "Slate" "Tar Torchdown" "Other / Not Sure"

The roof material of the property

walk_in_tubs_reason
string (Walk in Tubs Reason)
Enum: "Safety" "Therapeutic" "Other"

Walk in tubs reason

reason
string
Enum: "Safety" "Therapeutic" "Other"

The reason of the walk-in tub setup

bathroom_project_interest
string
Enum: "Tub to Shower Conversion" "Shower Installation" "Bathroom Remodeling" "Fixture Upgrade"

Bathroom project interest

hvac_system_type
string
Enum: "Furnace" "Heat Pump" "Boiler/Radiator" "Air Conditioner"

Hvac system type

hvac_energy_source
string
Enum: "Natural Gas" "Oil" "Propane Gas" "Electricity" "Not Sure"

Hvac energy source

flooring_material
string
Enum: "Linoleum" "Laminate" "Carpet" "Tile" "Wood" "Other"

The material of the flooring

project_scope
string
Enum: "Labor Only" "Labor and Material"

Scope of the project

service_type
string
Enum: "Bathtubs" "Commercial Industrial Plumbing" "Faucets Fixtures Pipes" "Gas Pipes" "General Repair" "Leak Detection and Repair" "Remodeling and Construction" "Sewer and Drain" "Showers" "Solar Water Heater System" "Sump Pump" "Tank" "Toilet" "Water Heater" "Water or Fuel Tank" "Water Treatment or Purification" "Well Pump" "Other"

Service type

siding_material
string
Enum: "Vinyl" "Brick" "Stucco" "Wood" "Stone" "Cement" "Aluminum" "Other"

The material of the siding

kitchen_upgrade
string
Enum: "Kitchen Remodel" "Cabinet Refacing" "Cabinet Install" "Other\""

The material of the siding

square_footage
integer

Measurement of the property in square footage

electric_bill
integer

Monthly average electric bill

roof_shade
string
Enum: "No Shade" "Partial Shade" "Full Shade" "Not Sure"

How much sun exposure at the property

current_utility_provider
string

Who is your current utility provider

{
  • "first_name": "Clark",
  • "last_name": "Kent",
  • "address": "123 Main St",
  • "address2": "Apt 4",
  • "phone": "6195551212",
  • "email": "clark.kent@fakemail.com",
  • "zipcode": "92101",
  • "ip_address": "68.139.206.214",
  • "phone_suffix": 1234,
  • "user_agent": "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1",
  • "utm_source": "google",
  • "utm_campaign": "string",
  • "utm_medium": "string",
  • "utm_content": "logolink or textlink",
  • "utm_term": "running+shoes",
  • "external_id": "123456789",
  • "tcpa_call_consent": true,
  • "tcpa_sms_consent": true,
  • "tcpa_disclosure": "By submitting your quote request, you represent that you are at least 18 and agree to our Privacy Policy and Terms of Use. You also authorize UE.co and/or its marketing partners to contact you for marketing/telemarketing purposes at the number and address provided above, including your wireless number, if provided, using live operators, automated telephone dialing systems, pre-recorded messages, text messages and/or emails. You are not required to consent as a condition of purchasing goods or services and may revoke consent at anytime.",
  • "tcpa_url": "example.com",
  • "source_url": "example.com",
  • "trusted_form_certificate_id": "433cb911f1698abec3a8c3514fad789c2541e823",
  • "universal_lead_id": "e8959414-ba71-400a-b5d7-5cd3abede139",
  • "form_begin": "2019-03-18T09:23:43.000Z",
  • "form_submit": "2019-03-18T09:23:43.000Z",
  • "coreg": false,
  • "sub_1": "string",
  • "sub_2": "string",
  • "sub_3": "string",
  • "custom": {
    },
  • "gender": "F",
  • "marital_status": "Single",
  • "date_of_birth": "1990-01-01T00:00:00.000Z",
  • "best_time_to_contact": "Anytime",
  • "time_frame": "Immediately",
  • "sub_vertical": "windows",
  • "home_ownership": true,
  • "property_type": "Single Family Home",
  • "project_type": "Repair",
  • "number_of_windows": 6,
  • "interested_gutter_covers": true,
  • "roof_material": "Asphalt Shingle",
  • "walk_in_tubs_reason": "Safety",
  • "reason": "Therapeutic",
  • "bathroom_project_interest": "Bathroom Remodeling",
  • "hvac_system_type": "Air Conditioner",
  • "hvac_energy_source": "Natural Gas",
  • "flooring_material": "Wood",
  • "project_scope": "Labor and Material",
  • "service_type": "Other",
  • "siding_material": "Vinyl",
  • "kitchen_upgrade": "Kitchen Remodel",
  • "square_footage": 240,
  • "electric_bill": 154,
  • "roof_shade": "Full Shade",
  • "current_utility_provider": "San Diego Gas & Electric"
}

Auto Insurance Companies

  • 21st Century
  • AAA
  • AIG
  • Access Insurance
  • Alfa
  • Allied
  • Allstate
  • American Alliance Insurance
  • American Automobile Insurance
  • American Family
  • Ameriprise
  • Amica
  • Anchor General
  • Auto*Owners
  • Bristol West
  • Commerce West
  • Country Insurance and Financial Services
  • Countrywide
  • Dairyland Insurance
  • Direct General
  • Elephant
  • Equity Auto Insurance
  • Erie Insurance
  • Esurance
  • Explorer
  • Farm Bureau/Farm Family/Rural
  • Farmers
  • First Acceptance
  • Foremost
  • Fred Loya
  • Freeway Insurance
  • GEICO
  • GMAC
  • Gainsco
  • Grange
  • Hallmark
  • Hanover
  • High Point Insurance
  • Imperial Fire & Casualty
  • Infinity Insurance
  • Insurance Depot
  • InsureOne
  • Kemper
  • Liberty Mutual
  • Mendota
  • Mercury
  • MetLife
  • National Insurance
  • Nationwide
  • Ocean Harbor
  • Other
  • Peachtree
  • Peak Property and Casualty Insurance
  • Permanent General
  • Plymouth Rock
  • Progressive
  • Pronto
  • SafeAuto
  • Safeco
  • Safeway Insurance
  • Shelter
  • State Farm
  • The General
  • The Hartford
  • Titan
  • Travelers
  • UAIC
  • USAA
  • United Insurance
  • Unitrin Direct
  • Victoria
  • Viking Insurance
  • Wawanesa Mutual
  • Windhaven

Health Insurance Companies

  • AARP
  • Advantra
  • Aetna
  • Alameda Alliance for Health
  • Altius Health Plans
  • American Community Mutual Insurance Company
  • American Republic Insurance Company
  • American Security Life
  • American Specialty Health
  • Amerihealth
  • Anthem Blue Cross and Blue Shield of Colorado
  • Anthem Blue Cross and Blue Shield of Connecticut
  • Anthem Blue Cross and Blue Shield of Indiana
  • Anthem Blue Cross and Blue Shield of Maine
  • Anthem Blue Cross and Blue Shield of Nevada
  • Anthem Blue Cross and Blue Shield of Ohio
  • Anthem Blue Cross and Blue Shield of Virginia
  • Arcadian Health Plan
  • Arkansas Blue Cross and Blue Shield
  • Assurant (previously Fortis)
  • Asuris NorthWest Health
  • Atlantis Health Plan
  • AultCare
  • Avmed Health Plan
  • BadgerCare Plus
  • Bankers Fidelity Life Insurance Co.
  • Blue Cross and Blue Shield of Minnesota
  • Blue Cross Blue Shield of Alabama
  • Blue Cross Blue Shield of Arizona
  • Blue Cross Blue Shield of Florida
  • Blue Cross Blue Shield of Georgia
  • Blue Cross Blue Shield of Hawaii
  • Blue Cross Blue Shield of Illinois
  • Blue Cross Blue Shield of Kansas
  • Blue Cross Blue Shield of Michigan
  • Blue Cross Blue Shield of Missouri
  • Blue Cross Blue Shield of Nebraska
  • Blue Cross Blue Shield of New Jersey
  • Blue Cross Blue Shield of New Mexico
  • Blue Cross Blue Shield of New York
  • Blue Cross Blue Shield of North Carolina
  • Blue Cross Blue Shield of Oregon
  • Blue Cross Blue Shield of South Carolina
  • Blue Cross Blue Shield of Tennessee
  • Blue Cross Blue Shield of Texas
  • Blue Cross Blue Shield of Vermont
  • Blue Cross Blue Shield of Wisconsin
  • Blue Cross of California
  • Blue Cross of Idaho
  • Blue Cross of Massachusetts
  • Blue Cross of North Eastern PA
  • Blue Shield of California
  • Blue Shield of Washington
  • BlueCross BlueShield of Kansas City
  • BlueGrass Family Health
  • Capital Blue Cross
  • CareFirst Blue Cross Blue Shield
  • Celtic Insurance Company
  • Centene Corp
  • CHA Health
  • Charter Oak Health Plan
  • Cigna
  • CIGNA of Arizona
  • Clarendon National Insurance Company
  • CNA/Highway to Health
  • Cole Vision
  • Community Health Plan
  • Companion HealthCare
  • Connecticut General Life Insurance Company
  • Cover Florida
  • CoverColorado
  • CoverTN
  • CPIC Life
  • Dean Health Plan
  • Destiny Health Plan
  • Empire Blue Cross Blue Shield of NY
  • Excellus Blue Cross Blue Shield of Rochester
  • Fairmont Specialty Group
  • Fallon Health Plan
  • Family Health Plus
  • FirstCare
  • FiServ Health
  • Fortis Health (now Assurant)
  • Geisinger Health Plan
  • GoBlue
  • Golden Rule
  • Great West HealthCare
  • Group Health Cooperative
  • Group Health Incorporated
  • Guardian Vista Health of South Florida
  • Guardian/Health Net
  • Harvard Pilgrim
  • Hawaii Pacific Health
  • Hawk-I
  • Health Alliance Plan of Michigan
  • Health First Health Plan
  • Health Net of Arizona
  • Health Net of California
  • Health Net of Oregon
  • Health Plan of Nevada
  • HealthFirst of New York
  • HealthPartners
  • Healthspring
  • Healthy Indiana Plan
  • HIP
  • Horizon Blue Cross Blue Shield
  • HTH (International)
  • Humana
  • Independence Blue Cross Blue Shield
  • Insure Oklahoma
  • Intermountain Health Plan
  • International Medical Group (International)
  • International SOS (International)
  • John Alden (A Fortis Health Co.)
  • John Deere Health Care
  • Kaiser Permanente of California
  • Kaiser Permanente of Colorado
  • Kaiser Permanente of Georgia
  • Kaiser Permanente of Ohio
  • Kaiser Permanente of Oregon
  • Kaiser Permanente of the Mid- Atlantic States,Inc.
  • Kanawha Insurance Company
  • Keystone Blue Cross Blue Shield
  • KPS Health Plan
  • LifeWise Health Plan of Oregon
  • LifeWise of Arizona
  • Lifewise of Washington
  • Lovelace health Plan
  • MAMSI
  • Medex (International)
  • Medica
  • Medical Mutual of Ohio
  • MEGA Health
  • Mercy Health Plan
  • Midwest Security
  • MinnesotaCare
  • Molina HealthCare
  • Monumental Life
  • Mountain State Blue Cross Blue Shield
  • MVP Health Plans
  • National Health Insurance Company
  • Nationwide Health Plans
  • Neighborhood Health Plan
  • New York Life
  • ODS Alaska
  • ODS Health Plan of Oregon
  • Optima Health
  • Optimum Choice
  • Other
  • Oxford Health Plans
  • PacifiCare of Arizona
  • PacifiCare of California
  • PacifiCare of Colorado
  • PacifiCare of Nevada
  • PacifiCare of Oklahoma
  • PacifiCare of Oregon
  • PacifiCare Vision
  • PacificSource Health Plan
  • Preferred One
  • Premera Blue Cross Blue Shield of Alaska
  • Premera Blue Cross of Washington
  • Principal Life Insurance Company
  • Priority Health
  • Providence Health Plan
  • PrudentChoice (health discount plan)
  • Qualchoice
  • Regence BC/BS of Oregon
  • Regence BlueShield
  • Rocky Mountain Health Plan
  • SCAN Health Plans
  • Security Life Insurance Co. of America
  • SelectHealth
  • Sierra Health Plans
  • State Farm Health
  • SummaCare
  • Time Insurance
  • Torchmark
  • TrustMark Insurance Company
  • Tufts Health Plan
  • Tufts Secure Horizons
  • Ucare
  • UNICARE Life &Health Company
  • Unison Health Plan
  • United American Insurance Company
  • United Health Care Group
  • United Wisc. Life Ins./Am. Medical Sec.
  • Unity Health Plan
  • Univera
  • UPMC Health Plan
  • Vista Health Plan
  • VIVA Health
  • Washington Basic Health Plan
  • WellChoice
  • Wellmark Blue Cross Blue Shield of Iowa
  • Wellmark Blue Cross Blue Shield of South Dakota
  • Wellpath Select
  • Wellpoint Inc.
  • World Insurance Company

Home Insurance Companies

  • 21st Century Insurance
  • AAA Insurance Co.
  • AARP
  • AETNA
  • AFLAC
  • AIG
  • AIU Insurance
  • Allied
  • Allstate
  • Allstate County Mutual
  • Allstate Indemnity
  • Allstate Insurance
  • American Alliance Insurance
  • American Automobile Insurance
  • American Casualty
  • American Deposit Insurance
  • American Direct Business Insurance
  • American Empire Insurance
  • American Family
  • American Family Insurance
  • American Family Mutual
  • American Financial
  • American Health Underwriters
  • American Home Assurance
  • American Insurance
  • American International Ins
  • American International Pacific
  • American International South
  • American Manufacturers
  • American Mayflower Insurance
  • American Motorists Insurance
  • American National Insurance
  • American Premier Insurance
  • American Protection Insurance
  • American Republic
  • American Savers Plan
  • American Service Insurance
  • American Skyline Insurance Company
  • American Spirit Insurance
  • American Standard Insurance - OH
  • American Standard Insurance - WI
  • AmeriPlan
  • Amica Insurance
  • Answer Financial
  • Arbella
  • Associated Indemnity
  • Assurant
  • Atlanta Casualty
  • Atlantic Indemnity
  • Auto Club Insurance Company
  • AXA Advisors
  • Bankers Life and Casualty
  • Banner Life
  • Best Agency USA
  • Blue Cross and Blue Shield
  • Brooke Insurance
  • Cal Farm Insurance
  • California State Automobile Association
  • Chubb
  • Citizens
  • Clarendon American Insurance
  • Clarendon National Insurance
  • CNA
  • Colonial Insurance
  • COMPANY NOT LISTED
  • Comparison Market
  • Continental Casualty
  • Continental Divide Insurance
  • Continental Insurance
  • Cotton States Insurance
  • Country Financial
  • Country Insurance and Financial Services
  • Countrywide Insurance
  • CSE Insurance Group
  • Dairyland County Mutual Co of TX
  • Dairyland Insurance
  • eHealthInsurance Services
  • Electric Insurance
  • Erie Insurance Company
  • Erie Insurance Exchange
  • Erie Insurance Group
  • Erie Insurance Property and Casualty
  • Esurance
  • Farm Bureau
  • Farm Bureau/Farm Family/Rural
  • Farmers Insurance
  • Farmers Insurance Exchange
  • Farmers TX County Mutual
  • Farmers Union
  • FinanceBox.com
  • Fire and Casualty Insurance Co of CT
  • Foremost
  • Foresters
  • Geico
  • Geico Casualty
  • Geico General Insurance
  • Geico Indemnity
  • GMAC Insurance
  • Golden Rule Insurance
  • Government Employees Insurance
  • Guaranty National Insurance
  • Guide One Insurance
  • Hartford Accident and Indemnity
  • Hartford Casualty Insurance
  • Hartford Fire Insurance
  • Hartford Insurance Co of Illinois
  • Hartford Insurance Co of the Southeast
  • Hartford Omni
  • Hartford Underwriters Insurance
  • Health Benefits Direct
  • Health Choice One
  • Health Plus of America
  • HealthShare American
  • Humana
  • IFA Auto Insurance
  • IGF Insurance
  • Infinity Insurance
  • Infinity National Insurance
  • Infinity Select Insurance
  • Insurance Insight
  • Insurance.com
  • InsuranceLeads.com
  • InsWeb
  • Integon
  • John Hancock
  • Kaiser Permanente
  • Kemper Lloyds Insurance
  • Landmark American Insurance
  • Leader National Insurance
  • Leader Preferred Insurance
  • Leader Specialty Insurance
  • Liberty Insurance Corp
  • Liberty Mutual
  • Liberty Mutual Fire Insurance
  • Liberty Mutual Insurance
  • Liberty National
  • Liberty Northwest Insurance
  • Lumbermens Mutual
  • Maryland Casualty
  • Mass Mutual
  • Mega/Midwest
  • Mercury
  • MetLife
  • MetLife Auto and Home
  • Metropolitan Insurance Co.
  • Mid Century Insurance
  • Mid-Continent Casualty
  • Middlesex Insurance
  • Midland National Life
  • Mutual of New York
  • Mutual Of Omaha
  • National Ben Franklin Insurance
  • National Casualty
  • National Continental Insurance
  • National Fire Insurance Company of Hartford
  • National Health Insurance
  • National Indemnity
  • National Union Fire Insurance of LA
  • National Union Fire Insurance of PA
  • Nationwide
  • Nationwide General Insurance
  • Nationwide Insurance Company
  • Nationwide Mutual Fire Insurance
  • Nationwide Mutual Insurance
  • Nationwide Property and Casualty
  • New England Financial
  • New York Life Insurance
  • Northwestern Mutual Life
  • Northwestern Pacific Indemnity
  • Omni Indemnity
  • Omni Insurance
  • Orion Insurance
  • Pacific Indemnity
  • Pacific Insurance
  • Pafco General Insurance
  • Patriot General Insurance
  • Peak Property and Casualty Insurance
  • PEMCO Insurance
  • Physicians
  • Progressive
  • Progressive Auto Pro
  • Prudential
  • Prudential Insurance Co.
  • Reliance Insurance
  • Reliance National Indemnity
  • Reliance National Insurance
  • Republic Indemnity
  • Response Insurance
  • SAFECO
  • Safeway Insurance
  • Safeway Insurance Co of AL
  • Safeway Insurance Co of GA
  • Safeway Insurance Co of LA
  • Security Insurance Co of Hartford
  • Security National Insurance Co of FL
  • Sentinel Insurance
  • Sentry Insurance a Mutual Company
  • Sentry Insurance Group
  • Shelter Insurance Co.
  • St. Paul
  • St. Paul Fire and Marine
  • St. Paul Insurance
  • Standard Fire Insurance Company
  • State and County Mutual Fire Insurance
  • State Farm
  • State Farm County
  • State Farm Fire and Cas
  • State Farm General
  • State Farm Indemnity
  • State Farm Insurance Co.
  • State Farm Lloyds Tx
  • State Farm Mutual Auto
  • State Fund
  • State National Insurance
  • Superior American Insurance
  • Superior Guaranty Insurance
  • Superior Insurance
  • Sure Health Plans
  • The Ahbe Group
  • The General
  • The Hartford
  • TICO Insurance
  • TIG Countrywide Insurance
  • Titan
  • TransAmerica
  • Travelers Indemnity
  • Travelers Insurance Company
  • Tri-State Consumer Insurance
  • Twin City Fire Insurance
  • UniCare
  • United American/Farm and Ranch
  • United Pacific Insurance
  • United Security
  • United Services Automobile Association
  • Unitrin Direct
  • Universal Underwriters Insurance
  • US Financial
  • USA Benefits/Continental General
  • USAA
  • USF and G
  • Viking County Mutual Insurance
  • Viking Insurance Co of WI
  • Wawanesa
  • Western and Southern Life
  • Western Mutual
  • Windsor Insurance
  • Woodlands Financial Group
  • Zurich North America

Occupation

  • Administrative Clerical
  • Architect
  • Business Owner
  • Certified Public Accountant
  • Clergy
  • Construction Trades
  • Consultant
  • Dentist
  • Disabled
  • Engineer
  • Financial Services
  • Health Care
  • Homemaker
  • Human Relations
  • Lawyer
  • Marketing
  • Manager Supervisor
  • Military Enlisted
  • Minor Not Applicable
  • Other Not Listed
  • Other Non Technical
  • Other Technical
  • Physician
  • Professional Salaried
  • Professor
  • Retail
  • Retired
  • Sales Inside
  • Sales Outside
  • School Teacher
  • Scientist
  • Self Employed
  • Skilled Semi Skilled
  • Student
  • Transportation or Logistics
  • Unemployed