Kache Logo: stylized turquoise box

Kache API

A simple, fast key-value storage API.

All content is stored as text/plain and returned as text/plain.

๐Ÿ“‹ API Endpoints

POST /{key}
Store data with a custom key
curl -X POST https://kache.site/my-key -d "Hello, World!"
GET /{key}
Retrieve data by key
curl https://kache.site/my-key
DELETE /{key}
Delete data by key
curl -X DELETE https://kache.site/my-key

โœจ Features

๐Ÿ’ก Important Notes

By using Kache API, you agree to the following:

This service is offered "as is" without guarantees of availability, reliability, or uptime.

We do not guarantee the security of your data and are not responsible for any loss, corruption, or unauthorized access.

Key Management: Use unique keys for each data entry. Reusing a key will overwrite the existing content with the new data. This approach helps maintain organized storage and ensures efficient data management.

Data Retention: All stored data is automatically cleared after 24 hours. This temporary storage approach ensures optimal performance and keeps the service fast and efficient for all users.

๐Ÿงช API Tester

๐Ÿš€ Ready to Get Started?

Simple & Fast: No authentication required, no complex setup needed. Just start storing and retrieving your data with simple HTTP requests. Perfect for prototypes, testing, and quick data storage needs.