A dead-simple API to store and retrieve text or JSON. No login. No fuss.
https://setget.io/api/set?key=demo-text&content=Hello+from+SetGet!&expireAfter=3600
https://setget.io/api/get/demo-text?raw=1
POST https://setget.io/api/set
Content-Type: application/json
{
"key": "demo-json",
"content": {
"name": "Omar",
"status": "testing"
},
"expireAfter": 3600
}
https://setget.io/api/get/demo-json
By default, entries are public and can be retrieved using just the key.
Set:
https://setget.io/api/set?key=public-note&content=This+is+visible+to+anyone
Get:
https://setget.io/api/get/public-note
Set:
https://setget.io/api/set?key=private-note&content=Only+you+can+see+this&secret=mySecret123
Get:
https://setget.io/api/get/private-note?secret=mySecret123
Supports GET and POST. Optional keys. Max 1MB. Auto-expiry in 1 hour by default. Add ?raw=1
to get plain output. For more details, check the π full documentation.