Integrations
Total
-
Active
-
Credits
-
Write Ops Today
-
All Integrations
| Service | URL | Endpoints | Actions | Version | Status | |
|---|---|---|---|---|---|---|
| Loading... | ||||||
Actions
Total Actions
-
Verified
-
Executions Today
-
Write Ops (Month)
-
Configured Actions
| Adapter | Endpoint | Method | Status | Last Executed | |
|---|---|---|---|---|---|
| Loading... | |||||
API Keys
Your Keys
New key:
— copy it now, you won't see it again.| Prefix | Name | Credits | Created | Last Used | |
|---|---|---|---|---|---|
| Loading... | |||||
Usage
Total Used
-
Credits Left
-
Transactions
-
Write Ops
-
Daily Credit Usage
No data yet
Transaction History
| Operation | Credits | Adapter | Date |
|---|---|---|---|
| Loading... | |||
Settings
Account
| - | |
| Plan | Free (100 credits/month) |
| API Docs | Open 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.