Deno KV API

Deno KV is a key-value database built directly into the Deno runtime and available as a globally distributed store on Deno Deploy. It is accessed via the Deno.Kv namespace and supports get, set, delete, list, and atomic transaction operations. Keys are ordered tuples that support hierarchical data modeling, and values can be any structured-serializable JavaScript value including the special Deno.KvU64 type for 64-bit unsigned integers.

API entry from apis.yml

apis.yml Raw ↑
aid: deno:kv-api
name: Deno KV API
tags:
- Database
- Edge
- Key-Value
- Storage
image: https://kinlane-productions2.s3.amazonaws.com/apis-json/apis-json-logo.jpg
baseURL: https://api.deno.com
humanURL: https://docs.deno.com/deploy/kv/
properties:
- url: https://docs.deno.com/deploy/kv/
  type: Documentation
- url: https://docs.deno.com/api/deno/~/Deno.Kv
  type: Documentation
- url: json-schema/deno-kv-database-schema.json
  type: JSONSchema
description: Deno KV is a key-value database built directly into the Deno runtime and available as a globally
  distributed store on Deno Deploy. It is accessed via the Deno.Kv namespace and supports get, set, delete,
  list, and atomic transaction operations. Keys are ordered tuples that support hierarchical data modeling,
  and values can be any structured-serializable JavaScript value including the special Deno.KvU64 type
  for 64-bit unsigned integers.