# Memphis Daily News — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access foreclosure listings and public notices from Memphis Daily News by date, retrieve detailed information about individual foreclosure cases, and track public records counts across categories such as bankruptcies, permits, court filings, and licenses. Browse available notice dates and retrieve comprehensive foreclosure and public records data published on the site.

**Category:** Government & Public Data | **Website:** [memphisdailynews.com/](https://memphisdailynews.com/) | **Docs:** [parse.bot/marketplace/f2cdcea8-6633-4cba-bc4b-36ae3667fb53/memphisdailynews-com-api](https://parse.bot/marketplace/f2cdcea8-6633-4cba-bc4b-36ae3667fb53/memphisdailynews-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-memphisdailynews-com-api-f2cdcea8/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_available_notice_dates

Retrieves the list of available publication dates for notices shown in the sidebar navigation. Returns dates for the most recent business days with published notices. Each date includes a display string, ISO date, and direct URL.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-memphisdailynews-com-api-f2cdcea8/get_available_notice_dates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_foreclosure_notice_detail

Fetches the full detail of a single foreclosure notice using its TDN ID and publication date. Returns structured fields including borrower, property address, trustee information, attorney, instrument number, auction date, and the full notice text.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `pub_date` | string | Yes | Publication date in M/D/YYYY format (e.g. 6/10/2026). Use the publication_date value from get_foreclosure_notices_by_date results. |
| `tdn_id` | string | Yes | The TDN ID of the foreclosure notice (e.g. FD114900). Obtained from get_foreclosure_notices_by_date results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-memphisdailynews-com-api-f2cdcea8/get_foreclosure_notice_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"pub_date":"<string>","tdn_id":"<string>"}'
```

### get_foreclosure_notices_by_date

Fetches the list of all foreclosure notices published on a given date, along with summary counts for all notice categories on that date. Each notice includes TDN ID, borrower name, property address, auction date, and first notice date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | Yes | Publication date in ISO format YYYY-MM-DD (e.g. 2026-06-10). Use iso_date values from get_available_notice_dates to find valid dates. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-memphisdailynews-com-api-f2cdcea8/get_foreclosure_notices_by_date \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>"}'
```

### get_public_records_counts_by_date

Fetches the Public Records summary counts for a given date across various categories including Bankruptcies, Permits, Court Filings, Licenses, and more. Returns a mapping of category names to their record counts.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | Yes | Publication date in ISO format YYYY-MM-DD (e.g. 2026-06-10). Use iso_date values from get_available_notice_dates to find valid dates. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-memphisdailynews-com-api-f2cdcea8/get_public_records_counts_by_date \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>"}'
```
