Your coding agent provisions cache clusters. One API call. 30 seconds.
Sign up with a tenant ID. You get back an API key and Redis connection details.
curl -X POST https://cacheroo.com/api/signup \
-H "Content-Type: application/json" \
-d '{"tenantId":"myproject"}'
Response
{
"apiKey": "cr_free_myproject_a1b2c3...",
"tenantId": "myproject",
"redis": {
"host": "...",
"port": 6379,
"keyPrefix": "cr:myproject:"
}
}
Provision a cache cluster with a single API call.
curl -X POST https://cacheroo.com/cache/clusters \
-H "Authorization: Bearer cr_free_myproject_a1b2c3..." \
-H "Content-Type: application/json" \
-d '{"name":"session-cache","nodes":3,"serverType":"small"}'
Get live metrics for your cluster, including memory, connections, and throughput.
curl https://cacheroo.com/cache/clusters/{clusterId}/live-metrics \
-H "Authorization: Bearer cr_free_myproject_a1b2c3..."