Liquid Cloud

Enter your API key to access the dashboard

No key? Register

Integrations

Total
-
Active
-
Credits
-
Write Ops Today
-

All Integrations

ServiceURLEndpointsActionsVersionStatus
Loading...

Actions

Total Actions
-
Verified
-
Executions Today
-
Write Ops (Month)
-

Configured Actions

AdapterEndpointMethodStatusLast Executed
Loading...

API Keys

Your Keys

PrefixNameCreditsCreatedLast Used
Loading...

Usage

Total Used
-
Credits Left
-
Transactions
-
Write Ops
-

Daily Credit Usage

No data yet

Transaction History

OperationCreditsAdapterDate
Loading...

Settings

Account

Email-
PlanFree (100 credits/month)
API DocsOpen Swagger UI

Quick Start

pip install liquid-api

from liquid import Liquid
from liquid._defaults import *

liquid = Liquid(
    llm=my_llm,
    vault=InMemoryVault(),
    sink=CollectorSink(),
    registry=InMemoryAdapterRegistry(),
)
adapter = await liquid.get_or_create(
    "https://api.shopify.com",
    {"amount": "float"},
    auto_approve=True,
)
# Read data
data = await liquid.fetch(adapter, "/orders")

# Write data back
result = await liquid.execute(
    adapter, action_id="create_order",
    data={"amount": 99.99, "email": "j@example.com"}
)

Danger Zone

Permanently delete all integrations.