# AutoScrape NJ UCC Lien Search API

> AutoScrape NJ UCC Lien Search API is a paid API for AI agents from autoscrape-api-seven.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Search New Jersey UCC (Uniform Commercial Code) lien filings by organization name, individual debtor name, or filing number via the NJ Portal.

## Facts

- Endpoint: GET https://autoscrape-api-seven.vercel.app/x402/v1/nj-ucc-lien-search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autoscrape-nj-ucc-lien-search-api-a5d94b98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S5zPPkCSLRwj8amoMHSn3

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 autoscrape-nj-ucc-lien-search-api-a5d94b98
```

Example prompt: Search the New Jersey UCC lien database for any active filings against 'Acme Corp' — organization search type, and include lapsed filings too.

## When to prefer this

Use this endpoint when you need to programmatically search New Jersey UCC lien filings without setting up credentials or direct portal access. Ideal for due diligence workflows, credit risk assessments, or legal research requiring NJ-specific UCC lien data. Prefer this over manual portal searches when automating checks on multiple entities or embedding lien lookups in agent pipelines. Note the 5-result cap per request means it is best suited for targeted lookups rather than bulk data collection.

## Known failure modes

- No results found for the query — returns count 0 and empty results array
- Query too broad returning more than the 5-result cap — agent should refine search terms
- Invalid or non-existent filing number — returns empty results
- Rate limiting or payment failure via x402 — endpoint returns 402 Payment Required
- NJ Portal unavailable or scraping blocked — upstream service error
- Missing required 'searchType' parameter causing malformed query

## How this service works

No-key evaluation APIs for public data and utilities: business filings, permits, bankruptcy dockets, NPI providers, HTTP status checks, sitemap URL extraction, SEC EDGAR, IRS 990, WHOIS, and validation. Paid x402 access is live.

## Output

Returns a JSON object with a count of results and an array of matching UCC lien records, each containing the debtor name, filing number, filing status (e.g. Active or Lapsed), the state (NJ), and the source URL from the NJ Portal. Also includes a setupStatus field indicating whether records were found.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "state": "NJ",
    "sourceUrl": "https://www.njportal.com/ucc/search/noncertifiedsearch.aspx",
    "debtorName": "JPMORGAN CHASE BANK, N.A.",
    "filingNumber": "57755276",
    "filingStatus": "Active"
   }
  ],
  "setupStatus": "found"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autoscrape-nj-ucc-lien-search-api-a5d94b98/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autoscrape-api-seven.vercel.app](https://www.zero.xyz/host/autoscrape-api-seven.vercel.app/llms.txt)
