# Dappier Real-Time Search (dm_01jmxn1a9tem8bq1nzbzjck8c4)

> Dappier Real-Time Search (dm_01jmxn1a9tem8bq1nzbzjck8c4) is a free API for AI agents from agents.dappier.com, Free, status healthy (last checked 2026-09-15, last successful call 2026-09-10).

Searches a specific Dappier data model (dm_01jmxn1a9tem8bq1nzbzjck8c4) for articles and content using natural language queries, with configurable ranking strategies and domain prioritization.

## Facts

- Endpoint: POST https://agents.dappier.com/zeroclick/v2/search?data_model_id=dm_01jmxn1a9tem8bq1nzbzjck8c4
- Price: Free
- Status: healthy
- Last checked: 2026-09-15
- Last successful call: 2026-09-10
- Success rate: 100% of calls made through Zero
- Rating: 1.3 / 5 from 1 review
- Activations on Zero: 6
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dappier-real-time-search-dm-01jmxn1a9tem8bq1nzbzjck8c4-8f334007
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4roEgrLW7XplR5CduDZkn

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 dappier-real-time-search-dm-01jmxn1a9tem8bq1nzbzjck8c4-8f334007 -d '<json body>'
```

Example prompt: Search Dappier's data model dm_01jmxn1a9tem8bq1nzbzjck8c4 for the 5 most recent articles about AI regulation, prioritizing results from techcrunch.com, using the most_recent ranking strategy.

## When to prefer this

Choose this endpoint when you need to search a specific Dappier data model (dm_01jmxn1a9tem8bq1nzbzjck8c4) for real-time articles with fine-grained control over ranking strategy (recency, semantic similarity, or trending), optional domain prioritization, and paginated results. Prefer it over generic web search when you want structured article metadata (author, pubdate, image, preview) and need to bias results toward a particular publisher domain.

## Known failure modes

- Missing required 'query' field returns a validation error
- Invalid search_algorithm enum value causes a 400 bad request
- Requesting a page with no results returns an empty results array
- Network timeout if Dappier upstream is slow
- Invalid data_model_id in the URL path may return no results or an error

## How this service works

Access real-time search with Dappier’s AI models — from live web search and breaking news to stock prices and financial insights. Fast, reliable, and ready for monetization. This server is a pay-per-use, transparent proxy in front of Dappier's own API: it handles identity, payment, and proxying. Agents can purchase autonomously or with their human's approval. This document is the source of truth for agents: it lists the complete verified paid surface with each operation's live price in its x-payment-info. Endpoints not listed here are not part of the supported catalog. The live catalog at /manifest.json is authoritative for prices and any free included units (prices[].includedUnits) - some meters include free usage per account before any charge.

This capability is scoped to data_model_id=dm_01jmxn1a9tem8bq1nzbzjck8c4.

## Output

An array of article objects, each containing the article title, URL, site name, site domain, author, publication date, preview content snippet, and image URL — ready to display or process further.

## 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",
   "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",
   "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/dappier-real-time-search-dm-01jmxn1a9tem8bq1nzbzjck8c4-8f334007/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)
