Get Started
Start for Free. Every new token creation gets 100 free operations.
Each Key/Value API call costs 1 operation.
No Registration, No Credit card, No Subscriptions, No Expiration, No Hidden Costs
// request a new token
curl 'https://token.echovalue.dev' \
-d 'token=new'
% mytoken
// save "world" under "hello" key
curl 'https://api.echovalue.dev/default/hello' \
-H 'x-token: mytoken' \
-d 'world'
% OK
// get the value under "hello" key
curl 'https://api.echovalue.dev/default/hello' \
-H 'x-token: mytoken'
% world