# NAIC Insurance Carrier Market Share Profile

> NAIC Insurance Carrier Market Share Profile is a paid API for AI agents from api.querylines.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns multi-year market-share trajectory (rank, direct premiums written, share %, YoY change) for a single P/C insurance carrier by line of business and jurisdiction or countrywide

## Facts

- Endpoint: GET https://api.querylines.com/v1/carriers/profile
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/naic-insurance-carrier-market-share-profile-a84ad804
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PcTZ-NPGoLChntlMat4l1

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability naic-insurance-carrier-market-share-profile-a84ad804
```

Example prompt: Pull the countrywide market share history for Progressive — NAIC group code 0066 — in personal auto insurance, so I can see their rank, direct premiums written, and year-over-year changes over time.

## When to prefer this

Use this endpoint when you need historical, multi-year P/C insurance market share data for a specific carrier broken down by line of business and/or state, sourced from the authoritative NAIC Market Share Report. Ideal for competitive intelligence, market analysis, or regulatory research on admitted carriers. Prefer this over web scraping or general search when you need structured, time-series ranking and premium data.

## Known failure modes

- Invalid or unknown NAIC code returns empty result or 404
- Unsupported line of business code returns error
- State jurisdiction code not found returns error
- Missing required 'code' parameter returns 400 validation error
- Network timeout or service unavailability returns 5xx error

## How this service works

One P/C insurance carrier's multi-year market-share trajectory (rank, direct premiums written, market share, year-over-year change) for a single line of business and scope (a jurisdiction or countrywide), plus member companies for NAIC group codes. From the free annual NAIC Market Share Report. $0.10 per query. Docs: https://api.querylines.com/openapi.json

## Output

A structured response containing the carrier's multi-year market share trajectory including annual rank, direct premiums written, market share percentage, and year-over-year change for the specified line of business and jurisdiction, plus any member companies if a group code was provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "code"
     ],
     "properties": {
      "code": {
       "type": "string",
       "description": "NAIC group code or company code (cocode)"
      },
      "line": {
       "type": "string",
       "default": "total_all_lines"
      },
      "state": {
       "type": "string",
       "description": "Jurisdiction code; omit for countrywide"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": "0212",
  "line": "total_all_lines",
  "name": "State Farm Group",
  "scope": "state",
  "state": "FL",
  "series": [
   {
    "dpw": 2990000000,
    "rank": 1,
    "year": 2023,
    "loss_ratio": 65,
    "yoy_dpw_pct": null,
    "market_share": 11,
    "share_delta_pts": null,
    "cumulative_market_share": 11
   },
   {
    "dpw": 3120000000,
    "rank": 1,
    "year": 2024,
    "loss_ratio": 62.1,
    "yoy_dpw_pct": 4.3,
    "market_share": 11.2,
    "share_delta_pts": 0.2,
    "cumulative_market_share": 11.2
   }
  ],
  "source": "NAIC Market Share Report (P/C), data year 2024",
  "members": [
   {
    "company_code": "25143",
    "company_name": "State Farm Florida Insurance Company"
   },
   {
    "company_code": "25151",
    "company_name": "State Farm Fire and Casualty Company"
   }
  ],
  "line_name": "Total All Lines",
  "data_as_of": "2024",
  "entity_kind": "group",
  "report_date": "2025-06-15",
  "coverage_note": "Source: free annual NAIC Market Share Report. Tables are top-125 countrywide or top-10 per jurisdiction ONLY -- absence from these results does NOT mean a carrier writes no business there."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/naic-insurance-carrier-market-share-profile-a84ad804/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.querylines.com](https://www.zero.xyz/host/api.querylines.com/llms.txt)
