# /arizona/notices/search

`POST /api/arizona/notices/search`

Price: 5 credits

Search the Arizona Corporation Commission public notice feed of approved business filings — new registrations (Articles of Organization/Incorporation), statements of change, dissolutions and every other filing type. Each notice carries the business name, entity number, county, legal form, filing type, filing number, effective date and the list of published filing images. Filter by business name (substring), entity number, filing type, county and approval date range.

## How to use it

Browse newly approved Arizona business filings (lead generation for newly registered companies). Pass count and optionally name (matched as a substring of the business name), entity_number, filing_type (for example Articles of Organization), county (Arizona county name) and start_date/end_date (YYYY-MM-DD approval date range). Returns a list of items, each with name, entity_number, county, legal_form, filing_type, filing_number, work_order_id, start_date and documents (id, guid, file_name, source, created_at). Returns an empty list when nothing matches.

## Parameters

- `access-token` (string, required)

## Request body

- `timeout` (integer) — Max scrapping execution timeout (in seconds) (default: 600; min: 20; max: 1500)
- `count` (integer, required) — Max number of results to return (min: 1)
- `name` (string, nullable) — Business name to filter by, matched as a substring (examples: "TRUCKING"; minLength: 1)
- `entity_number` (string, nullable) — Arizona business entity number (Business ID) (examples: "25093569")
- `filing_type` (string, nullable) — Filing type to filter by (one of: "Affidavit of Publication", "Amended and Restated Application for Authority", "Amended and Restated Articles of Incorporation", "Amended and Restated Articles of Organization", "Amended and Restated Foreign Registration Statement", "Amendment to Application for Authority", "Amendment to Foreign Registration Statement", "Annual Benefit Report", "Annual Report", "Annual Report Extension", "Application for Authority", "Application for Withdrawal", "Articles of Amendment", "Articles of Correction", "Articles of Dissolution", "Articles of Dissolution - Electric", "Articles of Incorporation", "Articles of Organization", "Articles of Termination", "Cancellation of Name Registration", "Cancellation of Name Reservation", "Certificate of Compliance", "Certificate of Disclosure", "Certificate of Election to Dissolve", "Certificate of Good Standing", "Complaint Management", "Copies Request-Certified", "Copies Request-Uncertified", "Corrected Annual Benefit Report", "Corrected Annual Report", "Create MOD Account", "Custom Certificate", "Deposit Funds", "Foreign Registration Statement", "Full Database Extraction Request", "Misc Fee - Annual Report - Nonprofit", "Misc Fee - Annual Report – For Profit", "Misc Fee - Exp Fee", "Misc Fee - Reinstatement", "Misc Fee - SD/ND Fee", "Misc Fee – A/R Penalty Fee", "Miscellaneous Document", "Miscellaneous Fee", "MOD Account Change", "MOD Account Closure", "MOD Balance Refund", "Name Registration", "Name Reservation", "Notice of Winding Up", "Notice to Claimant", "Officer/Director/Shareholder Change", "Partial Database Extraction Request", "Reinstatement", "Renewal of Name Registration", "Restated Application for Authority", "Restated Articles of Incorporation", "Restated Articles of Organization", "Restated Foreign Registration Statement", "Revocation of Dissolution", "Service of Process", "Statement of Abandonment - Conversion", "Statement of Abandonment - Division", "Statement of Abandonment - Domestication", "Statement of Abandonment - Interest Exchange", "Statement of Abandonment - Merger", "Statement of Change", "Statement of Conversion", "Statement of Correction", "Statement of Division", "Statement of Domestication", "Statement of Ineffectiveness - Conversion", "Statement of Ineffectiveness - Division", "Statement of Ineffectiveness - Domestication", "Statement of Ineffectiveness - Interest Exchange", "Statement of Ineffectiveness - Merger", "Statement of Interest Exchange", "Statement of Merger", "Statement of Withdrawal", "Statement Pursuant to 10-602", "Statutory Agent Resignation", "Transfer of Name Registration", "Transfer of Name Reservation")
- `county` (string, nullable) — Arizona county to filter by (one of: "Apache", "Cochise", "Coconino", "Gila", "Graham", "Greenlee", "La Paz", "Maricopa", "Mohave", "Navajo", "Pima", "Pinal", "Santa Cruz", "Yavapai", "Yuma")
- `start_date` (string, nullable) — Earliest approval date, YYYY-MM-DD (examples: "2026-07-01")
- `end_date` (string, nullable) — Latest approval date, YYYY-MM-DD (examples: "2026-07-10")

## Response

### 200 — Successful Response

- `@type` (string) (default: "ArizonaNotice")
- `name` (string, required)
- `entity_number` (string, nullable)
- `county` (string, nullable)
- `legal_form` (string, nullable)
- `filing_type` (string, nullable)
- `filing_number` (string, nullable)
- `work_order_id` (integer, nullable)
- `start_date` (string, nullable)
- `documents` (array) (default: [])
  - `@type` (string) (default: "ArizonaNoticeDocument")
  - `id` (integer, nullable)
  - `guid` (string, nullable)
  - `file_name` (string, nullable)
  - `source` (string, nullable)
  - `created_at` (string, nullable)

## Errors

### 422 — Validation Error

The request body did not validate

What to do: Check the fields against this schema. A URN with the wrong prefix is the most common cause.

- `detail` (array)
  - `loc` (array, required)
  - `msg` (string, required)
  - `type` (string, required)
  - `input` (any)
  - `ctx` (object)

### 408

The request ran past its time limit

What to do: Raise `timeout` in the request body, up to the maximum this endpoint documents. Lowering `count` or turning off the `with_*` flags also helps, because less work finishes sooner.

### 412

The entity was not found, or a precondition failed

What to do: Retrying will not help: either the entity does not exist, or the input points at a different one.

### 429

Too many requests: a rate limit or a usage window is exhausted

What to do: When the response carries an X-Retry-After header, wait that many seconds and retry: the same number is in the body as `detail.retry_after`, and the limit clears once that window passes. The message in the body names the limit that was hit.

### 500

Something broke on our side

What to do: Retrying will not help. If it keeps happening, send us the X-Request-ID from the response headers.

### 529

Rate limit reached, or the endpoint is overloaded

What to do: Wait at least 30 seconds, then retry.

## Response envelope

Success: Array of objects (may be empty if no results)

Error: Error may coexist with partial results if it occurs mid-execution. Check X-Error header and status code.

Every response carries these headers:

- `X-Error` — Error message text (present only on error)
- `X-Request-ID` — Unique request identifier
- `X-Execution-Time` — Execution time in seconds
- `X-Result-Count` — How many records the body carries. 0 means an empty result, which is a normal answer and not by itself an error. A non-zero count can come back together with X-Error when the failure happened partway through — read this header and X-Error independently.
- `X-Total-Available-Results` — How many records exist for this query, when the endpoint can say. On a `dry_run` request this is the answer and the body is empty. It saturates: the endpoint's documented maximum means 'at least that many', any smaller number is exact.
- `X-Warning` — Present when the request body carried keys this endpoint does not document. They were ignored, so any filter you meant to apply through them did not apply. Check the spelling against this schema and retry.
- `X-Retry-After` — Seconds to wait before retrying. Present only on 429.

