cURL
curl --request POST \ --url https://{api_host}/api/get \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "key": "my-data" } '
{ "value": { "key": "my-data", "value": "some stored value" } }
Gets the value of a key
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Success