# Dappier Publisher Article Search & Recommendations

> Dappier Publisher Article Search & Recommendations is a paid API for AI agents from agents.dappier.com, paid per call via MPP, price unknown, status unknown (last checked 2026-09-15, last successful call 2026-09-11).

Searches and ranks articles from curated publisher data models (news, finance, parenting, lifestyle, sports, etc.) using natural language queries and configurable ranking algorithms.

## Facts

- Endpoint: POST https://agents.dappier.com/zeroclick/v2/search
- Price: price unknown
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-09-11
- Success rate: 45% of calls made through Zero
- Rating: 3.3 / 5 from 1 review
- Activations on Zero: 11
- Provider: agents.dappier.com
- Website: https://agents.dappier.com
- Canonical page: https://www.zero.xyz/c/agents-dappier-com-dappier-publisher-article-search-recommendations-6a612602
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XobhwaYQQnYikZ6gn49OZ

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 agents-dappier-com-dappier-publisher-article-search-recommendations-6a612602 -d '<json body>'
```

Example prompt: Search Dappier's sports news publisher model (dm_01j0pb465keqmatq9k83dthx34) for 'NBA playoff highlights' using semantic ranking and return the top 5 articles.

## When to prefer this

Choose this endpoint when you need curated, publisher-specific article content from known media brands (e.g. Benzinga for finance, CafeMom for parenting, Sportsnaut for sports) with flexible ranking — most recent, semantic similarity, or trending. Prefer this over generic web search when you want structured article metadata (author, date, image, preview) from vetted publishers rather than raw web results.

## Known failure modes

- Invalid or missing data_model_id results in no results or an error response
- Empty query string may return unexpected or irrelevant results
- Requesting more results than available in the model returns a partial or empty array
- Invalid search_algorithm enum value may cause a validation error
- Network timeout or upstream Dappier service unavailability returns a 5xx error
- Requesting a page beyond available results returns an empty results array

## How this service works

Returns articles from the publisher data model selected with the data_model_id query parameter. The search_algorithm field controls ranking: most_recent (default), semantic, most_recent_semantic, or trending. Available models:

dm_01jhtt138wf1b9j8jwswye99y5 (9 and 10 News): Local news, weather, sports, and community stories for Northern Michigan from 9 and 10 News.
dm_01jmxn1a9tem8bq1nzbzjck8c4 (Benzinga): Financial news and stock coverage from Benzinga.com.
dm_01jketafckeh0vxacqv1s295j0 (CafeMom Parenting): Parenting advice, family tips, and self-care articles from CafeMom, Mom.com, LittleThings, and MamasLatinas.
dm_01j0q82s4bfjmsqkhs3ywm3x6y (Lifestyle News): Lifestyle news and analysis from The Mix, Snipdaily, Nerdable, and Familyproof.
dm_01jh3jg18fe92v4az2h2163t8k (MethodShop): Tech guides, how-tos, and digital lifestyle articles from MethodShop.com.
dm_01j5xy9w5sf49bm6b1prm80m27 (One Green Planet): Articles on plant-based diets, sustainability, animal rights, food, and wellness from One Green Planet.
dm_01j0pb465keqmatq9k83dthx34 (Sports News): Sports news and updates from Sportsnaut, Forever Blueshirts, Minnesota Sports Fan, LAFB Network, Bounding Into Sports, and Ringside Intel.
dm_01jagy9nqaeer9hxx8z1sk1jx6 (WISH-TV): Indiana news, sports scores, local events, and broadcast clips from WISH-TV.
dm_01j1sza0h7ekhaecys2p3y0vmj (iHeartCats): Cat health, behavior, and lifestyle articles from iHeartCats.com.
dm_01j1sz8t3qe6v9g8ad102kvmqn (iHeartDogs): Dog health, behavior, grooming, and ownership articles from iHeartDogs.com.

## Output

An array of article objects, each containing the article title, URL, author name, publication date, site name, site domain, image URL, and a preview content snippet — ready to be surfaced directly to a user or processed further by an agent.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "ref": {
   "type": "string",
   "description": "Optional site domain to prioritize articles from, for example techcrunch.com."
  },
  "page": {
   "type": "integer",
   "description": "Results page."
  },
  "query": {
   "type": "string",
   "example": "latest sports news",
   "description": "A natural language query for articles from the selected data model."
  },
  "num_results": {
   "type": "integer",
   "description": "Number of articles to return."
  },
  "num_articles_ref": {
   "type": "integer",
   "description": "Minimum number of articles from the ref domain when ref is set."
  },
  "search_algorithm": {
   "enum": [
    "most_recent",
    "semantic",
    "most_recent_semantic",
    "trending"
   ],
   "type": "string",
   "default": "most_recent",
   "description": "Ranking strategy for results."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "results"
 ],
 "properties": {
  "results": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "url": {
      "type": "string"
     },
     "site": {
      "type": "string"
     },
     "title": {
      "type": "string"
     },
     "author": {
      "type": "string"
     },
     "pubdate": {
      "type": "string"
     },
     "image_url": {
      "type": "string"
     },
     "site_domain": {
      "type": "string"
     },
     "preview_content": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-dappier-com-dappier-publisher-article-search-recommendations-6a612602/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.dappier.com](https://www.zero.xyz/host/agents.dappier.com/llms.txt)
