
Adanos GetAssetSentiment
CertifiedGet asset sentiment
Adanos GetAssetSentiment
Get asset sentiment
Retrieves the current Adanos sentiment summary for one stock ticker or crypto symbol.
type: io.kestra.plugin.adanos.GetAssetSentimentExamples
Fetch Reddit sentiment for a stock.
id: adanos_stock_sentiment
namespace: company.research
tasks:
- id: get_sentiment
type: io.kestra.plugin.adanos.GetAssetSentiment
apiKey: "{{ secret('ADANOS_API_KEY') }}"
assetType: STOCK
source: REDDIT
symbol: TSLA
Fetch Reddit sentiment for a crypto asset.
id: adanos_crypto_sentiment
namespace: company.research
tasks:
- id: get_sentiment
type: io.kestra.plugin.adanos.GetAssetSentiment
apiKey: "{{ secret('ADANOS_API_KEY') }}"
assetType: CRYPTO
source: REDDIT
symbol: BTC
Properties
apiKey *Requiredstring
Adanos API key
API key sent in the X-API-Key request header. Create one at https://adanos.org/register.
symbol *Requiredstring
Ticker or symbol
Stock ticker such as TSLA or crypto symbol such as BTC.
assetType string
STOCKSTOCKCRYPTOAsset type
Whether to query stock or crypto sentiment. Crypto currently supports the Reddit source only.
baseUrl string
https://api.adanos.orgAdanos API base URL
Base URL for Adanos API requests.
fetchType string
FETCHSTOREFETCHFETCH_ONENONEResult handling mode
FETCH returns the complete response, FETCH_ONE returns the first list item or response object, STORE writes records to Kestra internal storage, and NONE omits the response body.
from string
From date
Inclusive UTC start date for the query window.
options Non-dynamic
HTTP request options
Timeouts for the Adanos HTTP request.
io.kestra.plugin.adanos.AbstractAdanosTask-RequestOptions
Connection timeout
Time allowed to establish a connection before failing.
PT5MRead idle timeout
How long a read may stay idle before closing.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
source string
REDDITREDDITXNEWSPOLYMARKETSentiment source
Stocks support Reddit, X / FinTwit, News, and Polymarket. Crypto currently supports Reddit.
to string
To date
Inclusive UTC end date for the query window. Omit it to use the current UTC date.
Outputs
body object
Response body
Adanos response payload. Available for FETCH and FETCH_ONE.
size integer
Response item count
Number of root response records returned by Adanos.
uri string
uriStored response URI
Kestra internal storage URI available for STORE.