# Dappier Real-Time Search (dm_01jagy9nqaeer9hxx8z1sk1jx6)

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

Search and retrieve real-time articles, news, and financial insights using Dappier's AI-powered data model dm_01jagy9nqaeer9hxx8z1sk1jx6, with flexible ranking strategies.

## Facts

- Endpoint: POST https://agents.dappier.com/zeroclick/v2/search?data_model_id=dm_01jagy9nqaeer9hxx8z1sk1jx6
- 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-01jagy9nqaeer9hxx8z1sk1jx6-c0586457
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uuiqy5xNhAyaRuBo8dkch

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-01jagy9nqaeer9hxx8z1sk1jx6-c0586457 -d '<json body>'
```

Example prompt: Search Dappier for the 5 most recent articles about Tesla earnings using semantic ranking, and include results from techcrunch.com if possible.

## When to prefer this

Choose this endpoint when you need real-time, AI-ranked article and news search with flexible ranking strategies (recency, semantic, trending), especially when you want to filter by a specific source domain or retrieve financial/market news. Prefer this over generic web search when you need structured article metadata (author, pubdate, image) rather than raw web content.

## Known failure modes

- Missing required 'query' field returns a validation error
- Invalid search_algorithm enum value causes a bad request error
- No results found for highly niche or very recent queries returns an empty results array
- Rate limiting or payment issues may cause request rejection
- ref domain with no indexed content returns fewer than num_articles_ref results

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

## Output

An array of article objects, each containing the URL, title, author, publication date, site domain, image URL, and a preview snippet of the article content, drawn from Dappier's real-time AI data model.

## 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-01jagy9nqaeer9hxx8z1sk1jx6-c0586457/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)
