Paste. Store. Share. Instantly.

A dead-simple API to store and retrieve text or JSON. No login. No fuss.


πŸš€ Quick Start

βœ… Your link:

πŸ“˜ Full API Examples
πŸ“ Store Plain Text
https://setget.io/api/set?key=demo-text&content=Hello+from+SetGet!&expireAfter=3600
πŸ‘οΈ Retrieve It
https://setget.io/api/get/demo-text?raw=1
πŸ“¦ Store JSON
POST https://setget.io/api/set
Content-Type: application/json

{
  "key": "demo-json",
  "content": {
    "name": "Omar",
    "status": "testing"
  },
  "expireAfter": 3600
}
πŸ‘οΈ Retrieve It
https://setget.io/api/get/demo-json

πŸ”“ Public vs πŸ” Private Usage

By default, entries are public and can be retrieved using just the key.

πŸ”“ Public Example
Set:
https://setget.io/api/set?key=public-note&content=This+is+visible+to+anyone

Get:
https://setget.io/api/get/public-note
πŸ” Private Example
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.