PubNub
DOCS
SupportContact SalesLoginTry Our APIs
  • Introduction
  • Illuminate
  • Functions
    • Packages
    • Revisions
    • Deployments
    • Catalog
    • KV Store
      • Get a string entry by key
      • Create or update a string entry
      • Delete a string entry
      • Get a JSON entry by key
      • Create or update a JSON entry
      • Delete a JSON entry
      • Increment a counter
      • Decrement a counter
      • List all string entries
      • List all JSON entries
      • List all counter entries
      • Get a counter entry by key
    • Secrets Storage
    • Scheduled Events
    • Limits
    • Functions Errors
  • Insights
  • Apps
  • Keysets
  • Config
  • Secret Keys
  • OEM Customer
  • Usage
Debug ConsoleNetwork Status

Key-value storage operations (strings, JSON, counters) scoped to a keyset.

GET Get a string entry by key

Returns a single string key-value entry.

PUT Create or update a string entry

Inserts or updates a string key-value entry with an optional TTL.

DELETE Delete a string entry

Deletes a string key-value entry by key.

GET Get a JSON entry by key

Returns a single JSON key-value entry.

PUT Create or update a JSON entry

Inserts or updates a JSON key-value entry with an optional TTL.

DELETE Delete a JSON entry

Deletes a JSON key-value entry by key.

POST Increment a counter

Increments a counter by the specified value (default 1).

POST Decrement a counter

Decrements a counter by the specified value (default 1).

GET List all string entries

Returns a paginated list of all string key-value entries for the given keyset.

GET List all JSON entries

Returns a paginated list of all JSON key-value entries for the given keyset.

GET List all counter entries

Returns a paginated list of all counter key-value entries for the given keyset.

GET Get a counter entry by key

Returns a single counter key-value entry.