Database Cache
Get a Database cache value
Get a Database cache value. The request is scoped to the authenticated instance and enforces Database cache access.
POST
Get a Database cache value
Last modified on September 5, 2026
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get a Database cache value. The request is scoped to the authenticated instance and enforces Database cache access.
curl --request POST \
--url https://api.revoengine.com/api/v1/databases/cache/get \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"keys": [
"key1",
"key2"
]
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({keys: ['key1', 'key2']})
};
fetch('https://api.revoengine.com/api/v1/databases/cache/get', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.revoengine.com/api/v1/databases/cache/get"
payload = { "keys": ["key1", "key2"] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)curl --request POST \
--url https://api.revoengine.com/api/v1/databases/cache/get \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"keys": [
"key1",
"key2"
]
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({keys: ['key1', 'key2']})
};
fetch('https://api.revoengine.com/api/v1/databases/cache/get', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.revoengine.com/api/v1/databases/cache/get"
payload = { "keys": ["key1", "key2"] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)