# NAIC Market Share Carrier Footprint Lookup

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

Returns a P/C insurance carrier's per-state market position (rank, direct premiums written, market share, YoY change) across U.S. jurisdictions for a given line of business and year, sourced from the NAIC Market Share Report.

## Facts

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

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-market-share-carrier-footprint-lookup-0f2171d5
```

Example prompt: Show me Travelers Group's (NAIC code 5765) market footprint across all U.S. states for private passenger auto insurance in 2022 — I want to see their rank, direct premiums written, market share, and year-over-year change in each state.

## When to prefer this

Use this endpoint when you need a single carrier's state-by-state competitive positioning from official NAIC data, including premium volume, market share rank, and year-over-year trends. Prefer this over general web searches when you need structured, authoritative NAIC figures. Best for competitive intelligence, regulatory research, or market entry analysis for a specific carrier across multiple states.

## Known failure modes

- Invalid or unknown NAIC code returns empty results or 404
- Carrier not in top 10 for a state means that state is absent from results
- Requested year not yet loaded returns an error or defaults to latest available
- Invalid line of business code returns a validation error
- States parameter with unrecognized jurisdiction codes may be silently ignored or return an error
- Payment failure (x402) blocks the query entirely

## How this service works

Compare one P/C insurance carrier's market position across U.S. states for a line of business and year: per-state rank, direct premiums written, market share, and year-over-year change, plus a countrywide reference row. From the free annual NAIC Market Share Report -- top-10-per-jurisdiction truncation applies. $0.50 per query. Docs: https://api.querylines.com/openapi.json

## Output

A list of rows — one per U.S. state/jurisdiction where the carrier appears in the NAIC top-10, plus a countrywide summary row — each containing: state code, carrier rank in that state, direct premiums written, market share percentage, and year-over-year change. Note: top-10-per-jurisdiction truncation means carriers ranked 11th or lower in a state will not appear for that state.

## 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"
      },
      "year": {
       "type": "integer",
       "description": "Data year; default latest loaded"
      },
      "states": {
       "type": "string",
       "description": "Comma-separated jurisdiction codes; default = every jurisdiction where the code appears"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "us": {
   "dpw": 41200000000,
   "rank": 1,
   "yoy_dpw_pct": 3,
   "market_share": 8.9
  },
  "code": "0212",
  "line": "total_all_lines",
  "name": "State Farm Group",
  "year": 2024,
  "source": "NAIC Market Share Report (P/C), data year 2024",
  "states": [
   {
    "dpw": 3120000000,
    "rank": 1,
    "state": "FL",
    "yoy_dpw_pct": 4.3,
    "market_share": 11.2
   },
   {
    "dpw": 4210000000,
    "rank": 2,
    "state": "TX",
    "yoy_dpw_pct": 2.1,
    "market_share": 9.8
   }
  ],
  "line_name": "Total All Lines",
  "data_as_of": "2024",
  "entity_kind": "group",
  "report_date": "2025-06-15",
  "coverage_note": "Top-10 per jurisdiction; a state's absence from `states` means the code fell outside that state's top 10, not zero business."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/naic-market-share-carrier-footprint-lookup-0f2171d5/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)
