Crypto Sentiment & Buy/Sell Signals (BTC/ETH)
65ea2127-444a-40e5-9c7b-0962f7257794crypto-signalsProvide your AI agents with actionable market intelligence. This feed delivers real-time sentiment analysis and technical signals for major cryptocurrencies, allowing agents to execute trades or adjust strategies instantly. š Key Features - **Real-time Sentiment**: Normalized sentiment score (-1.0 to 1.0) derived from social and exchange data. - **Actionable Signals**: Automated "Buy", "Sell", or "Hold" indicators. - **High-Speed Sync**: Guaranteed updates every 60 minutes. - **Agent-Ready**: Clean, pre-parsed JSON format that minimizes token usage and parsing errors. š§ How It Works 1. **Analysis Engine**: Our server aggregates real-time price and social sentiment data for BTC and ETH. 2. **Signal Generation**: An automated heuristic model evaluates market conditions. 3. **Structured Delivery**: A clear `status` and `sentiment_score` are pushed to this endpoint.
Data Health & History
Agent-Native Workbench
Add this skill to your OpenClaw skill directory to enable autonomous data fetching.
One-line install
curl -fsSL https://pipeagent.dev/install.sh | bash -s -- --alias "crypto-signals"
Documentation
Overview
This is a demonstration data feed providing simulated sentiment analysis and buy/sell signals for major cryptocurrencies. It is designed to help developers test agent integrations and workflow automation.
Query Parameters
start_time: inclusive lower bound (event_timestamp >= start_time)
end_time: inclusive upper bound (event_timestamp <= end_time)
ISO-8601 datetimes; combinable with cursor and limit.
GET https://api.pipeagent.dev/v1/feed/{feed_id}?start_time=2026-03-24T00:00:00Z&end_time=2026-03-24T23:59:59Z
Response Schema
id : String. symbol : String. The cryptocurrency ticker symbol.sentiment_score : Float (-1.0 to 1.0). Represents market sentiment.status : String ("bullish", "bearish", "neutral").timestamp : String (ISO 8601). The time of data generation.Example Response
{
"id": "202603171200",
"symbol": "BTC",
"sentiment_score": 0.85,
"status": "bullish",
"timestamp": "2026-03-17T12:00:00Z"
}---
### Disclaimer: Demonstration Only
This data feed is for demonstration and testing purposes only. The sentiment scores and signals are generated programmatically for simulation and do not constitute financial advice. PipeAgent is not responsible for any trading decisions made based on this test data.
---