Skip to main content
POST
/
get
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"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
key
string
required

Response

Success

key
string
required
value
string
required