# Ingest0r Address Search API

> Ingest0r Address Search API is a paid API for AI agents from api.ingest0r.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Search for property or address records by street address query string, returning matching records for a given address or partial address.

## Facts

- Endpoint: GET https://api.ingest0r.com/v1/search/:q
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ingest0r-address-search-api-5166bf50
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7Gjl_hom7Nphd3rqiJ_4z

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 ingest0r-address-search-api-5166bf50
```

Example prompt: Can you search for property records matching the address '1 E 113th St' in Chicago?

## When to prefer this

Use this endpoint when you need to search for property or address records in Cook County (Chicago), Illinois by a street address string. It is ideal for real estate research, property lookups, or resolving partial addresses to full property records. Prefer this over general geocoding APIs when you specifically need Cook County property-level data accessible via pay-per-call micropayment.

## Known failure modes

- Query string shorter than 4 characters may be rejected or return no results
- No matching addresses found for the given query
- Payment failure due to insufficient USDC balance (x402 protocol)
- Invalid or malformed address string returns empty result set
- Rate limiting or authentication errors if payment header is missing

## Output

A list of matching address or property records corresponding to the submitted street address or partial address query, likely including parcel details, owner info, or location data relevant to Cook County properties.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Street address or partial (≥4 chars), e.g. '1 E 113th St'"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "query": {
       "type": "string"
      },
      "matches": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "pin": {
          "type": "string"
         },
         "score": {
          "type": "number",
          "description": "0–1 address similarity"
         },
         "prop_zip": {
          "type": "string"
         },
         "prop_city": {
          "type": "string"
         },
         "prop_address": {
          "type": "string"
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ingest0r-address-search-api-5166bf50/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.ingest0r.com](https://www.zero.xyz/host/api.ingest0r.com/llms.txt)
