ZERO-CONFIG,MySQL+Vectorwith NativeSelf-Forking Built for Agents, MCP, and RAG.
-- Copy and Send to your Agent

Read and follow the instructions to create a database using seekdb.D0.

CLI QuickStart

FEATURES

[01]

MySQL Compatible

Complete MySQL compatibility with full SQL support. Plug-and-play with any AI stack.

[02]

One-click Deploy

Fully automated from configuration to deployment. Completed instantly by Agent, ready out of the box.

[03]

Six-in-one Engine

One engine for SQL, Vector, Text, JSON, GIS, and Branching. Do it all in a single query.

[04]

Branch Self

Branch self, fork you data, merge you want.

CLI QUICKSTART

  1. Provision

    One eval — instance created, credentials loaded.

  2. Execute

    POST a JSON body, get results back. Works from any language or tool.

# Provision an instance

$

# Execute SQL over HTTP

$ curl -s -X POST 'https://d0.seekdb.ai/api/v1/query' -d '{"instance_id":"'$D0_INSTANCE_ID'","password":"'$D0_PASSWORD'","sql":"SELECT NOW()"}'

API

POST /api/v1/instances

Create a disposable MySQL instance. No request body needed. Returns credentials and a ready-to-use connection string.

{
  "instance_id": "aB3kR7mN2pQx",
  "username":    "u_aB3kR7mN2pQx",
  "password":    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
  "database":    "d0_aB3kR7mN2pQx",
  "host":        "<PROXY_HOST>",
  "port":        30306,
  "expires_at":  "2026-04-28T00:00:00Z",
  "connection":  "mysql://u_aB3kR7mN2pQx:xxxx@...",
  "connection_string": "-h ... -u u_aB3kR7mN2pQx ..."
}

POST /api/v1/instances/{id}/fork

Branch an existing instance into a fully independent copy via copy-on-write. Millisecond-level. Writes to the fork never affect the source.

// Request
{
  "password": "<source_instance_password>"
}

// Response 201 — same shape as Create
{
  "instance_id": "xK9mP2qLrNwZ",
  ...
}

FAQ

01 What is seekdb.D0?

seekdb.D0 is a free trial entry point for seekdb. No signup, no setup — create a real, MySQL-compatible seekdb database instance via API. Ideal for developers and teams looking to evaluate features, validate prototypes, follow tutorials, or run demos.

02 Do I need to sign up or add a credit card?

No. Create an instance via the API and get a ready-to-use connection string immediately — no account or payment details required.

03 How do I create and use an instance?

Use POST https://d0.seekdb.ai/api/v1/instances to create a new instance. Once created, you receive a connection string and can connect over MySQL/TLS to start running SQL immediately.

04 What are the usage limits and TTL?

Each instance has a hard spending limit of $0.20 and lasts up to 7 days. When it expires, credentials are revoked and the database is securely deleted.

05 What are seekdb's core capabilities?

seekdb supports hybrid search (vector search + full-text search + relational queries), multiple vector index types, multi-model data (relational / vector / full-text / JSON / GIS), and in-database AI functions (AI_EMBED, AI_COMPLETE, AI_RERANK, etc.). In D0 trial instances, AI functions are disabled for security reasons.

06 How do I fork a table or instance?

Table fork: Run FORK TABLE source_table TO destination_table; directly in the database to create an independent copy based on a consistent snapshot. Reads and writes to either table do not affect the other.

Instance fork: Call POST https://d0.seekdb.ai/api/v1/instances/{id}/fork to fork an existing instance into an independent new instance. A successfully forked instance receives a new 7-day TTL.

Note: In D0 trial instances, forking may fail due to resource limitations.

07 Can I use it for AI agent memory?

For persistent AI agent memory, we recommend using seekdb.M0 (https://m0.seekdb.ai).

08 Data security and service guarantees

Data is stored in data centers in Singapore or Kuala Lumpur. Instances are fully isolated from each other. Connections are encrypted via TLS, and data is securely deleted after expiration. If your data is subject to regulations such as GDPR, please assess compliance on your own and avoid storing regulated sensitive data in trial instances. seekdb.D0 is a free trial service with no SLA guarantees and no liability for data loss or service interruptions. It is not recommended for production data.

09 What is the relationship between seekdb.D0 and seekdb?

seekdb is an open-source project (https://github.com/oceanbase/seekdb). seekdb.D0 is its free trial experience. For long-term use or full functionality, please follow the seekdb open-source community and official releases. Note: documentation and community discussions may appear in both Chinese and English. If you find seekdb useful, please consider giving it a ⭐ on GitHub — it really helps!

Ready For Deployment?

Read and follow the instructions to create a database using seekdb D0.