Ohio Insurance License Lookup avatar

Ohio Insurance License Lookup

Under maintenance

Pricing

from $12.00 / 1,000 license_enricheds

Go to Apify Store
Ohio Insurance License Lookup

Ohio Insurance License Lookup

Under maintenance

Search Ohio insurance producer and business entity licenses via the Ohio Department of Insurance Agent/Agency Locator. Returns NPN, full license history, lines of authority, and address.

Pricing

from $12.00 / 1,000 license_enricheds

Rating

0.0

(0)

Developer

StackRelay

StackRelay

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Ohio Insurance Producer License Scraper

Search Ohio insurance producer and business entity licenses via the Ohio Department of Insurance Agent/Agency Locator (gateway.insurance.ohio.gov). Returns normalized records with NPN, full license history, lines of authority, status, and business address.

Disclaimer — please read before running. This actor is an independent data tool built by StackRelay. It is not affiliated with, endorsed by, or operated by the Ohio Department of Insurance. Results are a best-effort, point-in-time snapshot of the public ODI Agent/Agency Locator, provided AS-IS with no warranty of accuracy, completeness, or timeliness — license status, lines of authority, and addresses can change at any time after a record is fetched. Every record carries a source_url linking back to the ODI detail page and a scraped_at timestamp: verify independently at the source before acting on any record. Output includes personal data about individuals (names, address, phone); if you process data about EU/UK residents you may be an independent data controller under GDPR/UK GDPR. This actor's output is not a consumer report and must not be used for FCRA-regulated purposes — credit, insurance underwriting eligibility, employment, or tenant-screening decisions about an individual. By running this actor you agree to the DEVELOPER_TERMS.md.

Note: Ohio is NOT part of the NAIC State Based Systems (SBS). This actor wraps Ohio's own public ODI portal. The ODI portal is the source; this actor reads only its public, logged-out lookup and passes data through with formatting normalization only — always confirm any record at its source_url before relying on it.

What it does

  1. Calls the ODI Agent/Agency Locator search API with your query
  2. Optionally follows each result's detail page to retrieve NPN and full license/LOA data
  3. Normalizes all fields and pushes structured records to the Apify dataset

Input

Search field requirements

Individual search (IND): At least one of lastName, npn, city, or zip is required. licenseNumber requires a second field (lastName, npn, city, or zip).

Business entity search (BUS): At least one of npn, city, or zip is required. businessName alone is not accepted by the ODI API — it must be combined with city, zip, or npn.

FieldTypeDefaultDescription
entityTypeIND | BUSINDIndividual producer or business entity
lastNamestringAgent last name. Partial match supported.
firstNamestringAgent first name. Optional, narrows results.
businessNamestringAgency name. Must pair with city, zip, or npn.
npnstringNational Producer Number. Returns exactly 1 record.
licenseNumberstringOhio license number. Must pair with lastName, npn, city, or zip.
citystringBusiness address city. Works standalone.
zipstringBusiness address ZIP. Works standalone.
licenseTypeselect(any)Filter by license type. See valid values below.
residenceTypeselect(any)resident or nonResident
activeOnlybooleanfalseOnly return producers with at least one active Ohio license
fetchDetailsbooleantrueFollow detail pages for NPN + full license data. See note below.
maxResultsinteger200Cap on records. Actor paginates automatically up to this limit.

Valid licenseType values

ValueLabel
majorLinesMajor Lines
healthHealth
lifeLife
personalPersonal Lines
propertyCasualtyProperty & Casualty
variableVariable Products
limitedLinesLimited Lines
carRentalCar Rental
creditCredit
cropCrop
funeralFuneral Expense
selfServiceStorageSelf Service Storage
travelTravel
mgaManaging General Agent
portableElectronicsPortable Electronics
suretyBailBondSurety Bail Bond
surplusLinesSurplus Lines
titleTitle
timrTitle Insurance Marketing Rep

fetchDetails flag

When true (recommended): the actor makes a second HTTP request per record to retrieve NPN and full Ohio license history. This is ~2x slower but produces a complete dataset.

When false: individual (IND) searches return no NPN and no license data — only name, address, phone, and status. Business entity (BUS) searches always include NPN regardless of this setting. Only disable fetchDetails for high-volume pre-filtering when you plan to re-run matched records with it enabled.

Example inputs

NPN lookup (fastest, single record):

{ "npn": "20835251" }

Name search — active resident Life producers:

{ "lastName": "Smith", "activeOnly": true, "residenceType": "resident", "licenseType": "life" }

City lead-gen — all active producers in Columbus:

{ "city": "Columbus", "activeOnly": true, "maxResults": 500 }

Business entity by ZIP:

{ "entityType": "BUS", "zip": "43215", "activeOnly": true }

License number lookup (requires a secondary field):

{ "licenseNumber": "1534119", "lastName": "Smith" }

Business name search (requires city or ZIP):

{ "entityType": "BUS", "businessName": "Acme Insurance", "city": "Columbus" }

Output

Each dataset record:

{
"id": "OH-20835251",
"source_name": "Ohio Department of Insurance — Agent/Agency Locator (public lookup)",
"source_url": "https://gateway.insurance.ohio.gov/.../DisplayIndividualDetail/...",
"npn": "20835251",
"name": "Desjane Smith",
"first_name": "Desjane",
"middle_name": null,
"last_name": "Smith",
"entity_type": "IND",
"address_line1": "2112 Stoker Pl",
"address_line2": null,
"address_city_state_zip": "HEPZIBAH, GA 30815",
"address_city": "Hepzibah",
"address_state": "GA",
"address_zip": "30815",
"phone": "(248) 943-3201",
"status": "Active",
"is_active": true,
"licenses": [
{
"license_number": "1534119",
"license_type": "Individual - Non-Resident - Major Lines",
"status": "Active",
"cancellation_reason": null,
"issue_date": "2022-03-15",
"expiration_date": "2025-07-01",
"renewal_date": null,
"loas": [
{ "loa": "Accident & Health", "status": "Active", "issue_date": "2022-03-15", "expiration_date": "2025-07-01" },
{ "loa": "Life", "status": "Active", "issue_date": "2022-03-15", "expiration_date": "2025-07-01" }
]
}
],
"jurisdiction": "OH",
"scraped_at": "2026-05-30T03:00:00.000Z"
}

Key fields

  • idOH-{NPN} when NPN is available; stable across re-runs for deduplication
  • is_activetrue when the record-level status is "Active". Note: a producer can be "Active" overall while having individual licenses in Cancelled or Surrendered status — always inspect the licenses array for the specific license type you care about
  • licenses — full Ohio license history, oldest to newest. Each license has its own loas array with per-line-of-authority detail
  • address_state — will often be a state other than OH. Non-resident producers licensed in Ohio have their home-state business address on file. This is expected and correct.

Notes on data accuracy

Non-Ohio addresses are expected. Ohio licenses non-resident producers — their business address will be in their home state, not Ohio.

Expiration dates may appear stale. Ohio auto-renews producer licenses on a rolling basis and the ODI portal does not always reflect the current renewal date in real time. Trust the status field over expiration_date for active/inactive determination.

City and ZIP searches return alphabetical results only. The ODI API does not support filtering by line of authority within the search — licenseType narrows results but is not guaranteed to exclude all non-matching license types from the response. Verify LOA membership in the licenses array.

FAQ

Does this return the NPN (National Producer Number)? Yes. Business entity (BUS) searches always include NPN. For individual (IND) searches, keep fetchDetails enabled (the default) and each record returns its NPN plus full license history.

Why is a producer's address not in Ohio? Ohio licenses non-resident producers, who keep their home-state business address on file. A non-Ohio address_state is expected and correct for licensees outside Ohio.

How do I search by agency name? Business name alone is not accepted by the ODI API. Set entityType to BUS and pair businessName with city, zip, or npn.

How current is the data? Records are pulled live from the Ohio Department of Insurance portal at run time (scraped_at timestamps each record). Note that ODI auto-renews licenses on a rolling basis, so trust the status field over expiration_date for active/inactive determination.

Can I pull every active producer in a city for lead generation? Yes. Search by city (or zip) with activeOnly: true and raise maxResults. The actor paginates automatically up to your limit.

Is an API key or login required? No. This wraps public data from the ODI Agent/Agency Locator — no credentials needed.

Pricing

Pay per event — priced by how much data you request per record:

EventWhen it's chargedPrice
license_basicfetchDetails: false — name, address, phone, status only (no NPN or license history)$0.0035 / record
license_enrichedfetchDetails: true (default) — full license history with per-line lines-of-authority and dates$0.012 / record

Empty searches are never charged. Set fetchDetails: false for high-volume pre-filtering, then re-run the matched subset with fetchDetails: true to get the full enriched record.

  • What this data is. A best-effort, point-in-time snapshot of the public Ohio Department of Insurance Agent/Agency Locator. The actor is a pipe, not an oracle: fields are passed through from the source with formatting normalization only (title-casing, date and phone formats). Coverage and field completeness vary by record and entity type — for IND searches with fetchDetails disabled, NPN and license data are intentionally absent.
  • It can be wrong or stale. License status, lines of authority, and addresses change as producers renew, surrender, or are terminated. ODI also auto-renews on a rolling basis, so expiration_date may appear stale even for active licensees — trust status over expiration_date. A record is accurate only as of its scraped_at timestamp. Every record carries a source_url back to the ODI detail page — independently verify any record there before relying on it for an appointment, audit finding, hiring decision, or any other action.
  • Derived fields are labeled as such. is_active is computed by this actor from the record-level status string (true only when it equals "Active") — note a producer can be "Active" overall while individual licenses are Cancelled or Surrendered, so inspect the licenses array. id is constructed by this actor; name/first_name/middle_name/last_name and the parsed address_* fields are derived from raw source strings; jurisdiction is set to OH. Treat derived fields as conveniences, not source-of-truth.
  • Personal data / GDPR. Output includes personal data about individuals (names, address, phone). If you process data about EU/UK residents you may act as an independent data controller under GDPR/UK GDPR and are solely responsible for having a lawful basis and honoring data-subject rights.
  • Prohibited uses (FCRA). The output is not a "consumer report" and StackRelay is not a consumer reporting agency. Do not use this data for FCRA-regulated purposes — determining an individual's eligibility for credit, insurance coverage, employment, housing, or similar decisions. Verifying that a producer or agency holds an active Ohio insurance license for regulatory-compliance purposes is the intended use. Do not use the data to harass or profile individuals, and note that bulk city/ZIP lead-generation output remains subject to applicable telemarketing, anti-spam, and privacy laws.
  • Not affiliated. Independently developed by StackRelay; not affiliated with, endorsed by, or operated by the Ohio Department of Insurance.
  • A disclaimer travels with every run in the key-value store record META, and every dataset row carries source_name, source_url, and scraped_at provenance fields.
  • Full terms: see DEVELOPER_TERMS.md — provided AS-IS, no warranty, liability capped at fees paid, Kansas governing law. By running this actor you agree to those terms.

Data source

Public data from the Ohio Department of Insurance Agent/Agency Locator. No credentials or API key required. This actor accesses only the public, logged-out lookup — no login, paywall, or access control is bypassed.