JSON · Customer documentation
Store and retrieve small JSON values by key.
What you prepare
Decide what JSON to save; securely store the one-time token.
Steps in the workspace
- 01Create a store and save its token securely.
- 02PUT a key and JSON value.
- 03GET it using the bearer token.
Example request / integration
Save {"theme":"dark"} under preferences and GET it at the next app launch.
# Copy the endpoint and one-time bearerToken when creating a store.
curl -X PUT "$STORE_URL/preferences" \
-H "Authorization: Bearer $STORE_TOKEN" \
-H 'Content-Type: application/json' \
--data '{"theme":"dark"}'
curl -H "Authorization: Bearer $STORE_TOKEN" "$STORE_URL/preferences"Examples use placeholders: replace $BASE_URL, $SESSION_TOKEN and issued URLs with real values. Never publish session tokens or API keys in a webpage or repository.
Management API entry point
POST /api/picosvc/json/storesStore name, document key, and JSON data.
Token-protected read/write endpoint and stored JSON.
What it does not do
Not a relational database with SQL querying or automated backups.
Feature comparison and sources
JSON organization and queries:Token-protected key-based JSON reads and writes.
JSONBin.io:Documents JSON CRUD and collection APIs.
Feature comparison and sources · JSONBin.io ↗The product overview is public. The workspace handles creation, editing and history. The all-service dashboard shows usage and links for all 16 tools.