Describe the signal
Choose a topic, webhook endpoint, and an optional > or < threshold.
Data infrastructure for AI agents
Entrpy is building a unified data layer and trigger system for agents: one interface to query normalized data or receive an event when something relevant changes.
Private beta is live with signed, retryable crypto-price webhooks for BTC, ETH, SOL, BNB, XRP and DOGE.
curl -X POST https://api.entrpy.dev/subscribe \
-H "X-API-Key: ent_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"topic": "BTCUSD",
"webhook_url": "https://agent.example/webhook",
"condition_op": ">",
"condition_value": 70000
}'
{
"event_id": "evt_...",
"event_type": "price.threshold_triggered",
"topic": "BTCUSD",
"new_value": 71000,
"condition": {
"operator": ">",
"threshold": 70000
},
"triggered_at": "2026-07-25T20:00:00Z"
}
How it works
A small interface replaces the polling loop, state tracking, condition checks, and delivery plumbing your agent would otherwise own.
Choose a topic, webhook endpoint, and an optional > or < threshold.
Entrpy monitors the source and stores a matching event before attempting delivery.
A structured, signed webhook wakes your application or agent when action is needed.
Product direction
The private beta proves event-driven delivery in one data category. The broader data layer is the direction—not a claim about what is already live.
We're building cross-source normalization and aggregation across more providers.
Define what matters, then receive an event when the external world matches it.
Bring provider and developer-owned data into agent-facing SDK and MCP workflows after REST feature parity.
Next: delivery history, observability, more providers, and data categories beyond fintech.
Crypto is the first working data category, not the boundary of the product.
Private beta
Entrpy is in private beta for developers building agents that need to react to changing external data.