api.dongyi-guo.top
API Manager
Create and maintain flat JSON endpoints like /value. Each handle is edited as rows of key/value pairs and is available immediately through public GET and POST routes.
Store needs repair
api_store.json could not be loaded
The server file must be a JSON object shaped like { "handle": { "key": "value" } }. Resetting will copy the current broken file to a timestamped backup, then restore the default /value handle.
List, edit, delete
Handles and Key/Value Pairs
Edit a row to change a key or value. Values are parsed as JSON when possible, so 42, true, and null keep their JSON types. Objects and arrays are rejected.
Create
New Handle
Reference
Backend Routes
GET /{handle}Public endpoint, returns the handle JSON object.POST /{handle}Public endpoint, returns the same handle JSON object.POST /_admin/api/handlesCreate a handle with flat key/value pairs.PATCH /_admin/api/handles/{handle}Rename a handle.PUT /_admin/api/handles/{handle}/attributes/{key}Add or update one key/value pair.DELETE /_admin/api/handles/{handle}Delete a handle and all of its pairs.