For the complete documentation index, see llms.txt. This page is also available as Markdown.

Memory

Vector database and agent-memory APIs — free to use with your Floe key.

Service
Endpoints
Price
Status

HydraDB

Query, Ingest, Status, List, Delete, Tenant management

Free

Verified

HydraDB is a non-x402 vendor re-exposed as Floe endpoints by the marketplace shim. You call each route through the proxy with your Floe key, free of charge — nothing is billed to your credit line, no balance is required, and no HydraDB account or key is needed.

Per-payer isolation. tenant_id is auto-derived and forced per agent by the shim — you never set it, and you can't reach another payer's data (hard isolation). Within your tenant, you control namespacing yourself with the optional subTenantId field on the data routes above.


HydraDB — Query

Endpoint: POST https://marketplace.floelabs.xyz/v1/db/hydradb/query Price: Free · via the Floe marketplace shim

Search stored memories and knowledge. Supports keyword/semantic modes and field-scoped queries.

curl -X POST https://credit-api.floelabs.xyz/v1/proxy/fetch \
  -H "Authorization: Bearer $FLOE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://marketplace.floelabs.xyz/v1/db/hydradb/query", "method": "POST", "headers": {"Content-Type": "application/json"}, "body": "{\"query\":\"What did the user say about pricing?\",\"type\":\"memory\",\"maxResults\":5}"}'

Request body: { query, type?, queryBy?, mode?, maxResults?, subTenantId? }

HydraDB — Ingest

Endpoint: POST https://marketplace.floelabs.xyz/v1/db/hydradb/ingest Price: Free · via the Floe marketplace shim

Store memories or app knowledge.

Request body: { type: 'memory' | 'knowledge', memories?: [{ text, infer? }], appKnowledge?, subTenantId? }

HydraDB — Status

Endpoint: POST https://marketplace.floelabs.xyz/v1/db/hydradb/status Price: Free · via the Floe marketplace shim

Check the processing status of one or more ingested items by id.

Request body: { ids: [string], subTenantId? }

HydraDB — List

Endpoint: POST https://marketplace.floelabs.xyz/v1/db/hydradb/list Price: Free · via the Floe marketplace shim

List stored items with optional type filter and pagination.

Request body: { type?, subTenantId?, limit?, offset? }

HydraDB — Delete

Endpoint: POST https://marketplace.floelabs.xyz/v1/db/hydradb/delete Price: Free · via the Floe marketplace shim

Delete stored items by id.

Request body: { ids: [string], type?, subTenantId? }


Tenant management

tenant_id is forced per agent by the shim and gives you hard isolation from every other payer. These routes manage sub-tenants and metadata inside your own tenant — you control sub-tenant namespacing yourself via subTenantId on the data routes above.

HydraDB — Tenant Create

Endpoint: POST https://marketplace.floelabs.xyz/v1/db/hydradb/tenant/create Price: Free · via the Floe marketplace shim

Create a sub-tenant within your forced tenant, optionally with a metadata schema.

Request body: { tenantMetadataSchema? }

HydraDB — Tenant Status

Endpoint: POST https://marketplace.floelabs.xyz/v1/db/hydradb/tenant/status Price: Free · via the Floe marketplace shim

Report the status of your tenant.

Request body: {}

HydraDB — Tenant Delete

Endpoint: POST https://marketplace.floelabs.xyz/v1/db/hydradb/tenant/delete Price: Free · via the Floe marketplace shim

Delete your tenant and its data. Requires explicit confirmation.

Request body: { confirm: true }

Last updated