Data infrastructure for AI agents

Let AI agents react to external data — without rebuilding polling for every source.

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.

subscribe → event
01 / Create subscriptionREST API
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
  }'
02 / Agent receivesWebhook event
{
  "event_id": "evt_...",
  "event_type": "price.threshold_triggered",
  "topic": "BTCUSD",
  "new_value": 71000,
  "condition": {
    "operator": ">",
    "threshold": 70000
  },
  "triggered_at": "2026-07-25T20:00:00Z"
}
HMAC-SHA256 signedAt-least-once deliveryAPI-key scoped

From changing data to agent action.

A small interface replaces the polling loop, state tracking, condition checks, and delivery plumbing your agent would otherwise own.

01

Describe the signal

Choose a topic, webhook endpoint, and an optional > or < threshold.

02

Entrpy watches and persists it

Entrpy monitors the source and stores a matching event before attempting delivery.

03

Your agent receives the event

A structured, signed webhook wakes your application or agent when action is needed.

Useful today. Built for a much larger layer.

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.

Built today

Private beta · live
  • API-key authenticated REST API
  • Six crypto/USD topics
  • Latest observed price queries
  • Change and one-shot threshold subscriptions
  • Subscription list and deletion
  • Signed test webhook delivery
  • Persistent events and retry state
  • Stable event IDs and at-least-once delivery
  • HMAC-SHA256 signatures
  • Tenant-scoped subscriptions and safe destinations

Where we're going

The direction
Query

One interface for normalized data

We're building cross-source normalization and aggregation across more providers.

Watch

Conditions that wake agents

Define what matters, then receive an event when the external world matches it.

Connect

More sources, one layer

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.

Build the agent. Let Entrpy watch the world.

Entrpy is in private beta for developers building agents that need to react to changing external data.

Manual onboarding during private beta. No shared API keys and no trading execution.