search_whitepaper
Find and retrieve cryptocurrency whitepapers by searching DuckDuckGo. Input a project name to receive a JSON list of relevant PDFs, including titles, URLs, and snippets.
Instructions
Search for a cryptocurrency project's whitepaper PDF using DuckDuckGo.
Parameters:
project_name (str): The name of the cryptocurrency project (e.g., 'bitcoin', 'ethereum').
Returns:
str: A JSON-formatted list of search results with title, URL, and snippet.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_name": {
"title": "Project Name",
"type": "string"
}
},
"required": [
"project_name"
],
"title": "search_whitepaperArguments",
"type": "object"
}