# Ohio Foreclosure Auction Calendar API

> Ohio Foreclosure Auction Calendar API is a paid API for AI agents from hermes-storefront.onrender.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns upcoming sheriff-sale auction listings for Ohio metros (Akron, Youngstown) with property address, appraised value, opening-bid floor, case number, parties, and source court-journal URL.

## Facts

- Endpoint: GET https://hermes-storefront.onrender.com/api/auctions
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ohio-foreclosure-auction-calendar-api-4c52ccd3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xvtHvvhXEWKL1J-FyMNId

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 ohio-foreclosure-auction-calendar-api-4c52ccd3
```

Example prompt: Pull me all the upcoming sheriff sales in Summit County Ohio from now through the end of next month where the appraised value is at least $80,000 — I need the address, opening bid, case number, and court journal link for each one.

## When to prefer this

Use this endpoint when you need structured, typed foreclosure auction data specifically for Ohio metros (Akron, Youngstown area) with court-validated sourcing. Prefer this over web scraping when you need case numbers, opening bids, and party information in a reliable schema. Ideal for buy-side investors, wholesalers, and flippers doing pre-auction due diligence or building auction calendars.

## Known failure modes

- No matching auctions returns empty list (free, no charge)
- Invalid date format returns 400 error
- Unsupported county name returns 400 or empty result
- Service unavailable on Render cold start (503, retry after a few seconds)
- min_appraised out of range returns 400 or empty result

## How this service works

Foreclosure auction calendar for Ohio metros (Akron, Youngstown): upcoming sheriff-sale dates with property address, appraised value, opening-bid floor, case number, parties, and the official court-journal source URL for every row. Buy-side timing intelligence for auction investors, wholesalers, and flippers. Optional filters: county, from_date, to_date, min_appraised. Every field typed; a query that matches nothing returns free — you never pay for a blank.

## Output

A list of foreclosure auction records each containing: property street address, appraised value, opening-bid floor price, scheduled sheriff-sale date, case number, party names (plaintiff/defendant), and the official Ohio court-journal source URL. Returns an empty list (not an error) if no auctions match the filters.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ohio-foreclosure-auction-calendar-api-4c52ccd3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hermes-storefront.onrender.com](https://www.zero.xyz/host/hermes-storefront.onrender.com/llms.txt)
