MySQL Compatible
Complete MySQL compatibility with full SQL support. Plug-and-play with any AI stack.
Complete MySQL compatibility with full SQL support. Plug-and-play with any AI stack.
Fully automated from configuration to deployment. Completed instantly by Agent, ready out of the box.
One engine for SQL, Vector, Text, JSON, GIS, and Branching. Do it all in a single query.
Branch self, fork you data, merge you want.
One eval — instance created, credentials loaded.
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/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 ..."
}
/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",
...
}
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.
No. Create an instance via the API and get a ready-to-use connection string immediately — no account or payment details required.
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.
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.
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.
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.
For persistent AI agent memory, we recommend using seekdb.M0 (https://m0.seekdb.ai).
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.
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!