Discover/Memphis Daily News API
live

Memphis Daily News APImemphisdailynews.com

Access Memphis Daily News foreclosure notices, public records counts, and available notice dates via 4 structured API endpoints covering TDN details, attorney info, and more.

Endpoint health
verified 3d ago
get_public_records_counts_by_date
get_available_notice_dates
get_foreclosure_notices_by_date
get_foreclosure_notice_detail
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Memphis Daily News API?

The Memphis Daily News API provides 4 endpoints for retrieving foreclosure notices and public records data published on memphisdailynews.com. Use get_foreclosure_notices_by_date to pull every foreclosure listing for a specific date along with cross-category notice counts, or use get_foreclosure_notice_detail to fetch full notice text, attorney name, borrower, instrument number, and property address for a single TDN record.

Try it
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.
api.parse.bot/scraper/df3f8e18-6fb4-46f6-8529-7edb5e28cdaf/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/df3f8e18-6fb4-46f6-8529-7edb5e28cdaf/get_foreclosure_notices_by_date?date=2026-06-10' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace memphisdailynews-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Memphis Daily News SDK — bounded, re-runnable; every call capped."""
from parse_apis.memphis_daily_news_api import (
    MemphisDailyNews,
    NoticeNotFound,
)

client = MemphisDailyNews()

# List available publication dates (single-page, cap to 5)
for date_obj in client.noticedates.list(limit=5):
    print(date_obj.display_date, date_obj.iso_date)

# Drill into the most recent date's foreclosure notices
notice = client.foreclosurenoticesummaries.list_by_date(
    date="2026-06-10", limit=1
).first()

if notice:
    print(notice.borrower, notice.address, notice.auction_date)

    # Navigate from summary to full detail via sub-resource op
    detail = notice.details()
    print(detail.title, detail.tdn_no, detail.address_line1, detail.address_line2)
    print(detail.notice_text[:120])

# Fetch public records counts for a date
try:
    counts = client.publicrecordscountses.get(date="2026-06-10")
    print(counts.date, counts.record_counts)
except NoticeNotFound as exc:
    print(f"No records found: {exc}")

print("exercised: noticedates.list / foreclosurenoticesummaries.list_by_date / details / publicrecordscountses.get")
All endpoints · 4 totalmissing one? ·

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.

Input
ParamTypeDescription
daterequiredstringPublication 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.
Response
{
  "type": "object",
  "fields": {
    "date": "string, the requested date in YYYY-MM-DD format",
    "counts": "object with keys foreclosure_notices, court_notices, bid_notices, misc_notices mapped to integer counts",
    "notices": "array of foreclosure notice summaries, each with tdn_id, publication_date, borrower, address, auction_date, first_notice_date"
  },
  "sample": {
    "data": {
      "date": "2026-06-10",
      "counts": {
        "bid_notices": 10,
        "misc_notices": 10,
        "court_notices": 33,
        "foreclosure_notices": 24
      },
      "notices": [
        {
          "tdn_id": "FD114900",
          "address": "123 Main St, Springfield, IL 62704",
          "borrower": "John Doe",
          "auction_date": "7/9/2026",
          "publication_date": "6/10/2026",
          "first_notice_date": "6/10/2026"
        }
      ]
    },
    "status": "success"
  }
}

About the Memphis Daily News API

Endpoints and Data Coverage

The API covers four distinct operations. get_available_notice_dates returns the most recent business days for which notices exist, giving you iso_date and display_date values you can feed directly into the other endpoints. get_foreclosure_notices_by_date accepts a date in YYYY-MM-DD format and returns a counts object summarizing foreclosure_notices, court_notices, bid_notices, and misc_notices for that date, alongside an array of notice summaries each containing tdn_id, borrower, address, auction_date, and first_notice_date.

Foreclosure Detail Fields

get_foreclosure_notice_detail takes a tdn_id (e.g. FD114507) and a pub_date in M/D/YYYY format — both obtainable from the list endpoint — and returns the full notice record. Response fields include notice_text (the complete published text), attorney, original_trustee, trust_date, instrument_no, address_line1, and address_line2. This is the endpoint to use when you need the legal text of a specific filing or want to extract structured party information.

Public Records Summary Counts

get_public_records_counts_by_date accepts the same YYYY-MM-DD date format and returns a record_counts object mapping category names — including Bankruptcies, Permits: Building, Court Filings: Circuit, and Licenses — to integer counts. This endpoint is suited for tracking filing volume trends over time rather than retrieving individual records.

Reliability & maintenanceVerified

The Memphis Daily News API is a managed, monitored endpoint for memphisdailynews.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when memphisdailynews.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official memphisdailynews.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor daily foreclosure filings in the Memphis metro area by querying get_foreclosure_notices_by_date for each available date.
  • Build a foreclosure auction calendar by extracting auction_date and address fields from notice summaries.
  • Look up attorney and trustee names on specific TDN filings using get_foreclosure_notice_detail.
  • Track week-over-week bankruptcy filing volume using get_public_records_counts_by_date and the Bankruptcies category.
  • Identify properties entering foreclosure for the first time by comparing first_notice_date against the current publication date.
  • Aggregate permit and court filing trends across multiple dates to support local market research.
  • Cross-reference instrument_no from notice details against county property records for due-diligence workflows.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Memphis Daily News offer an official developer API?+
Memphis Daily News does not publish an official developer API or documented data feed for foreclosure notices or public records.
What does `get_foreclosure_notices_by_date` return beyond the foreclosure list?+
In addition to the notices array, the endpoint returns a counts object with integer counts for all four notice categories on that date: foreclosure_notices, court_notices, bid_notices, and misc_notices. This lets you gauge the overall volume of published notices without making additional requests.
Does the API return the full text of court notices, bid notices, or miscellaneous notices?+
Not currently. Full notice text via get_foreclosure_notice_detail is available only for foreclosure (TDN) records. The other categories — court, bid, and misc — appear only as summary counts. You can fork this API on Parse and revise it to add a detail endpoint for those notice types.
How far back does historical notice data go?+
get_available_notice_dates returns dates for the most recent business days with published notices — it does not expose a full historical archive. If you need data from earlier dates, you can fork this API on Parse and revise it to accept a broader date range or paginate further back into the site's notice history.
What format does `pub_date` need to be in for `get_foreclosure_notice_detail`, and where do I get the correct value?+
pub_date must be in M/D/YYYY format (e.g. 5/15/2026), not the ISO format used by other endpoints. The correct value is the publication_date field returned for each notice in the get_foreclosure_notices_by_date response — use it directly to avoid format mismatches.
Page content last updated . Spec covers 4 endpoints from memphisdailynews.com.
Related APIs in Government PublicSee all →
publicaccess.hillsclerk.com API
Search and retrieve court records, foreclosure judgments, and case details from Hillsborough County's court system by case number, date range, or court type. Access comprehensive legal documentation including foreclosure judgment information to research pending cases and court proceedings.
sneakernews.com API
Browse the latest sneaker news, search articles by keyword, and look up upcoming release dates — including pricing, images, and retailer links. Also surfaces per-page ad slot inventory and density metrics for programmatic and publisher analysis.
sarasotaclerk.com API
Search and retrieve official land and court records from Sarasota County including foreclosures and Lis Pendens documents by name, date, or document type. Access detailed record information with full pagination support to find the specific legal documents you need.
prnewswire.com API
Access the latest press releases, earnings announcements, and news from PR Newswire across specific categories and organizations, with options to search by keywords or dates. Filter releases by industry, company newsrooms, and subscribe to RSS feeds for real-time updates on corporate news and financial disclosures.
oscn.net API
Search Oklahoma State Court Network records across 80+ counties to find cases, review detailed docket information, and track daily court filings. Quickly look up case details by county and district court type to stay informed on legal proceedings and filing activity.
pmgnotes.com API
Access detailed grading population data for banknotes across different countries, series, and denominations, plus stay updated with the latest news from PMGnotes.com. Search and retrieve comprehensive census information to track banknote rarity, grades, and collecting trends.
globenewswire.com API
globenewswire.com API
afdb.org API
Access comprehensive information about African development initiatives, including country profiles, infrastructure projects, procurement opportunities, publications, and news from the African Development Bank. Search and retrieve detailed data on ongoing projects, tenders, and resources to track development activities across Africa.