search_content_catalog
Search registered Marketplace content metadata by topic.
ContentDividend exposes public endpoints for discovering Marketplace publishers, searching registered content metadata, browsing categories, inspecting publisher inventories, reading live Network totals, and starting structured licensing inquiries.
ContentDividend now exposes a stateless, read-only MCP endpoint using protocol version 2026-07-28. The first MCP release intentionally exposes discovery tools only: agents can search and inspect publisher metadata, but cannot autonomously submit a licensing request or send a private message.
https://app.contentdividend.com/mcp
Transport: stateless HTTP POST · Protocol: 2026-07-28 · Capability: tools · Write actions: disabled
Search registered Marketplace content metadata by topic.
List current content categories represented by Marketplace publishers.
Inspect one category and the publishers participating in it.
List publishers that voluntarily accept licensing inquiries.
Retrieve one publisher's public licensing and discovery record.
Inspect public registered-page metadata for one Marketplace publisher.
Read current aggregate ContentDividend Network totals.
These public discovery endpoints do not require a publisher dashboard login. They expose public Marketplace and registry metadata—not private account information or stored raw publisher content.
One machine-readable map of ContentDividend's current public discovery surfaces and live Network totals.
/v1/public/ai-discovery
curl "https://app.contentdividend.com/v1/public/ai-discovery"
Search registered public-page metadata from publishers that have voluntarily joined the Marketplace.
/v1/public/content-catalog/search?q=TOPIC&limit=20
curl "https://app.contentdividend.com/v1/public/content-catalog/search?q=lighting&limit=20"
Retrieve categories currently represented by active public Marketplace publishers.
/v1/public/content-catalog/categories
curl "https://app.contentdividend.com/v1/public/content-catalog/categories"
Retrieve publishers and registered-page totals for one live Marketplace category.
/v1/public/content-catalog/category/{category_slug}
curl "https://app.contentdividend.com/v1/public/content-catalog/category/education"
Retrieve public Marketplace publisher records for publishers open to receiving licensing inquiries.
/v1/licensing-marketplace/publishers
curl "https://app.contentdividend.com/v1/licensing-marketplace/publishers"
Retrieve public licensing-discovery metadata for one Marketplace publisher.
/v1/licensing-marketplace/publishers/{site_id}
curl "https://app.contentdividend.com/v1/licensing-marketplace/publishers/SITE_ID"
Inspect registered public-page titles, URLs, content terms, coverage and public licensing metadata for one Marketplace publisher.
/v1/licensing-marketplace/publishers/{site_id}/content-inventory?q=TOPIC&limit=100&offset=0
curl "https://app.contentdividend.com/v1/licensing-marketplace/publishers/SITE_ID/content-inventory?q=history&limit=100"
Paginate through registered-page metadata across Marketplace publishers. Designed for discovery pipelines without exposing stored raw publisher content.
/v1/public/licensing-feed?q=TOPIC&limit=100&offset=0
curl "https://app.contentdividend.com/v1/public/licensing-feed?q=education&limit=100&offset=0"
Stream-friendly newline-delimited JSON for systems that prefer one discovery record per line.
/v1/public/licensing-feed.ndjson?q=TOPIC&limit=100&offset=0
curl "https://app.contentdividend.com/v1/public/licensing-feed.ndjson?q=education&limit=100&offset=0"
Retrieve buyer-opted-in content acquisition needs without exposing buyer email, private notes, saved searches or internal pipeline data.
/v1/public/buyer-demand?q=TOPIC
curl "https://app.contentdividend.com/v1/public/buyer-demand?q=education"
Retrieve current ContentDividend publisher, website, registered-page, licensing and category totals.
/v1/public/network-stats
curl "https://app.contentdividend.com/v1/public/network-stats"
After identifying a relevant publisher, a requester can use the public licensing-request flow. Submitting a request creates an inquiry; it does not itself grant any content rights.
Start a structured licensing inquiry tied to a Marketplace publisher. Required fields and anti-spam validation are enforced by the application.
/v1/public/licensing-request
curl -X POST "https://app.contentdividend.com/v1/public/licensing-request" \
-H "Content-Type: application/json" \
-d '{
"site_id": "SITE_ID",
"requester_name": "Jane Buyer",
"requester_email": "jane@example.ai",
"company": "Example AI",
"intended_use": "RAG / grounding",
"requested_scope": "Selected registered pages",
"budget_range": "Contact us",
"requested_timeline": "30-60 days",
"message": "We would like to discuss licensing selected publisher content."
}'Read AI/developer discovery metadata.
Search the Content Catalog by topic.
Use live categories and publisher metadata.
Review the relevant publisher inventory.
Submit a structured licensing inquiry.
Agree appropriate terms with the rights holder.
Public endpoints are designed to expose Marketplace, registry, category, inventory and licensing-discovery metadata. They are not intended to expose private publisher account information.
API access, search results, public URLs, Marketplace listings and inventories do not grant rights to copy, scrape, train on, reproduce, summarize, distribute or commercially exploit publisher content.
The public discovery APIs return metadata and public URLs. They do not provide a bulk endpoint for downloading stored raw publisher content.
Public discovery endpoints currently support the workflows documented here. ContentDividend may add authentication, quotas, commercial API plans or additional developer controls as the network grows.
The Developer Manifest lists current public endpoints, methods, parameters and intended uses in JSON.
https://app.contentdividend.com/v1/public/developer-manifest