# Dappier Real-Time Search – Finance & Stock Data Model (dm_01jketafckeh0vxacqv1s295j0)

> Dappier Real-Time Search – Finance & Stock Data Model (dm_01jketafckeh0vxacqv1s295j0) is a free API for AI agents from agents.dappier.com, Free, status unknown (last checked 2026-09-15).

Searches a curated financial and stock market data model using natural language queries, returning ranked real-time articles with titles, previews, authors, and publication dates.

## Facts

- Endpoint: POST https://agents.dappier.com/zeroclick/v2/search?data_model_id=dm_01jketafckeh0vxacqv1s295j0
- 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-finance-stock-data-model-dm-48d9b59d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i6cDy3kZ3AVgDurvSBaG8

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-finance-stock-data-model-dm-48d9b59d -d '<json body>'
```

Example prompt: Search for the latest articles about Tesla's stock performance and earnings using Dappier's financial data model — give me the 5 most recent results ranked by publication date.

## When to prefer this

Choose this endpoint when you need real-time, article-level search results specifically from a financial and stock market data model — particularly when you want structured metadata (author, pubdate, preview) per result, need to prioritize articles from a specific news domain via 'ref', or want flexible ranking strategies (semantic, trending, most recent). Prefer this over generic web search when finance-domain focus and article-level provenance matter.

## Known failure modes

- Missing required 'query' field returns a 400 validation error
- Invalid 'search_algorithm' enum value returns a schema validation error
- No matching articles for a very specific query returns an empty results array
- Unavailable data model ID returns a 404 or model-not-found error
- Network timeout on high-latency queries returns a 503 or timeout 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_01jketafckeh0vxacqv1s295j0.

## Output

An array of article objects, each containing the article title, URL, site name, site domain, author, publication date, image URL, and a preview snippet of the article content — all sourced from Dappier's financial and stock market 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-finance-stock-data-model-dm-48d9b59d/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)
