Available Models
Dappier offers two categories of models that can be used within bolt.new applications:- Real-Time Search (AI Models): Perform live web and financial queries using natural language.
- AI Recommendations (Data Models): Retrieve curated, vertical-specific content for domains like pets, lifestyle, and news.
🔎 Real-Time Search (AI Models)
| Model Name | Description | ai_model_id | Pricing |
|---|---|---|---|
| Dappier Search | Real-time web search across the latest news, weather, travel, events, and more. | am_01j06ytn18ejftedz6dyhz2b15 | Free |
| Stock Market Data | Live stock prices, earnings reports, financial news, and sentiment-tagged market insights. | am_01j749h8pbf7ns8r1bq9s2evrh | $0.007 / query |
🤖 AI Recommendations (Data Models)
| Model Name | Description | data_model_id | Pricing |
|---|---|---|---|
| Sports News | Real-time sports headlines from Sportsnaut, LAFB Network, Ringside Intel, and more. | dm_01j0pb465keqmatq9k83dthx34 | $0.50 / query |
| Lifestyle News | Pop culture, wellness, and trend articles from The Mix, Snipdaily, Nerdable, and Familyproof. | dm_01j0q82s4bfjmsqkhs3ywm3x6y | $0.50 / query |
| iHeartDogs AI | Dog training, grooming, health, and lifestyle content from iHeartDogs. | dm_01j1sz8t3qe6v9g8ad102kvmqn | $0.01 / query |
| iHeartCats AI | Cat care articles on behavior, health, and daily enrichment from iHeartCats. | dm_01j1sza0h7ekhaecys2p3y0vmj | $0.01 / query |
| GreenMonster | Sustainable living tips and eco-conscious guides from One Green Planet. | dm_01j5xy9w5sf49bm6b1prm80m27 | $0.01 / query |
| WISH-TV AI | Local news, politics, multicultural content, and entertainment from the WISH-TV newsroom. | dm_01jagy9nqaeer9hxx8z1sk1jx6 | $0.01 / query |
👉 To learn more about how these models work and how to query them, visit the official API reference:
https://docs.dappier.com/api-reference
Installation
Install the SDK using pip:Initialization
Set up your API key and initialize the SDK:Python
<YOUR_API_KEY> with your actual API key, which you can get from your Dappier Account.
Real-Time Search
Perform a real-time search for live data:Python
Parameters (Real Time Search)
query (string):
- A natural language query representing the information being searched for in real time.
ai_model_id (string):
- The ID of the AI model to be used for real-time data search.
- This must be a valid model ID from the Dappier Marketplace.
AI Recommendations
Retrieve AI-powered content recommendations based on a query:Python
Parameters (AI Recommendations)
query (string):
- A natural language query or URL.
data_model_id (string):
- The ID of the data model to be used for recommendations.
- This must be a valid model ID from the Dappier Marketplace.
similarity_top_k (integer):
- The number of articles to return (default is 9).
ref (string):
- The domain of the site from which the recommendations should come.
- Example:
techcrunch.com.
num_articles_ref (integer):
- Specifies how many articles should be guaranteed to match the domain specified in
ref. - Use this to ensure a set number of articles from the desired domain appear in the results.
search_algorithm (string):
- Options:
"most_recent"or"semantic". "semantic"(default): Contextual matching of the query to retrieve articles."most_recent": Retrieves articles sorted by the most recent publication date.
Async Functionality
Dappier SDK supports asynchronous operations for better performance.Async Real Time Search:
Python
Parameters (Real Time Search)
query (string):
- A natural language query representing the information being searched for in real time.
ai_model_id (string):
- The ID of the AI model to be used for real-time data search.
- This must be a valid model ID from the Dappier Marketplace.
Async AI Recommendations:
Python
Parameters (AI Recommendations)
query (string):
- A natural language query or URL.
data_model_id (string):
- The ID of the data model to be used for recommendations.
- This must be a valid model ID from the Dappier Marketplace.
similarity_top_k (integer):
- The number of articles to return (default is 9).
ref (string):
- The domain of the site from which the recommendations should come.
- Example:
techcrunch.com.
num_articles_ref (integer):
- Specifies how many articles should be guaranteed to match the domain specified in
ref. - Use this to ensure a set number of articles from the desired domain appear in the results.
search_algorithm (string):
- Options:
"most_recent"or"semantic". "semantic"(default): Contextual matching of the query to retrieve articles."most_recent": Retrieves articles sorted by the most recent publication date.

