v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
Edge Storage

Create a new edge store

Create a new key-value storage store for edge applications. Stores support multiple data types: simple KV, sorted sets, and bloom filters.

post/fastedge/v1/kv

Request body

namestring required

A name of the store

commentstring

A description of the store

app_countinteger

The number of applications that use this store

sizeinteger

Total store size in bytes (zero for BYOD stores)

revisioninteger

Current store revision (only for non-BYOD stores)

updated_atstring date-time

Timestamp of last store revision (only for non-BYOD stores)

Example request

{
  "byod": {
    "url": "redis://redis.example.com:6379/0",
    "prefix": "app:prod:"
  }
}

Response

Edge store created successfully, returns store metadata with unique ID

namestring required

A name of the store

commentstring

A description of the store

app_countinteger

The number of applications that use this store

sizeinteger

Total store size in bytes (zero for BYOD stores)

revisioninteger

Current store revision (only for non-BYOD stores)

updated_atstring date-time

Timestamp of last store revision (only for non-BYOD stores)

idinteger

The unique identifier of the store.

Example response

{
  "byod": {
    "url": "redis://redis.example.com:6379/0",
    "prefix": "app:prod:"
  }
}