How it works
Valyu provides a single Search API that lets you search across Wiley’s finance content using natural language queries. You send a query, and the API returns relevant passages from Wiley finance papers and books. These results can then be fed directly into an AI model as context for generating answers, analysis, or reports.POST /v1/search). You do not need any other endpoints for searching Wiley content.
You can test this in four ways (examples below):
- No code - Use the Search API Playground in your browser
- Python - Use the Python SDK (
pip install valyu) - JavaScript - Use the TypeScript SDK (
npm install valyu-js) - Any language - Call the REST API directly with cURL or any HTTP client
Dataset overview
| Property | Value |
|---|---|
| Source IDs | wiley/wiley-finance-books, wiley/wiley-finance-papers |
| Size | 4,400+ books and 100,000+ papers across 43 journals |
| Coverage | Quantitative finance, economics, accounting, governance, ESG, management science |
| Data Type | Unstructured (full-text, figures, equations, tables) |
Content types
| Source | Description | Best For |
|---|---|---|
| wiley/wiley-finance-books | 4,400+ textbooks and reference works with full chapter-level content | Methodology walkthroughs, frameworks, applied theory |
| wiley/wiley-finance-papers | 100,000+ articles across 43 peer-reviewed Wiley Finance journals | Empirical evidence, cross-country studies, literature |
What you get
- Full-text search - Search across complete book chapters and journal articles, not just abstracts or metadata
- Rich content types - Figures, equations, tables, and worked examples are indexed and retrievable alongside prose
- Structured depth - Access step-by-step methodologies, proofs, case studies, and Excel/R walkthroughs that web sources cannot provide
- Bibliographic metadata - Authors, ISBNs, ISSNs, titles, and publisher attribution for proper citation
- Semantic ranking - Results ranked by conceptual relevance to your query, not keyword overlap
Subject coverage
| Domain | Examples |
|---|---|
| Quantitative Finance | Derivatives pricing, real options, stochastic modelling, Monte Carlo methods |
| Financial Economics | Asset pricing, monetary policy spillovers, market microstructure, banking stability |
| Accounting & Audit | Fraud detection, revenue recognition, audit analytics, activity-based costing |
| Corporate Governance | Board composition, ownership structure, agency theory, gender diversity |
| ESG & Sustainable Finance | Climate risk disclosure, cost of capital, green bonds, post-Paris regulation |
| Management Science | Decision-making, operations research, HR strategy, innovation management |
How to test in the playground (no code required)
The fastest way to test Wiley finance content is through the Search API Playground. No code or SDK installation is needed.Open the Search API Playground
Go to platform.valyu.ai/playground/search.You can also open the playground with Wiley datasets pre-selected using this direct link:If you use the direct link above, the Wiley datasets will already be selected and you can skip to the “Enter a query” step.
Open Advanced Settings
On the left side of the playground, click Advanced Settings to expand the settings panel. This is where you select which datasets to search.

Select the Wiley datasets
Click Included Datasets at the top of the panel. In the dataset selector, find and select:
- Wiley Papers (Finance Journals)
- Wiley Books (Finance Books)

Enter a query and click Run
Type a natural language query in the search box at the top and click Run. For example:The results appear on the right side. Each result shows:
You can switch between Results, JSON, and Table views using the tabs above the results.
- The title of the paper or book chapter
- A relevance score (percentage match)
- The source (e.g.
wiley/wiley-finance-papers) - A content preview of the matched text
- Options to Copy Citation and View Source

View the code snippet
At the bottom of the results panel, click Show Code Snippets to see the exact code you need to reproduce this search in your own application.
The Snippets panel opens with ready-to-use code in Python, TypeScript, and cURL. You can copy this code directly into your project - it includes your query, the selected Wiley datasets, and your API key.


How to use the API directly
Using cURL
Key parameters
| Parameter | Value | Description |
|---|---|---|
query | Any natural language text | Your search query in plain English |
included_sources | ["wiley/wiley-finance-papers"] and/or ["wiley/wiley-finance-books"] | Which Wiley datasets to search. Use one or both. This is the key parameter. |
max_num_results | 1 to 20 | Number of results to return |
Important: Use
included_sources to specify the Wiley datasets. If you omit included_sources, the search will return results from all available datasets, not just Wiley.How to use the Python SDK
For full Python SDK documentation, see the Python SDK Search guide.How to use the JavaScript SDK
For full JavaScript SDK documentation, see the TypeScript SDK Search guide.Example queries
Below are example queries that work well with Wiley finance content. You can use these in the playground or through the API. Each query is aligned to a specific use case.Quantitative finance & trading
Valuation & investment research
Due diligence & risk mapping
Prediction markets & forecasting
Additional queries
Use cases
Quantitative finance & trading
- Derivatives pricing agents - Retrieve full derivations and worked examples for options pricing models (Black-Scholes, binomial trees, Monte Carlo), interest rate models, and exotic structures - formulas and proofs included
- Algorithmic strategy research - Access peer-reviewed empirical work on market microstructure, high-frequency event studies, momentum, mean-reversion, and factor models with full methodology sections
- Risk modelling - Find authoritative treatments of VaR, CVaR, stress testing, credit risk, and liquidity risk with implementation-level detail across books and journals
- Real options & capital allocation - Surface chapter-length walkthroughs of real options valuation for R&D, natural resources, and infrastructure projects using binomial and Monte Carlo approaches
Valuation & investment research
- Fundamental analysis agents - Combine textbook valuation frameworks (DCF, multiples, adjusted present value) with peer-reviewed empirical evidence on discount rates, terminal value assumptions, and market anomalies
- M&A and leveraged finance - Access structured content on deal structuring, synergy valuation, LBO modelling, and post-merger integration drawn from practitioner-oriented Wiley Finance titles
- Private markets & alternatives - Retrieve methodologies for valuing illiquid assets, private equity, real estate, and commodity derivatives across books and journals
Due diligence & risk mapping
- Credit and counterparty risk - Find cross-country empirical studies and modelling frameworks for credit risk, default prediction, and systemic risk assessment
- ESG and climate risk integration - Access peer-reviewed evidence on how ESG and climate disclosures affect cost of capital, credit ratings, and equity valuations - critical for regulatory-aligned due diligence workflows
- Audit and fraud detection - Surface structured methodologies for revenue recognition fraud, Benford’s Law analysis, and forensic accounting with tooling-level instructions (Excel, R)
Prediction markets & forecasting research
- Futures and derivatives pricing - Access empirical and theoretical work on futures market pricing, basis risk, and the term structure of commodity and financial futures from the Journal of Futures Markets
- Behavioural biases in markets - Retrieve studies on overconfidence, anchoring, and probability miscalibration from the Journal of Behavioral Decision Making - directly relevant to understanding systematic mispricings
- Forecasting accuracy and calibration - Find research on the comparative accuracy of structured forecasting methods, expert judgment, and market-based forecasts across economic and financial domains
- Risk and uncertainty quantification - Surface work on decision-making under uncertainty, ambiguity aversion, and how agents price risk in thin or nascent markets
Enterprise finance & research platforms
- Academic research assistants - Combine books and journals for comprehensive literature coverage with full citation metadata across financial economics, governance, and management science
- Financial education tools - Deliver authoritative, structured explanations of complex topics grounded in peer-reviewed and practitioner sources
API reference
For complete API documentation, see:- Search API Reference - Full parameter documentation for the Search endpoint
- Python SDK - Search - Python SDK usage guide
- TypeScript SDK - Search - TypeScript SDK usage guide

