# Dappier Real-Time Search (dm_01j1sza0h7ekhaecys2p3y0vmj)

> Dappier Real-Time Search (dm_01j1sza0h7ekhaecys2p3y0vmj) is a free API for AI agents from agents.dappier.com, Free, status unknown (last checked 2026-09-15).

Searches a specific Dappier data model (dm_01j1sza0h7ekhaecys2p3y0vmj) for real-time articles, news, and web content using natural language queries with configurable ranking strategies.

## Facts

- Endpoint: POST https://agents.dappier.com/zeroclick/v2/search?data_model_id=dm_01j1sza0h7ekhaecys2p3y0vmj
- Price: Free
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dappier-real-time-search-dm-01j1sza0h7ekhaecys2p3y0vmj-eeaf3eef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4AcP_HNFOBNXZp-r0wy6H

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-01j1sza0h7ekhaecys2p3y0vmj-eeaf3eef -d '<json body>'
```

Example prompt: Search Dappier for the 5 most recent articles about Federal Reserve interest rate decisions, using the most_recent ranking strategy.

## When to prefer this

Choose this endpoint when you need real-time, ranked article search scoped to the dm_01j1sza0h7ekhaecys2p3y0vmj Dappier data model, especially when you want fine-grained control over ranking strategy (most_recent, semantic, trending) or need to prioritize results from a specific domain. Prefer this over generic web search when you want structured article metadata (author, pubdate, preview) rather than raw web snippets.

## Known failure modes

- Invalid or missing query field returns a validation error
- Unsupported search_algorithm enum value causes a 400 bad request
- No results found for niche queries returns an empty results array
- Rate limiting or payment issues may result in 402 or 429 errors
- The ref domain may yield fewer articles than num_articles_ref if the domain has sparse coverage in the data model

## 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_01j1sza0h7ekhaecys2p3y0vmj.

## Output

Returns an array of article objects, each containing the URL, site name, site domain, title, author, publication date, image URL, and a preview of the article content — ready for an agent to summarize, filter, or present to the user.

## 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-01j1sza0h7ekhaecys2p3y0vmj-eeaf3eef/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)
